From d1cf5a1cbe09e4613752bc9e39497127a3d6739d Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 26 Aug 2021 16:50:22 -0400 Subject: [PATCH 001/139] Added DeploymentStacks management types --- src/azure-cli-core/azure/cli/core/profiles/_shared.py | 2 ++ .../azure/cli/command_modules/resource/_client_factory.py | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index b462ea56083..9470551c041 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -54,6 +54,7 @@ class ResourceType(Enum): # pylint: disable=too-few-public-methods MGMT_RESOURCE_SUBSCRIPTIONS = ('azure.mgmt.resource.subscriptions', 'SubscriptionClient') MGMT_RESOURCE_DEPLOYMENTSCRIPTS = ('azure.mgmt.resource.deploymentscripts', 'DeploymentScriptsClient') MGMT_RESOURCE_TEMPLATESPECS = ('azure.mgmt.resource.templatespecs', 'TemplateSpecsClient') + MGMT_RESOURCE_DEPLOYMENTSTACKS = ('azure.mgmt.resource.deploymentstacks', 'DeploymentStacksClient') MGMT_MONITOR = ('azure.mgmt.monitor', 'MonitorManagementClient') DATA_KEYVAULT = ('azure.keyvault', 'KeyVaultClient') DATA_PRIVATE_KEYVAULT = ('azure.cli.command_modules.keyvault.vendored_sdks.azure_keyvault_t1', 'KeyVaultClient') @@ -163,6 +164,7 @@ def default_api_version(self): ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS: '2019-11-01', ResourceType.MGMT_RESOURCE_DEPLOYMENTSCRIPTS: '2020-10-01', ResourceType.MGMT_RESOURCE_TEMPLATESPECS: '2021-05-01', + ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS: '2021-05-01', ResourceType.MGMT_NETWORK_DNS: '2018-05-01', ResourceType.MGMT_KEYVAULT: '2021-04-01-preview', ResourceType.MGMT_AUTHORIZATION: SDKProfile('2020-04-01-preview', { diff --git a/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py b/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py index a82bcefd4c1..713d2a059c9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py @@ -63,6 +63,11 @@ def _resource_templatespecs_client_factory(cli_ctx, **_): from azure.cli.core.profiles import ResourceType return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) +def _resource_deploymentstacks_client_factory(cli_ctx, **_): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azure.cli.core.profiles import ResourceType + return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) + def cf_resource_groups(cli_ctx, _): return _resource_client_factory(cli_ctx).resource_groups @@ -138,3 +143,6 @@ def cf_management_group_subscriptions(cli_ctx, _): def cf_resource_templatespecs(cli_ctx, _): return _resource_templatespecs_client_factory(cli_ctx).template_specs + +def cf_resource_deploymentstacks(cli_ctx, _): + return _resource_deploymentstacks_client_factory(cli_ctx).deployment_stacks \ No newline at end of file From 3041a1e32aa53518322170ccc779e2498ff4988b Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 30 Aug 2021 12:37:00 -0400 Subject: [PATCH 002/139] Added CliCommandType for DeploymentStacks --- .../azure/cli/command_modules/resource/commands.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index c91a9d8da6a..9c25ca25ed7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -16,7 +16,7 @@ from azure.cli.command_modules.resource._client_factory import ( cf_resource_groups, cf_providers, cf_features, cf_feature_registrations, cf_tags, cf_deployments, cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_policy_exemptions, cf_resource_links, - cf_resource_deploymentscripts, cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_group_subscriptions, cf_resource_templatespecs) + cf_resource_deploymentscripts, cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_group_subscriptions, cf_resource_templatespecs, cf_resource_deploymentstacks) from azure.cli.command_modules.resource._validators import process_deployment_create_namespace, process_ts_create_or_update_namespace, _validate_template_spec, _validate_template_spec_out from ._exception_handler import managementgroups_exception_handler @@ -177,6 +177,12 @@ def load_command_table(self, _): resource_type=ResourceType.MGMT_RESOURCE_TEMPLATESPECS ) + resource_deploymentstacks_sdk = CliCommandType( + operations_tmpl='azure.mgmt.resource.deploymentstacks.operations#ResourceLinksOperations.{}', + client_factory=cf_resource_deploymentstacks, + resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS + ) + with self.command_group('account lock', resource_lock_sdk, resource_type=ResourceType.MGMT_RESOURCE_LOCKS) as g: g.custom_command('create', 'create_lock') g.custom_command('delete', 'delete_lock') From 1dbd84fe8c846f8a782c3fa0de936ed27053920c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 30 Aug 2021 18:28:41 -0400 Subject: [PATCH 003/139] Added sub show command --- src/azure-cli-core/azure/cli/core/profiles/_shared.py | 2 +- .../azure/cli/command_modules/resource/commands.py | 4 ++++ src/azure-cli/azure/cli/command_modules/resource/custom.py | 6 +++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 613bd9a2f6d..5e3edbd463c 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -164,7 +164,7 @@ def default_api_version(self): ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS: '2019-11-01', ResourceType.MGMT_RESOURCE_DEPLOYMENTSCRIPTS: '2020-10-01', ResourceType.MGMT_RESOURCE_TEMPLATESPECS: '2021-05-01', - ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS: '2021-05-01', + ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS: '2021-05-01-preview', ResourceType.MGMT_NETWORK_DNS: '2018-05-01', ResourceType.MGMT_KEYVAULT: '2021-04-01-preview', ResourceType.MGMT_AUTHORIZATION: SDKProfile('2020-04-01-preview', { diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 9c25ca25ed7..682fe289aa1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -331,6 +331,10 @@ def load_command_table(self, _): g.custom_show_command('show', 'get_template_spec', validator=_validate_template_spec) g.custom_command('list', 'list_template_specs') g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) + + with self.command_group('stacks', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('sub-show', 'list_deployment_stacks') + # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index f1dbf7a1ea7..befc97cc16b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -34,7 +34,7 @@ from azure.cli.command_modules.resource._client_factory import ( _resource_client_factory, _resource_policy_client_factory, _resource_lock_client_factory, - _resource_links_client_factory, _resource_deploymentscripts_client_factory, _authorization_management_client, _resource_managedapps_client_factory, _resource_templatespecs_client_factory) + _resource_links_client_factory, _resource_deploymentscripts_client_factory, _resource_deploymentstacks_client_factory, _authorization_management_client, _resource_managedapps_client_factory, _resource_templatespecs_client_factory) from azure.cli.command_modules.resource._validators import _parse_lock_id from azure.core.pipeline.policies import SansIOHTTPPolicy @@ -2078,6 +2078,10 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() +def list_deployment_stacks(cmd, name): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + return rcf.deployment_stacks.get_at_subscription(name) + def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) From 4b527aaf76e1480021183c85c0bc1f3abda01f1b Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 31 Aug 2021 13:32:59 -0400 Subject: [PATCH 004/139] Finished show and list commands for rg and sub scopes --- .../cli/command_modules/resource/commands.py | 7 ++++- .../cli/command_modules/resource/custom.py | 30 +++++++++++++++++-- 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 682fe289aa1..1550057a712 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -333,7 +333,12 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) with self.command_group('stacks', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('sub-show', 'list_deployment_stacks') + g.custom_command('sub-show', 'show_deployment_stacks_at_subscription') + g.custom_command('group-show', 'show_deployment_stacks_at_resource_group') + g.custom_command('sub-list', 'list_deployment_stacks_at_subscription') + g.custom_command('group-list', 'list_deployment_stacks_at_resource_group') + g.custom_command('sub-delete', 'delete_deployment_stacks_at_subscription') + g.custom_command('group-delete', 'delete_deployment_stacks_at_resource_group') # az deployment group diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index befc97cc16b..6bf339234bd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2078,9 +2078,35 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def list_deployment_stacks(cmd, name): + +def show_deployment_stacks_at_subscription(cmd, name=None, stack=None): + if name or stack: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.get_at_subscription(name) + return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) + raise CLIError("Please enter the stack name or stack resource id") + + +def show_deployment_stacks_at_resource_group(cmd, name=None, resourcegroup=None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - return rcf.deployment_stacks.get_at_subscription(name) + if name and resourcegroup: + return rcf.deployment_stacks.get_at_resource_group(resourcegroup, name) + if stack: + return rcf.deployment_stacks.get_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) + raise CLIError("Please enter the (stack name and resource group) or stack resource id") + + +def list_deployment_stacks_at_subscription(cmd): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + return rcf.deployment_stacks.list_at_subscription() + + +def list_deployment_stacks_at_resource_group(cmd, resourcegroup): + if resourcegroup: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + return rcf.deployment_stacks.list_at_resource_group(resourcegroup) + raise CLIError("Please enter the resource group") def list_deployment_operations_at_subscription_scope(cmd, deployment_name): From ccd40373616577c78e1c2c80785e34789562bbf2 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 31 Aug 2021 16:18:40 -0400 Subject: [PATCH 005/139] Added delete commands for sub and rg scopes --- .../cli/command_modules/resource/custom.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 6bf339234bd..52af1d580f5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2109,6 +2109,24 @@ def list_deployment_stacks_at_resource_group(cmd, resourcegroup): raise CLIError("Please enter the resource group") +def delete_deployment_stacks_at_subscription(cmd, name=None, stack=None): + if name or stack: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.begin_delete_at_subscription(name) + return rcf.deployment_stacks.begin_delete_at_subscription(stack.split('/')[-1]) + raise CLIError("Please enter the stack name or stack resource id") + + +def delete_deployment_stacks_at_resource_group(cmd, name=None, resourcegroup = None, stack=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name and resourcegroup: + return rcf.deployment_stacks.begin_delete_at_resource_group(resourcegroup, name) + if stack: + return rcf.deployment_stacks.begin_delete_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) + raise CLIError("Please enter the (stack name and resource group) or stack resource id") + + def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) return rcf.deployment_operations.list_at_subscription_scope(deployment_name) From 82267c16af1a624a44bb92ff6cfca6e1d1f3af0e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 1 Sep 2021 12:43:36 -0400 Subject: [PATCH 006/139] Finished all snapshot commands --- .../cli/command_modules/resource/commands.py | 15 +++- .../cli/command_modules/resource/custom.py | 71 ++++++++++++++++--- 2 files changed, 76 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 1550057a712..2a74a5afc88 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -183,6 +183,12 @@ def load_command_table(self, _): resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS ) + resource_deploymentstacks_snapshots_sdk = CliCommandType( + operations_tmpl='azure.mgmt.resource.deploymentstacks.snapshots.operations#ResourceLinksOperations.{}', + client_factory=cf_resource_deploymentstacks, + resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS + ) + with self.command_group('account lock', resource_lock_sdk, resource_type=ResourceType.MGMT_RESOURCE_LOCKS) as g: g.custom_command('create', 'create_lock') g.custom_command('delete', 'delete_lock') @@ -339,7 +345,14 @@ def load_command_table(self, _): g.custom_command('group-list', 'list_deployment_stacks_at_resource_group') g.custom_command('sub-delete', 'delete_deployment_stacks_at_subscription') g.custom_command('group-delete', 'delete_deployment_stacks_at_resource_group') - + + with self.command_group('stacks snapshot', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('sub-show', 'show_deployment_stacks_snapshots_at_subscription') + g.custom_command('group-show', 'show_deployment_stacks_snapshots_at_resource_group') + g.custom_command('sub-list', 'list_deployment_stacks_snapshots_at_subscription') + g.custom_command('group-list', 'list_deployment_stacks_snapshots_at_resource_group') + g.custom_command('sub-delete', 'delete_deployment_stacks_snapshots_at_subscription') + g.custom_command('group-delete', 'delete_deployment_stacks_snapshots_at_resource_group') # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 52af1d580f5..f8750d8b4f2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2088,10 +2088,10 @@ def show_deployment_stacks_at_subscription(cmd, name=None, stack=None): raise CLIError("Please enter the stack name or stack resource id") -def show_deployment_stacks_at_resource_group(cmd, name=None, resourcegroup=None, stack=None): +def show_deployment_stacks_at_resource_group(cmd, name=None, resource_group=None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name and resourcegroup: - return rcf.deployment_stacks.get_at_resource_group(resourcegroup, name) + if name and resource_group: + return rcf.deployment_stacks.get_at_resource_group(resource_group, name) if stack: return rcf.deployment_stacks.get_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) raise CLIError("Please enter the (stack name and resource group) or stack resource id") @@ -2102,10 +2102,10 @@ def list_deployment_stacks_at_subscription(cmd): return rcf.deployment_stacks.list_at_subscription() -def list_deployment_stacks_at_resource_group(cmd, resourcegroup): - if resourcegroup: +def list_deployment_stacks_at_resource_group(cmd, resource_group): + if resource_group: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - return rcf.deployment_stacks.list_at_resource_group(resourcegroup) + return rcf.deployment_stacks.list_at_resource_group(resource_group) raise CLIError("Please enter the resource group") @@ -2118,15 +2118,68 @@ def delete_deployment_stacks_at_subscription(cmd, name=None, stack=None): raise CLIError("Please enter the stack name or stack resource id") -def delete_deployment_stacks_at_resource_group(cmd, name=None, resourcegroup = None, stack=None): +def delete_deployment_stacks_at_resource_group(cmd, name=None, resource_group = None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name and resourcegroup: - return rcf.deployment_stacks.begin_delete_at_resource_group(resourcegroup, name) + if name and resource_group: + return rcf.deployment_stacks.begin_delete_at_resource_group(resource_group, name) if stack: return rcf.deployment_stacks.begin_delete_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) raise CLIError("Please enter the (stack name and resource group) or stack resource id") +def show_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack_name=None, snapshot=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if snapshot: + return rcf.deployment_stack_snapshots.get_at_subscription(snapshot.split('/')[-3], snapshot.split('/')[-1]) + if name and stack_name: + return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) + raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + +def show_deployment_stacks_snapshots_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if snapshot: + return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot.split('/')[4], snapshot.split('/')[-3], snapshot.split('/')[-1]) + if name and stack_name and resource_group: + return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) + raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + + +def list_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack=None): + if not name and not stack: + raise CLIError("Please enter the stack name or stack resource id") + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stack_snapshots.list_at_subscription(name) + return rcf.deployment_stack_snapshots.list_at_subscription(stack.split('/')[-1]) + + +def list_deployment_stacks_snapshots_at_resource_group(cmd, name=None, resource_group=None, stack=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if stack: + return rcf.deployment_stack_snapshots.list_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) + if name and resource_group: + return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, name) + raise CLIError("Please enter the stack name or stack resource id") + + +def delete_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack_name=None, snapshot=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if snapshot: + return rcf.deployment_stack_snapshots.delete_at_subscription(snapshot.split('/')[-3], snapshot.split('/')[-1]) + if name and stack_name: + return rcf.deployment_stack_snapshots.delete_at_subscription(stack_name, name) + raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + + +def delete_deployment_stacks_snapshots_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if snapshot: + return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot.split('/')[4], snapshot.split('/')[-3], snapshot.split('/')[-1]) + if name and stack_name and resource_group: + return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) + raise CLIError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") + + def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) return rcf.deployment_operations.list_at_subscription_scope(deployment_name) From bdd97e4156f016561fac2178da3d04dda212b0fe Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 3 Sep 2021 16:05:57 -0400 Subject: [PATCH 007/139] Started sub-create, needs finishing --- .../cli/command_modules/resource/commands.py | 27 +++---- .../cli/command_modules/resource/custom.py | 72 +++++++++++++------ 2 files changed, 65 insertions(+), 34 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 2a74a5afc88..90cbcf4ea31 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -339,21 +339,22 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) with self.command_group('stacks', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('sub-show', 'show_deployment_stacks_at_subscription') - g.custom_command('group-show', 'show_deployment_stacks_at_resource_group') - g.custom_command('sub-list', 'list_deployment_stacks_at_subscription') - g.custom_command('group-list', 'list_deployment_stacks_at_resource_group') - g.custom_command('sub-delete', 'delete_deployment_stacks_at_subscription') - g.custom_command('group-delete', 'delete_deployment_stacks_at_resource_group') + g.custom_command('sub-show', 'show_deployment_stack_at_subscription') + g.custom_command('group-show', 'show_deployment_stack_at_resource_group') + g.custom_command('sub-list', 'list_deployment_stack_at_subscription') + g.custom_command('group-list', 'list_deployment_stack_at_resource_group') + g.custom_command('sub-delete', 'delete_deployment_stack_at_subscription') + g.custom_command('group-delete', 'delete_deployment_stack_at_resource_group') + g.custom_command('sub-create', 'create_deployment_stack_at_subscription') with self.command_group('stacks snapshot', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('sub-show', 'show_deployment_stacks_snapshots_at_subscription') - g.custom_command('group-show', 'show_deployment_stacks_snapshots_at_resource_group') - g.custom_command('sub-list', 'list_deployment_stacks_snapshots_at_subscription') - g.custom_command('group-list', 'list_deployment_stacks_snapshots_at_resource_group') - g.custom_command('sub-delete', 'delete_deployment_stacks_snapshots_at_subscription') - g.custom_command('group-delete', 'delete_deployment_stacks_snapshots_at_resource_group') - + g.custom_command('sub-show', 'show_deployment_stack_snapshot_at_subscription') + g.custom_command('group-show', 'show_deployment_stack_snapshot_at_resource_group') + g.custom_command('sub-list', 'list_deployment_stack_snapshot_at_subscription') + g.custom_command('group-list', 'list_deployment_stack_snapshot_at_resource_group') + g.custom_command('sub-delete', 'delete_deployment_stack_snapshot_at_subscription') + g.custom_command('group-delete', 'delete_deployment_stack_snapshot_at_resource_group') + # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployments_at_resource_group', table_transformer=transform_deployments_list) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 748321eeb74..baeefed34fc 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2078,37 +2078,38 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_subscription() -def show_deployment_stacks_at_subscription(cmd, name=None, stack=None): +def show_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: return rcf.deployment_stacks.get_at_subscription(name) - return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) + return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) raise CLIError("Please enter the stack name or stack resource id") -def show_deployment_stacks_at_resource_group(cmd, name=None, resource_group=None, stack=None): +def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: return rcf.deployment_stacks.get_at_resource_group(resource_group, name) if stack: - return rcf.deployment_stacks.get_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) + stack_arr = stack.split('/') + return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) raise CLIError("Please enter the (stack name and resource group) or stack resource id") -def list_deployment_stacks_at_subscription(cmd): +def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_subscription() -def list_deployment_stacks_at_resource_group(cmd, resource_group): +def list_deployment_stack_at_resource_group(cmd, resource_group): if resource_group: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_resource_group(resource_group) raise CLIError("Please enter the resource group") -def delete_deployment_stacks_at_subscription(cmd, name=None, stack=None): +def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: @@ -2117,33 +2118,59 @@ def delete_deployment_stacks_at_subscription(cmd, name=None, stack=None): raise CLIError("Please enter the stack name or stack resource id") -def delete_deployment_stacks_at_resource_group(cmd, name=None, resource_group = None, stack=None): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: return rcf.deployment_stacks.begin_delete_at_resource_group(resource_group, name) if stack: - return rcf.deployment_stacks.begin_delete_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) + stack_arr = stack.split('/') + return rcf.deployment_stacks.begin_delete_at_resource_group(stack_arr[4], stack_arr[-1]) raise CLIError("Please enter the (stack name and resource group) or stack resource id") +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_url = None, parameters = None, param_uri = None, debug_setting = None): + if not deployment_scope: + deployment_scope = "subscription" + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + + ds = rcf.deployment_stacks.models.DeploymentStack() + templateLink = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + templateLink.id = template_file + ds.template_link = templateLink + print(ds) + ds.description = "harshpateltest1" + ds.deployment_scope = "/subscriptions/69fa7d44-e916-4be7-8c65-62e5a05f9be1" + ds.update_behavior = "Detach" + ds.location = "eastus" + + print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) + -def show_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack_name=None, snapshot=None): + # print(rcf) + # print(rcf.deployment_stacks) + # return rcf.deployment_stacks.DeploymentStack("", location, update_behavior, deployment_scope) + + + +def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: - return rcf.deployment_stack_snapshots.get_at_subscription(snapshot.split('/')[-3], snapshot.split('/')[-1]) + snapshot_arr = snapshot.split('/') + return rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") -def show_deployment_stacks_snapshots_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): +def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: - return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot.split('/')[4], snapshot.split('/')[-3], snapshot.split('/')[-1]) + snapshot_arr = snapshot.split('/') + return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name and resource_group: return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") -def list_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack=None): +def list_deployment_stack_snapshot_at_subscription(cmd, name=None, stack=None): if not name and not stack: raise CLIError("Please enter the stack name or stack resource id") rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2152,28 +2179,31 @@ def list_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack=None) return rcf.deployment_stack_snapshots.list_at_subscription(stack.split('/')[-1]) -def list_deployment_stacks_snapshots_at_resource_group(cmd, name=None, resource_group=None, stack=None): +def list_deployment_stack_snapshot_at_resource_group(cmd, name=None, resource_group=None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if stack: - return rcf.deployment_stack_snapshots.list_at_resource_group(stack.split('/')[4], stack.split('/')[-1]) + if stack: + stack_arr = stack.split('/') + return rcf.deployment_stack_snapshots.list_at_resource_group(stack_arr[4], stack_arr[-1]) if name and resource_group: return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, name) raise CLIError("Please enter the stack name or stack resource id") -def delete_deployment_stacks_snapshots_at_subscription(cmd, name=None, stack_name=None, snapshot=None): +def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: - return rcf.deployment_stack_snapshots.delete_at_subscription(snapshot.split('/')[-3], snapshot.split('/')[-1]) + snapshot_arr = snapshot.split('/') + return rcf.deployment_stack_snapshots.delete_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: return rcf.deployment_stack_snapshots.delete_at_subscription(stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") -def delete_deployment_stacks_snapshots_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): +def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: - return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot.split('/')[4], snapshot.split('/')[-3], snapshot.split('/')[-1]) + snapshot_arr = snapshot.split('/') + return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name and resource_group: return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) raise CLIError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") From 29bc9e95ec231ddea4b759f0644c237bebb1fc60 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 8 Sep 2021 18:17:29 -0400 Subject: [PATCH 008/139] Made progress on sub create --- .../cli/command_modules/resource/custom.py | 89 +++++++++++++++---- 1 file changed, 73 insertions(+), 16 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index baeefed34fc..6f759a7ebca 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -16,6 +16,8 @@ import sys import uuid import base64 +import os.path +from os import path from six.moves.urllib.request import urlopen # pylint: disable=import-error from six.moves.urllib.parse import urlparse # pylint: disable=import-error @@ -2127,27 +2129,82 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N return rcf.deployment_stacks.begin_delete_at_resource_group(stack_arr[4], stack_arr[-1]) raise CLIError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_url = None, parameters = None, param_uri = None, debug_setting = None): - if not deployment_scope: - deployment_scope = "subscription" +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): + # if not deployment_scope: + # deployment_scope = "subscription" + # rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + + # ds = rcf.deployment_stacks.models.DeploymentStack() + # ds.template = json.load(open(template_file)) + # print(ds) + # ds.description = "harshpateltest1" + # ds.deployment_scope = "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321" + # ds.update_behavior = "Detach" + # ds.location = "eastus" + + # print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + + t_spec, t_uri = None, None + p_uri = None - ds = rcf.deployment_stacks.models.DeploymentStack() - templateLink = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - templateLink.id = template_file - ds.template_link = templateLink - print(ds) - ds.description = "harshpateltest1" - ds.deployment_scope = "/subscriptions/69fa7d44-e916-4be7-8c65-62e5a05f9be1" - ds.update_behavior = "Detach" - ds.location = "eastus" + if template_file: + if path.exists(template_file): + t_uri = template_file + else: + raise CLIError("Please enter a valid file path") + elif template_spec: + t_spec = template_spec + elif template_uri: + t_uri = template_uri + else: + # we assume this will end the code + raise CLIError("Please enter one of the following: template file, template spec, or template url") + + if param_file: + pass + elif param_uri: + p_uri = param_uri + + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + + if t_spec: + deployment_stacks_template_link.id = t_spec + deployment_stack_model.template_link = deployment_stacks_template_link + elif t_uri: + #need to validate + deployment_stacks_template_link.id = t_uri + deployment_stack_model.template_link = deployment_stacks_template_link + else: + deployment_stack_model.template = json.load(open(template_file)) + + deployment_stack_model.deployment_scope = "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321" + + + print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, deployment_stack_model)) - print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) - # print(rcf) - # print(rcf.deployment_stacks) - # return rcf.deployment_stacks.DeploymentStack("", location, update_behavior, deployment_scope) + + + # ds.template = json.load(open(template_file)) + # print(ds) + # ds.description = "harshpateltest1" + # ds.deployment_scope = "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321" + # ds.update_behavior = "Detach" + # ds.location = "eastus" + + # print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) + + + + + + + + + From e1b5c4920f903d9a48dc51a297a4cc6e634d68e5 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 10 Sep 2021 21:01:22 -0400 Subject: [PATCH 009/139] Finished sub-create implementation, needs further testing --- .../cli/command_modules/resource/custom.py | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 6f759a7ebca..45270bbe3b2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2143,14 +2143,17 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior # ds.location = "eastus" # print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) + if not deployment_scope: + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - t_spec, t_uri = None, None + t_spec, t_uri, t_file = None, None, None p_uri = None if template_file: if path.exists(template_file): - t_uri = template_file + t_file = template_file else: raise CLIError("Please enter a valid file path") elif template_spec: @@ -2169,6 +2172,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + print(deployment_stack_model) + if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link @@ -2177,12 +2182,12 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior deployment_stacks_template_link.id = t_uri deployment_stack_model.template_link = deployment_stacks_template_link else: - deployment_stack_model.template = json.load(open(template_file)) - - deployment_stack_model.deployment_scope = "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321" + deployment_stack_model.template = json.load(open(t_file)) - - print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, deployment_stack_model)) + # print(rcf.deployment_stacks._create_or_update_at_subscription_initial(name, deployment_stack_model)) + # check = rcf.deployment_stacks.begin_create_or_update_at_subscription(name, deployment_stack_model) + # print(check) + return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) From bc5a73079ff663cacaa5270cd2e0a9ef5b477289 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 13 Sep 2021 15:52:27 -0400 Subject: [PATCH 010/139] Finished group-create, needs testing --- .../cli/command_modules/resource/commands.py | 1 + .../cli/command_modules/resource/custom.py | 76 ++++++++++++------- 2 files changed, 49 insertions(+), 28 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 90cbcf4ea31..bab97a6487d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -346,6 +346,7 @@ def load_command_table(self, _): g.custom_command('sub-delete', 'delete_deployment_stack_at_subscription') g.custom_command('group-delete', 'delete_deployment_stack_at_resource_group') g.custom_command('sub-create', 'create_deployment_stack_at_subscription') + g.custom_command('group-create', 'create_deployment_stack_at_resource_group') with self.command_group('stacks snapshot', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('sub-show', 'show_deployment_stack_snapshot_at_subscription') diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 45270bbe3b2..4120c6df046 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2130,19 +2130,6 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N raise CLIError("Please enter the (stack name and resource group) or stack resource id") def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): - # if not deployment_scope: - # deployment_scope = "subscription" - # rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - - # ds = rcf.deployment_stacks.models.DeploymentStack() - # ds.template = json.load(open(template_file)) - # print(ds) - # ds.description = "harshpateltest1" - # ds.deployment_scope = "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321" - # ds.update_behavior = "Detach" - # ds.location = "eastus" - - # print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) if not deployment_scope: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) @@ -2184,35 +2171,66 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior else: deployment_stack_model.template = json.load(open(t_file)) - # print(rcf.deployment_stacks._create_or_update_at_subscription_initial(name, deployment_stack_model)) - # check = rcf.deployment_stacks.begin_create_or_update_at_subscription(name, deployment_stack_model) - # print(check) return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) +def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): + if not deployment_scope: + #fix this + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group - - - - # ds.template = json.load(open(template_file)) - # print(ds) - # ds.description = "harshpateltest1" - # ds.deployment_scope = "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321" - # ds.update_behavior = "Detach" - # ds.location = "eastus" - - # print(rcf.deployment_stacks.begin_create_or_update_at_subscription(name, ds)) + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + t_spec, t_uri, t_file = None, None, None + parameters, p_uri = None, None + if template_file: + if path.exists(template_file): + t_file = template_file + else: + raise CLIError("Please enter a valid file path") + elif template_spec: + t_spec = template_spec + elif template_uri: + t_uri = template_uri + else: + # we assume this will end the code + raise CLIError("Please enter one of the following: template file, template spec, or template url") + if param_file: + if path.exists(param_file): + parameters = json.load(open(param_file)) + print(parameters) + elif param_uri: + p_uri = param_uri + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, update_behavior = update_behavior, deployment_scope = deployment_scope) + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + print(deployment_stack_model) + + if t_spec: + deployment_stacks_template_link.id = t_spec + deployment_stack_model.template_link = deployment_stacks_template_link + elif t_uri: + #need to validate + deployment_stacks_template_link.uri = t_uri + deployment_stack_model.template_link = deployment_stacks_template_link + else: + deployment_stack_model.template = json.load(open(t_file)) + #new code start + #need to validate uri + if p_uri: + parameters_link = rcf.deployment_stacks.models.DeploymentStacksParametersLink(uri = param_uri) + deployment_stack_model.parameters_link = parameters_link + elif parameters: + deployment_stack_model.parameters = parameters + return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) - def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: @@ -2221,6 +2239,8 @@ def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=No if name and stack_name: return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + + def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) From 059a0d399a0d55fd4ee9c6b995d7d46823fb77cf Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 14 Sep 2021 11:22:52 -0400 Subject: [PATCH 011/139] Sub-create additions --- .../azure/cli/command_modules/resource/custom.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 2d37d72db92..6ee99334063 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2139,7 +2139,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) t_spec, t_uri, t_file = None, None, None - p_uri = None + p_uri, parameters = None, None if template_file: if path.exists(template_file): @@ -2155,7 +2155,9 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior raise CLIError("Please enter one of the following: template file, template spec, or template url") if param_file: - pass + if path.exists(param_file): + parameters = json.load(open(param_file)) + print(parameters) elif param_uri: p_uri = param_uri @@ -2169,10 +2171,16 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior deployment_stack_model.template_link = deployment_stacks_template_link elif t_uri: #need to validate - deployment_stacks_template_link.id = t_uri + deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link else: deployment_stack_model.template = json.load(open(t_file)) + + if p_uri: + parameters_link = rcf.deployment_stacks.models.DeploymentStacksParametersLink(uri = param_uri) + deployment_stack_model.parameters_link = parameters_link + elif parameters: + deployment_stack_model.parameters = parameters return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) From 98152e57675ac9f9344b417195d3f3e83778aa86 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 16 Sep 2021 17:21:51 -0400 Subject: [PATCH 012/139] Fixed grouping --- .../cli/command_modules/resource/commands.py | 36 ++++++++++--------- .../cli/command_modules/resource/custom.py | 9 +++-- 2 files changed, 26 insertions(+), 19 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index bab97a6487d..9771f7274da 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -338,23 +338,27 @@ def load_command_table(self, _): g.custom_command('list', 'list_template_specs') g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) - with self.command_group('stacks', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('sub-show', 'show_deployment_stack_at_subscription') - g.custom_command('group-show', 'show_deployment_stack_at_resource_group') - g.custom_command('sub-list', 'list_deployment_stack_at_subscription') - g.custom_command('group-list', 'list_deployment_stack_at_resource_group') - g.custom_command('sub-delete', 'delete_deployment_stack_at_subscription') - g.custom_command('group-delete', 'delete_deployment_stack_at_resource_group') - g.custom_command('sub-create', 'create_deployment_stack_at_subscription') - g.custom_command('group-create', 'create_deployment_stack_at_resource_group') + with self.command_group('stacks sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('show', 'show_deployment_stack_at_subscription') + g.custom_command('list', 'list_deployment_stack_at_subscription') + g.custom_command('delete', 'delete_deployment_stack_at_subscription') + g.custom_command('create', 'create_deployment_stack_at_subscription') + + with self.command_group('stacks group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('show', 'show_deployment_stack_at_resource_group') + g.custom_command('list', 'list_deployment_stack_at_resource_group') + g.custom_command('delete', 'delete_deployment_stack_at_resource_group') + g.custom_command('create', 'create_deployment_stack_at_resource_group') - with self.command_group('stacks snapshot', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('sub-show', 'show_deployment_stack_snapshot_at_subscription') - g.custom_command('group-show', 'show_deployment_stack_snapshot_at_resource_group') - g.custom_command('sub-list', 'list_deployment_stack_snapshot_at_subscription') - g.custom_command('group-list', 'list_deployment_stack_snapshot_at_resource_group') - g.custom_command('sub-delete', 'delete_deployment_stack_snapshot_at_subscription') - g.custom_command('group-delete', 'delete_deployment_stack_snapshot_at_resource_group') + with self.command_group('stacks snapshot sub', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription') + g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription') + g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription') + + with self.command_group('stacks snapshot group', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group') + g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group') + g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group') # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 6ee99334063..cf78ddefbd2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -58,6 +58,7 @@ get_bicep_available_release_tags, validate_bicep_target_scope ) +from ._deployment_stack import DeploymentStack logger = get_logger(__name__) @@ -2087,9 +2088,10 @@ def show_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: + # return DeploymentStack(rcf.deployment_stacks.get_at_subscription(name)) return rcf.deployment_stacks.get_at_subscription(name) - return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) - raise CLIError("Please enter the stack name or stack resource id") + return DeploymentStack(rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1])) + raise CLIError("Please enter the stack name or stack resource id.") def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, stack=None): @@ -2104,6 +2106,7 @@ def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + # check = DeploymentStack(rcf.deployment_stacks.list_at_subscription()) return rcf.deployment_stacks.list_at_subscription() @@ -2285,7 +2288,7 @@ def list_deployment_stack_snapshot_at_resource_group(cmd, name=None, resource_gr def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: - snapshot_arr = snapshot.split('/') + snapshot_arr = snapshot.split('/') return rcf.deployment_stack_snapshots.delete_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: return rcf.deployment_stack_snapshots.delete_at_subscription(stack_name, name) From 0a863e9bc10eac749f47098862bbb482b57aa693 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 20 Sep 2021 12:31:42 -0400 Subject: [PATCH 013/139] Added deployment scope functionality --- .../azure/cli/command_modules/resource/custom.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index cf78ddefbd2..8788ba300bd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -30,7 +30,7 @@ from azure.cli.core.parser import IncorrectUsageError from azure.cli.core.util import get_file_json, read_file_content, shell_safe_json_parse, sdk_no_wait from azure.cli.core.commands import LongRunningOperation -from azure.cli.core.commands.arm import raise_subdivision_deployment_error +from azure.cli.core.commands.arm import raise_subdivision_deployment_error, resource_exists from azure.cli.core.commands.client_factory import get_mgmt_service_client, get_subscription_id from azure.cli.core.profiles import ResourceType, get_sdk, get_api_version, AZURE_API_PROFILES @@ -2090,7 +2090,7 @@ def show_deployment_stack_at_subscription(cmd, name=None, stack=None): if name: # return DeploymentStack(rcf.deployment_stacks.get_at_subscription(name)) return rcf.deployment_stacks.get_at_subscription(name) - return DeploymentStack(rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1])) + return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) raise CLIError("Please enter the stack name or stack resource id.") @@ -2106,7 +2106,6 @@ def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - # check = DeploymentStack(rcf.deployment_stacks.list_at_subscription()) return rcf.deployment_stacks.list_at_subscription() @@ -2136,10 +2135,13 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N raise CLIError("Please enter the (stack name and resource group) or stack resource id") def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if not deployment_scope: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) - - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + else: + #Verify this get with Gokul + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_scope t_spec, t_uri, t_file = None, None, None p_uri, parameters = None, None @@ -2162,8 +2164,10 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior parameters = json.load(open(param_file)) print(parameters) elif param_uri: - p_uri = param_uri + #confirm with someone about this + p_uri = "'" + param_uri + "'" + #need to add debug setting deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() From 802ce48dc0b091969b562a8f727aff188c0e7264 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 20 Sep 2021 17:45:46 -0400 Subject: [PATCH 014/139] Started integration testing, finished sub show --- .../tests/latest/simple_template.json | 35 +++++++++++++ .../resource/tests/latest/test_resource.py | 52 +++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template.json diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template.json b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template.json new file mode 100644 index 00000000000..9404d497df3 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template.json @@ -0,0 +1,35 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "foo": { + "type": "string", + "defaultValue": "foo", + "metadata": { + "description": "description" + } + }, + "bar": { + "type": "string", + "defaultValue": "bar", + "metadata": { + "description": "description" + } + } + }, + "functions": [], + "variables": { + + }, + "resources": [], + "outputs": { + "foo": { + "type": "string", + "value": "[parameters('foo')]" + }, + "bar": { + "type": "string", + "value": "[parameters('bar')]" + } + } +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 67ad73218d2..cbc8e852c37 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2006,6 +2006,58 @@ def test_delete_deployment_script(self, resource_group): self.cmd('deployment-scripts list', checks=self.check("length([?name=='{deployment_script_name}'])", 0)) +class DeploymentStacksTest(ScenarioTest): + #do we need location below + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks',location='westus2') + def test_show_deployment_stack_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'update-behavior': "detach", + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\') + }) + + # create deployment stack + new_resource = self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}"').get_output_in_json() + self.kwargs['deployment_stack_id'] = new_resource['id'] + + show_by_name = self.cmd('az stacks sub show --name {name}') + self.assertTrue(show_by_name is not None) + + show_by_id = self.cmd('az stacks sub show --stack {deployment_stack_id}') + self.assertTrue(show_by_id is not None) + + # clean up + self.cmd('stacks sub delete --name {name}') + + @AllowLargeResponse(4096) + def test_list_deployment_stack_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-list-deployment-stack-subscription', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'update-behavior': "detach", + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\') + }) + + new_resource = self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}"').get_output_in_json() + + list_with_no_parameters = self.cmd('stacks sub list') + + assert(len(list_with_no_parameters) > 0) + self.assertTrue(list_with_no_parameters.name.contains('{name}')) + + # clean up + self.cmd('stacks sub delete --name {name}') + + + + + class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): From 3367f24d0d70e0f8558d60a5e5e2389a0741c37a Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 22 Sep 2021 10:01:18 -0400 Subject: [PATCH 015/139] More integration test changes --- .../resource/tests/latest/simple_template_params.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_params.json diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_params.json b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_params.json new file mode 100644 index 00000000000..5a7ba12ad87 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_params.json @@ -0,0 +1,8 @@ +{ + "foo": { + "value": "abc" + }, + "bar": { + "value": "xyz" + } +} \ No newline at end of file From 4a1886b2e7b92d8e141b8866c42d9fdf771883c3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 22 Sep 2021 14:04:28 -0400 Subject: [PATCH 016/139] Finished 3/4 rg integration tests and some formatting corrections --- .../cli/command_modules/resource/custom.py | 113 +++++++++--------- .../resource/tests/latest/test_resource.py | 94 +++++++++++++-- 2 files changed, 144 insertions(+), 63 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 8788ba300bd..24692c4c62a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2083,57 +2083,6 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() - -def show_deployment_stack_at_subscription(cmd, name=None, stack=None): - if name or stack: - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name: - # return DeploymentStack(rcf.deployment_stacks.get_at_subscription(name)) - return rcf.deployment_stacks.get_at_subscription(name) - return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) - raise CLIError("Please enter the stack name or stack resource id.") - - -def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, stack=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name and resource_group: - return rcf.deployment_stacks.get_at_resource_group(resource_group, name) - if stack: - stack_arr = stack.split('/') - return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) - raise CLIError("Please enter the (stack name and resource group) or stack resource id") - - -def list_deployment_stack_at_subscription(cmd): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - return rcf.deployment_stacks.list_at_subscription() - - -def list_deployment_stack_at_resource_group(cmd, resource_group): - if resource_group: - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - return rcf.deployment_stacks.list_at_resource_group(resource_group) - raise CLIError("Please enter the resource group") - - -def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): - if name or stack: - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name: - return rcf.deployment_stacks.begin_delete_at_subscription(name) - return rcf.deployment_stacks.begin_delete_at_subscription(stack.split('/')[-1]) - raise CLIError("Please enter the stack name or stack resource id") - - -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name and resource_group: - return rcf.deployment_stacks.begin_delete_at_resource_group(resource_group, name) - if stack: - stack_arr = stack.split('/') - return rcf.deployment_stacks.begin_delete_at_resource_group(stack_arr[4], stack_arr[-1]) - raise CLIError("Please enter the (stack name and resource group) or stack resource id") - def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2191,6 +2140,33 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) + +def show_deployment_stack_at_subscription(cmd, name=None, stack=None): + if name or stack: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + # return DeploymentStack(rcf.deployment_stacks.get_at_subscription(name)) + return rcf.deployment_stacks.get_at_subscription(name) + return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) + raise CLIError("Please enter the stack name or stack resource id.") + + +def list_deployment_stack_at_subscription(cmd): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + rcf.deployment_stacks.list_at_subscription() + + return rcf.deployment_stacks.list_at_subscription() + + +def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): + if name or stack: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.begin_delete_at_subscription(name) + return rcf.deployment_stacks.begin_delete_at_subscription(stack.split('/')[-1]) + raise CLIError("Please enter the stack name or stack resource id") + + def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): if not deployment_scope: #fix this @@ -2246,7 +2222,33 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) - + + +def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, stack=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name and resource_group: + return rcf.deployment_stacks.get_at_resource_group(resource_group, name) + if stack: + stack_arr = stack.split('/') + return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) + raise CLIError("Please enter the (stack name and resource group) or stack resource id") + + +def list_deployment_stack_at_resource_group(cmd, resource_group): + if resource_group: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + return rcf.deployment_stacks.list_at_resource_group(resource_group) + raise CLIError("Please enter the resource group") + + +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name and resource_group: + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) + if stack: + stack_arr = stack.split('/') + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group,stack_arr[4], stack_arr[-1]) + raise CLIError("Please enter the (stack name and resource group) or stack resource id") def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): @@ -2257,9 +2259,8 @@ def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=No if name and stack_name: return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + - - def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: @@ -2293,9 +2294,9 @@ def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name= rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') - return rcf.deployment_stack_snapshots.delete_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) + return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: - return rcf.deployment_stack_snapshots.delete_at_subscription(stack_name, name) + return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index cbc8e852c37..7f4f64e2e89 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2007,8 +2007,6 @@ def test_delete_deployment_script(self, resource_group): checks=self.check("length([?name=='{deployment_script_name}'])", 0)) class DeploymentStacksTest(ScenarioTest): - #do we need location below - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks',location='westus2') def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) @@ -2047,16 +2045,98 @@ def test_list_deployment_stack_subscription(self): new_resource = self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}"').get_output_in_json() list_with_no_parameters = self.cmd('stacks sub list') - - assert(len(list_with_no_parameters) > 0) - self.assertTrue(list_with_no_parameters.name.contains('{name}')) + self.cmd('stacks sub list --query "[?name == \'{}\']"'.format(deployment_stack_name), checks=[ + self.check('[0].name', '{name}'), + ]) # clean up self.cmd('stacks sub delete --name {name}') + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_create_deployment_stack_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-resource-group', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'resource-group': resource_group, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + }) + + # create templete spec + basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() + template_spec_id = basic_template_spec['id'] + + self.kwargs.update({'template-spec-id': template_spec_id}) + + # create deployment stack with template file and parameter file + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + + #create deployment stack with template spec and parameter file + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_show_deployment_stack_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-show-deployment-stack-resource-group', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'resource-group': resource_group, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] + + self.kwargs.update({'deployment-stack-id': deployment_stack_id}) + + # show stack with stack name + self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + + # show stack with stack id + self.cmd('stacks group show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) + + # cleanup + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_list_deployment_stack_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-list-deployment-stack-resource-group', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'resource-group': resource_group, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + # list stacks in rg + list_deployment_stacks_rg = self.cmd('stacks group list --resource-group {resource-group}').get_output_in_json() - + self.assertTrue(len(list_deployment_stacks_rg) > 0) + self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') - class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): From 5d2a63e77e9cb98a3df877b9ce349eaf89618b42 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 23 Sep 2021 09:03:24 -0400 Subject: [PATCH 017/139] Finished more integration testing --- .../resource/tests/latest/test_resource.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 7f4f64e2e89..e6d79044774 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2137,6 +2137,33 @@ def test_list_deployment_stack_resource_group(self, resource_group): self.assertTrue(len(list_deployment_stacks_rg) > 0) self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') + # cleanup + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_delete_deployment_stack_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-resource-group', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'resource-group': resource_group, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + # create stack + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + + # delete stack + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + + #confirm stack is deleted + self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): From 2e39d0f85cad9302ec61010cbfd1913ef4e27684 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 27 Sep 2021 11:13:06 -0400 Subject: [PATCH 018/139] Finished list sub --- .../resource/tests/latest/test_resource.py | 104 +++++++++++++++--- 1 file changed, 87 insertions(+), 17 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index e6d79044774..8674756f4b1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2007,6 +2007,41 @@ def test_delete_deployment_script(self, resource_group): checks=self.check("length([?name=='{deployment_script_name}'])", 0)) class DeploymentStacksTest(ScenarioTest): + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_create_deployment_stack_subscription(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + 'resource-group': resource_group + }) + + # create template spec + basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() + template_spec_id = basic_template_spec['id'] + + self.kwargs.update({'template-spec-id': template_spec_id}) + + # create deployment stack with template file and parameter file + self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stacks sub delete --name {name}') + + #create deployment stack with template spec and parameter file + self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stacks sub delete --name {name}') + def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) @@ -2014,22 +2049,27 @@ def test_show_deployment_stack_subscription(self): 'name': deployment_stack_name, 'update-behavior': "detach", 'location': "westus2", - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\') + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + }) - # create deployment stack - new_resource = self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}"').get_output_in_json() - self.kwargs['deployment_stack_id'] = new_resource['id'] + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] - show_by_name = self.cmd('az stacks sub show --name {name}') - self.assertTrue(show_by_name is not None) + self.kwargs.update({'deployment-stack-id': deployment_stack_id}) - show_by_id = self.cmd('az stacks sub show --stack {deployment_stack_id}') - self.assertTrue(show_by_id is not None) + # show stack with stack name + self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) - # clean up + # show stack with stack id + self.cmd('stacks sub show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) + + # cleanup self.cmd('stacks sub delete --name {name}') + + #test again @AllowLargeResponse(4096) def test_list_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2039,18 +2079,49 @@ def test_list_deployment_stack_subscription(self): 'name': deployment_stack_name, 'update-behavior': "detach", 'location': "westus2", - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\') + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + }) - new_resource = self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}"').get_output_in_json() + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - list_with_no_parameters = self.cmd('stacks sub list') - self.cmd('stacks sub list --query "[?name == \'{}\']"'.format(deployment_stack_name), checks=[ - self.check('[0].name', '{name}'), - ]) + # list stacks + list_deployment_stacks = self.cmd('stacks sub list').get_output_in_json() - # clean up + print(list_deployment_stacks) + + self.assertTrue(len(list_deployment_stacks) > 0) + self.assertTrue(list_deployment_stacks[0]['name'], '{name}') + + # cleanup + self.cmd('stacks sub delete --name {name}') + + @AllowLargeResponse(4096) + def test_delete_deployment_stack_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-subscription', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + # create stack + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) + + # delete stack self.cmd('stacks sub delete --name {name}') + + #confirm stack is deleted + self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) + + #add delete with stack id @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') def test_create_deployment_stack_resource_group(self, resource_group): @@ -2095,7 +2166,6 @@ def test_show_deployment_stack_resource_group(self, resource_group): self.kwargs.update({ 'name': deployment_stack_name, 'resource-group': resource_group, - 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detach", From a490b2df62fdf1a5eb2d6e3ff77a7cf5e3f5a178 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 30 Sep 2021 10:44:33 -0400 Subject: [PATCH 019/139] Finished writing all ITs but need to test, get & creates are currently down --- .../cli/command_modules/resource/custom.py | 2 +- .../resource/tests/latest/test_resource.py | 206 ++++++++++++++++++ src/azure-cli/setup.py | 4 +- 3 files changed, 209 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 24692c4c62a..030b4074447 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2167,7 +2167,7 @@ def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): raise CLIError("Please enter the stack name or stack resource id") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): if not deployment_scope: #fix this deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 8674756f4b1..21dcb854c95 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2235,6 +2235,212 @@ def test_delete_deployment_stack_resource_group(self, resource_group): #confirm stack is deleted self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + def test_show_deployment_stack_snapshot_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'update-behavior': "detach", + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + + }) + + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + #double check this + deployment_stack_snapshot_name = created_deployment_stack['snapshot_name'] + + self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id, + 'snapshot-name': deployment_stack_snapshot_name}) + + # show snapshot with stack name and snapshot name + self.cmd('stacks snapshot sub show --snapshot {name} --name {snapshot-name}', checks=self.check('name', '{snapshot-name}')) + + # show stack with stack id + self.cmd('stacks snapshot sub show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) + + # will this need snapshot delete + # cleanup + self.cmd('stacks sub delete --name {name}') + + def test_list_deployment_stack_snapshot_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-list-deployment-stack-snapshot-subscription', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + + self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id}) + + # list snapshots using stack name + list_with_stack_name = self.cmd('stacks snapshot sub list --name {name}').get_output_in_json() + + self.assertTrue(len(list_with_stack_name) > 0) + self.assertTrue(list_with_stack_name[0]['name'], '{name}') + + #list snapshots using stack id + list_with_stack_id = self.cmd('stacks snapshot sub list --stack {snapshot-id}').get_output_in_json() + + self.assertTrue(len(list_with_stack_id) > 0) + self.assertTrue(list_with_stack_id[0]['name'], '{name}') + + + # cleanup + self.cmd('stacks sub delete --name {name}') + + def test_delete_deployment_stack_snapshot_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-snapshot-subscription', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': "westus2", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + # create stack + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + snapshot_name = created_deployment_stack['snapshot_name'] + + self.kwargs.update({'snapshot-name': snapshot_name}) + + self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{name}')) + + # delete stack with snapshot name and stack name + self.cmd('stacks snapshot sub delete --name {snapshot-name} --stack-name {name}') + + #confirm stack is deleted + self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) + + # create stack + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + snapshot_id = created_deployment_stack['snapshot_id'] + + self.kwargs.update({'snapshot-id': snapshot_id}) + + self.cmd('stacks snapshot sub show --name {name}', checks=self.check('name', '{name}')) + + # delete stack with snapshot id + self.cmd('stacks snapshot sub delete --snapshot {snapshot-id}') + + #confirm stack is deleted + self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_show_deployment_stack_snapshot_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-deployment-stack-resource-group', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'update-behavior': "detach", + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + + }) + + created_deployment_stack = self.cmd('stacks sub group --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + #double check this + deployment_stack_snapshot_name = created_deployment_stack['snapshot_name'] + + self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id, + 'snapshot-name': deployment_stack_snapshot_name}) + + # show snapshot with stack name and snapshot name + self.cmd('stacks snapshot group show --stack-name {name} --name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + + # show stack with stack id + self.cmd('stacks snapshot group show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) + + # will this need snapshot delete + # cleanup + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_list_deployment_stack_snapshot_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-deployment-stack-snapshot-resource-group', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + created_deployment_stack = self.cmd('stacks group reate --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + + self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id}) + + # list snapshots using stack name + list_with_stack_name = self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}').get_output_in_json() + + self.assertTrue(len(list_with_stack_name) > 0) + self.assertTrue(list_with_stack_name[0]['name'], '{name}') + + #list snapshots using stack id + list_with_stack_id = self.cmd('stacks snapshot group list --stack {snapshot-id}').get_output_in_json() + + self.assertTrue(len(list_with_stack_id) > 0) + self.assertTrue(list_with_stack_id[0]['name'], '{name}') + + + # cleanup + self.cmd('stacks group delete --name {name} --resource-group {resource-group') + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + def test_delete_deployment_stack_snapshot_resource_group(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-snapshot-resource-group', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'update-behavior': "detach", + }) + + # create stack + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + snapshot_name = created_deployment_stack['snapshot_name'] + + self.kwargs.update({'snapshot-name': snapshot_name}) + + self.cmd('stacks snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + + # delete stack with snapshot name and stack name + self.cmd('stacks snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group}') + + #confirm stack is deleted + self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + + # create stack + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + snapshot_id = created_deployment_stack['snapshot_id'] + + self.kwargs.update({'snapshot-id': snapshot_id}) + + self.cmd('stacks snapshot group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + + # delete stack with snapshot id + self.cmd('stacks snapshot group delete --snapshot {snapshot-id}') + + #confirm stack is deleted + self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 29ff416621c..af51d8cba2a 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -116,7 +116,7 @@ 'azure-mgmt-redis~=13.0.0', 'azure-mgmt-relay~=0.1.0', 'azure-mgmt-reservations==0.6.0', # TODO: Use requirements.txt instead of '==' #9781 - 'azure-mgmt-resource==19.0.0', + 'azure-mgmt-resource==20.0.0', # 'azure-mgmt-reservations~=0.6.0', 'azure-mgmt-search~=8.0', 'azure-mgmt-security~=2.0.0b1', @@ -131,7 +131,7 @@ 'azure-mgmt-trafficmanager~=0.51.0', 'azure-mgmt-web~=2.0.0', 'azure-multiapi-storage~=0.6.2', - 'azure-storage-common~=1.4', + 'azure-storage-common~=1.4.2', 'azure-synapse-accesscontrol~=0.5.0', 'azure-synapse-artifacts~=0.8.0', 'azure-synapse-spark~=0.2.0', From 0d6a092d9ec7c7f5b066d8f56a9fb783df0f533e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 1 Oct 2021 17:24:15 -0400 Subject: [PATCH 020/139] All IT passed except for ss sub delete and sub create --- .../resource/tests/latest/test_resource.py | 127 +++++++++++------- 1 file changed, 82 insertions(+), 45 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index af06993c458..58d8dbb83a3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2019,7 +2019,7 @@ def test_create_deployment_stack_subscription(self, resource_group): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", 'template-spec-name': template_spec_name, 'template-spec-version': "v1", 'resource-group': resource_group @@ -2038,17 +2038,17 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stacks sub delete --name {name}') #create deployment stack with template spec and parameter file - self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + # self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --name {name}') + # self.cmd('stacks sub delete --name {name}') def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) self.kwargs.update({ 'name': deployment_stack_name, - 'update-behavior': "detach", + 'update-behavior': "detachResources", 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), @@ -2078,7 +2078,7 @@ def test_list_deployment_stack_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, - 'update-behavior': "detach", + 'update-behavior': "detachResources", 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), @@ -2108,21 +2108,33 @@ def test_delete_deployment_stack_subscription(self): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", }) # create stack self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + # check stack to make sure it exists self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) - # delete stack + # delete stack with stack name self.cmd('stacks sub delete --name {name}') - + #confirm stack is deleted self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id + created_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + stack_id = created_stack['id'] + + self.kwargs.update({'id': stack_id}) + + # delete stack with id + self.cmd('stacks sub delete --stack {id}') + + #confirm stack is deleted + self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') def test_create_deployment_stack_resource_group(self, resource_group): @@ -2136,7 +2148,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", 'template-spec-name': template_spec_name, 'template-spec-version': "v1", }) @@ -2169,7 +2181,7 @@ def test_show_deployment_stack_resource_group(self, resource_group): 'resource-group': resource_group, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", }) created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() @@ -2197,7 +2209,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", }) self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() @@ -2222,7 +2234,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", }) # create stack @@ -2236,12 +2248,27 @@ def test_delete_deployment_stack_resource_group(self, resource_group): #confirm stack is deleted self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + # create stack + created_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + stack_id = created_stack['id'] + + self.kwargs.update({'id':stack_id}) + + self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + + # delete stack with stack id + self.cmd('stacks group delete --stack {id} --resource-group {resource-group}') + + #confirm stack is deleted + self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + + def test_show_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) self.kwargs.update({ 'name': deployment_stack_name, - 'update-behavior': "detach", + 'update-behavior': "detachResources", 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), @@ -2249,15 +2276,15 @@ def test_show_deployment_stack_snapshot_subscription(self): }) created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] #double check this - deployment_stack_snapshot_name = created_deployment_stack['snapshot_name'] + deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id, 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stacks snapshot sub show --snapshot {name} --name {snapshot-name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id self.cmd('stacks snapshot sub show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) @@ -2275,13 +2302,13 @@ def test_list_deployment_stack_snapshot_subscription(self): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", }) created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + deployment_stack_id = created_deployment_stack['id'] - self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id}) + self.kwargs.update({'id': deployment_stack_id}) # list snapshots using stack name list_with_stack_name = self.cmd('stacks snapshot sub list --name {name}').get_output_in_json() @@ -2290,12 +2317,11 @@ def test_list_deployment_stack_snapshot_subscription(self): self.assertTrue(list_with_stack_name[0]['name'], '{name}') #list snapshots using stack id - list_with_stack_id = self.cmd('stacks snapshot sub list --stack {snapshot-id}').get_output_in_json() + list_with_stack_id = self.cmd('stacks snapshot sub list --stack {id}').get_output_in_json() self.assertTrue(len(list_with_stack_id) > 0) self.assertTrue(list_with_stack_id[0]['name'], '{name}') - # cleanup self.cmd('stacks sub delete --name {name}') @@ -2308,16 +2334,20 @@ def test_delete_deployment_stack_snapshot_subscription(self): 'location': "westus2", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", }) # create stack created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - snapshot_name = created_deployment_stack['snapshot_name'] + + #create stack again to make another snapshot + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{name}')) + self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name self.cmd('stacks snapshot sub delete --name {snapshot-name} --stack-name {name}') @@ -2327,11 +2357,15 @@ def test_delete_deployment_stack_snapshot_subscription(self): # create stack created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - snapshot_id = created_deployment_stack['snapshot_id'] + + #create stack again + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + snapshot_id = created_deployment_stack['snapshotId'] self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stacks snapshot sub show --name {name}', checks=self.check('name', '{name}')) + self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot id self.cmd('stacks snapshot sub delete --snapshot {snapshot-id}') @@ -2345,16 +2379,16 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): deployment_stack_name = self.create_random_name('cli-test-deployment-stack-resource-group', 60) self.kwargs.update({ 'name': deployment_stack_name, - 'update-behavior': "detach", + 'update-behavior': "detachResources", 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - + 'resource-group': resource_group }) - created_deployment_stack = self.cmd('stacks sub group --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] #double check this - deployment_stack_snapshot_name = created_deployment_stack['snapshot_name'] + deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id, 'snapshot-name': deployment_stack_snapshot_name}) @@ -2378,13 +2412,14 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): 'name': deployment_stack_name, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", + 'resource-group': resource_group }) - created_deployment_stack = self.cmd('stacks group reate --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_snapshot_id = created_deployment_stack['snapshot_id'] + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] - self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id}) + self.kwargs.update({'id': deployment_stack_id}) # list snapshots using stack name list_with_stack_name = self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}').get_output_in_json() @@ -2393,17 +2428,16 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): self.assertTrue(list_with_stack_name[0]['name'], '{name}') #list snapshots using stack id - list_with_stack_id = self.cmd('stacks snapshot group list --stack {snapshot-id}').get_output_in_json() + list_with_stack_id = self.cmd('stacks snapshot group list --stack {id}').get_output_in_json() self.assertTrue(len(list_with_stack_id) > 0) self.assertTrue(list_with_stack_id[0]['name'], '{name}') - # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group') + self.cmd('stacks group delete --name {name} --resource-group {resource-group}') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') - def test_delete_deployment_stack_snapshot_resource_group(self): + def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-snapshot-resource-group', 60) @@ -2411,16 +2445,19 @@ def test_delete_deployment_stack_snapshot_resource_group(self): 'name': deployment_stack_name, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detach", + 'update-behavior': "detachResources", + 'resource-group': resource_group }) # create stack created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - snapshot_name = created_deployment_stack['snapshot_name'] + created_deployment_stack_second = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stacks snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stacks snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name self.cmd('stacks snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group}') @@ -2429,12 +2466,12 @@ def test_delete_deployment_stack_snapshot_resource_group(self): self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - snapshot_id = created_deployment_stack['snapshot_id'] + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + snapshot_id = created_deployment_stack_second['snapshotId'] self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stacks snapshot group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stacks snapshot group show --snapshot {snapshot-id}', checks=self.check('id', '{snapshot-id}')) # delete stack with snapshot id self.cmd('stacks snapshot group delete --snapshot {snapshot-id}') From f2b76ec9693536781b975cdae44cc5e40f72da2a Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 4 Oct 2021 16:43:21 -0400 Subject: [PATCH 021/139] Added bicep file functionality --- .../azure/cli/command_modules/resource/custom.py | 7 ++++++- .../resource/tests/latest/test_resource.py | 8 ++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 030b4074447..4feedc6b02c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2210,7 +2210,12 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link else: - deployment_stack_model.template = json.load(open(t_file)) + # deployment_stack_model.template = json.load(open(t_file)) + template_content = run_bicep_command(["build", "--stdout", t_file]) if is_bicep_file(t_file) else json.load(open(t_file)) + print("hello") + print(template_content) + deployment_stack_model.template = json.loads(template_content) + #new code start #need to validate uri diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 58d8dbb83a3..e2a25b1de53 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2027,7 +2027,7 @@ def test_create_deployment_stack_subscription(self, resource_group): # create template spec basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() - template_spec_id = basic_template_spec['id'] + template_spec_id = basic_template_spec['id'] + "/versions/v1" self.kwargs.update({'template-spec-id': template_spec_id}) @@ -2038,10 +2038,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stacks sub delete --name {name}') #create deployment stack with template spec and parameter file - # self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - # self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name}') def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2155,7 +2155,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # create templete spec basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() - template_spec_id = basic_template_spec['id'] + template_spec_id = basic_template_spec['id'] + "/versions/v1" self.kwargs.update({'template-spec-id': template_spec_id}) From b8e724956741ba90d584ef93e03fa507dba2f91c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 8 Oct 2021 11:40:24 -0400 Subject: [PATCH 022/139] Minor changes to location in test --- .../cli/command_modules/resource/custom.py | 12 ++++-- .../resource/tests/latest/test_resource.py | 40 ++++++++++--------- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 4feedc6b02c..54414ed159d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2211,10 +2211,14 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ deployment_stack_model.template_link = deployment_stacks_template_link else: # deployment_stack_model.template = json.load(open(t_file)) - template_content = run_bicep_command(["build", "--stdout", t_file]) if is_bicep_file(t_file) else json.load(open(t_file)) - print("hello") - print(template_content) - deployment_stack_model.template = json.loads(template_content) + if is_bicep_file(t_file): + template_content = run_bicep_command(["build", "--stdout", t_file]) + input_content = _remove_comments_from_json(template_content, file_path=t_file) + input_template = json.loads(json.dumps(input_content)) + else: + input_template = json.load(open(t_file)) + + deployment_stack_model.template = input_template #new code start diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index e2a25b1de53..6d24c1ebecb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2008,7 +2008,9 @@ def test_delete_deployment_script(self, resource_group): checks=self.check("length([?name=='{deployment_script_name}'])", 0)) class DeploymentStacksTest(ScenarioTest): - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + global location + location = "eastus2euap" + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_subscription(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) @@ -2016,7 +2018,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({ 'name': deployment_stack_name, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2026,7 +2028,7 @@ def test_create_deployment_stack_subscription(self, resource_group): }) # create template spec - basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() + basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() template_spec_id = basic_template_spec['id'] + "/versions/v1" self.kwargs.update({'template-spec-id': template_spec_id}) @@ -2049,7 +2051,7 @@ def test_show_deployment_stack_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, 'update-behavior': "detachResources", - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), @@ -2079,7 +2081,7 @@ def test_list_deployment_stack_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, 'update-behavior': "detachResources", - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), @@ -2105,7 +2107,7 @@ def test_delete_deployment_stack_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2136,7 +2138,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-resource-group', 60) @@ -2145,7 +2147,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({ 'name': deployment_stack_name, 'resource-group': resource_group, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2171,7 +2173,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group}') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-show-deployment-stack-resource-group', 60) @@ -2198,7 +2200,7 @@ def test_show_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group}') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-list-deployment-stack-resource-group', 60) @@ -2206,7 +2208,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): self.kwargs.update({ 'name': deployment_stack_name, 'resource-group': resource_group, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2223,7 +2225,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group}') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-resource-group', 60) @@ -2231,7 +2233,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.kwargs.update({ 'name': deployment_stack_name, 'resource-group': resource_group, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2269,7 +2271,7 @@ def test_show_deployment_stack_snapshot_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, 'update-behavior': "detachResources", - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), @@ -2299,7 +2301,7 @@ def test_list_deployment_stack_snapshot_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2331,7 +2333,7 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, - 'location': "westus2", + 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'update-behavior': "detachResources", @@ -2373,7 +2375,7 @@ def test_delete_deployment_stack_snapshot_subscription(self): #confirm stack is deleted self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_snapshot_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-deployment-stack-resource-group', 60) @@ -2403,7 +2405,7 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group}') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_snapshot_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-deployment-stack-snapshot-resource-group', 60) @@ -2436,7 +2438,7 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group}') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location='westus2') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-snapshot-resource-group', 60) From 0117e41ca53290c7f24da6583ec4725991c60a8e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 20 Oct 2021 11:21:06 -0400 Subject: [PATCH 023/139] Fixed template spec tests for subscription create --- .../resource/tests/latest/test_resource.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 6d24c1ebecb..4d8bc78a8fd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2009,7 +2009,7 @@ def test_delete_deployment_script(self, resource_group): class DeploymentStacksTest(ScenarioTest): global location - location = "eastus2euap" + location = "westus2" @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_subscription(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2029,7 +2029,7 @@ def test_create_deployment_stack_subscription(self, resource_group): # create template spec basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() - template_spec_id = basic_template_spec['id'] + "/versions/v1" + template_spec_id = basic_template_spec['id'] self.kwargs.update({'template-spec-id': template_spec_id}) @@ -2071,7 +2071,6 @@ def test_show_deployment_stack_subscription(self): # cleanup self.cmd('stacks sub delete --name {name}') - #test again @AllowLargeResponse(4096) def test_list_deployment_stack_subscription(self): @@ -2157,7 +2156,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # create templete spec basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() - template_spec_id = basic_template_spec['id'] + "/versions/v1" + template_spec_id = basic_template_spec['id'] self.kwargs.update({'template-spec-id': template_spec_id}) @@ -2359,6 +2358,10 @@ def test_delete_deployment_stack_snapshot_subscription(self): # create stack created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] + + self.kwargs.update({'snapshot-name': snapshot_name}) #create stack again self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() From 5ea2d8da692df346f0807db6ef3f44cf43eeccde Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 21 Oct 2021 10:39:53 -0400 Subject: [PATCH 024/139] Fixed dependency versioning errors --- src/azure-cli/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index cf27d55d622..a82a39bfc41 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -131,7 +131,7 @@ 'azure-mgmt-trafficmanager~=0.51.0', 'azure-mgmt-web~=4.0.0', 'azure-multiapi-storage~=0.7.0', - 'azure-storage-common~=1.4', + 'azure-storage-common~=1.4.1', 'azure-synapse-accesscontrol~=0.5.0', 'azure-synapse-artifacts~=0.8.0', 'azure-synapse-managedprivateendpoints~=0.3.0', From bde34f1741613a97f2f0d10c932f0b3b146eebc3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 25 Oct 2021 11:03:09 -0400 Subject: [PATCH 025/139] Deleted unnecessary code --- src/azure-cli/azure/cli/command_modules/resource/custom.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 7e2c2acaab2..532c4a8d40e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -59,8 +59,6 @@ validate_bicep_target_scope, supports_bicep_publish ) -from ._deployment_stack import DeploymentStack - logger = get_logger(__name__) RPAAS_APIS = {'microsoft.datadog': '/subscriptions/{subscriptionId}/providers/Microsoft.Datadog/agreements/default?api-version=2020-02-01-preview', From 1866a782514b0f3c06fc90464f6de1a4428557f6 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 25 Oct 2021 11:25:35 -0400 Subject: [PATCH 026/139] Updated requirements --- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 8cc19af9882..6d6c9099b7b 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -72,7 +72,7 @@ azure-mgmt-redhatopenshift==1.0.0 azure-mgmt-redis==13.0.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==0.6.0 -azure-mgmt-resource==19.0.0 +azure-mgmt-resource==20.0.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==6.0.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 29c621c490e..36a67f5027c 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -72,7 +72,7 @@ azure-mgmt-redhatopenshift==1.0.0 azure-mgmt-redis==13.0.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==0.6.0 -azure-mgmt-resource==19.0.0 +azure-mgmt-resource==20.0.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==6.0.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 1640edae826..27ac31609a2 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -72,7 +72,7 @@ azure-mgmt-redhatopenshift==1.0.0 azure-mgmt-redis==13.0.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==0.6.0 -azure-mgmt-resource==19.0.0 +azure-mgmt-resource==20.0.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==6.0.0 From c0e9beead1c9c51953935d877a41798bc2496190 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 28 Oct 2021 10:57:42 -0400 Subject: [PATCH 027/139] Finished stacks help --- .../cli/command_modules/resource/_help.py | 145 ++++++++++++++++++ .../cli/command_modules/resource/custom.py | 60 ++++++-- 2 files changed, 193 insertions(+), 12 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 620dbae0c6d..456beb67c8c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2555,3 +2555,148 @@ type: command short-summary: List out all available versions of Bicep CLI. """ + +helps['stacks'] = """ +type: group +short-summary: Manage deployment stacks at subscription or resource group scope. +""" + +helps['stacks sub create'] = """ +type: command +short-summary: Create a deployment stack at subscription scope +examples: + - name: Create a deployment stack using template file. + text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description" + - name: Create a deployment stack with parameter file. + text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --param-file simpleTemplateParams.json --location "westus2" --description "description" + - name: Create a deployment stack with template spec + text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" +""" + +helps['stacks sub list'] = """ +type: command +short-summary: Show all deployment stacks in subscription +examples: + - name: List all stacks + text: az stacks sub list +""" + +helps['az stacks sub show'] = """ +type: command +short-summary: Get specified deployment stack from subscription scope +examples: + - name: Get stack by name. + text: az stacks sub show --name "StackName" + - name: Get stack by stack resource id. + text: az stacks sub show --stack "StackResourceID" +""" + +helps['az stacks sub delete'] = """ +type: command +short-summary: Delete specified deployment stack from subscription scope +examples: + - name: Delete stack by name. + text: az stacks sub delete --name "StackName" + - name: Delete stack by stack resource id. + text: az stacks sub delete --stack "StackResourceID" +""" + +helps['stacks group create'] = """ +type: command +short-summary: Create a deployment stack at resource group scope +examples: + - name: Create a deployment stack using template file. + text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description" + - name: Create a deployment stack with parameter file. + text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --param-file simpleTemplateParams.json --description "description" + - name: Create a deployment stack with template spec + text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" +""" + +helps['stacks group list'] = """ +type: command +short-summary: Show all deployment stacks in resource group +examples: + - name: List all stacks in resource group + text: az stacks group list --resource-group "ResourceGroup" +""" + +helps['az stacks group show'] = """ +type: command +short-summary: Get specified deployment stack from resource group scope +examples: + - name: Get stack by name. + text: az stacks group show --name "StackName" --resource-group "ResourceGroup" + - name: Get stack by stack resource id. + text: az stacks group show --stack "StackResourceID" +""" + +helps['az stacks group delete'] = """ +type: command +short-summary: Delete specified deployment stack from resource group scope +examples: + - name: Delete stack by name. + text: az stacks group delete --name "StackName" --resource-group "ResourceGroup" + - name: Delete stack by stack resource id. + text: az stacks group delete --stack "StackResourceID" +""" + +helps['stacks snapshot sub list'] = """ +type: command +short-summary: Show all snapshots in specified deployment stack at subscription scope +examples: + - name: List all snapshots using stack name + text: az stacks snapshot sub list --name "StackName" + - name: List all snapshots using stack id + text: az stacks snapshot sub list --stack "StackResourceID" +""" + +helps['az stacks snapshot sub show'] = """ +type: command +short-summary: Get specified snapshot in deployment stack at subscription scope +examples: + - name: Get snapshot with stack name and snapshot name. + text: az stacks snapshot sub show --name "SnapshotName" --stack-name "StackName" + - name: Get snapshot by snapshot resource id. + text: az stacks snapshot sub show --snapshot "SnapshotResourceID" +""" + +helps['az stacks snapshot sub delete'] = """ +type: command +short-summary: Delete specified snapshot in deployment stack at subscription scope +examples: + - name: Delete snapshot with stack name and snapshot name. + text: az stacks snapshot sub delete --name "SnapshotName" --stack-name "StackName" + - name: Delete snapshot by snapshot resource id. + text: az stacks snapshot sub delete --snapshot "SnapshotResourceID" +""" + +helps['stacks snapshot group list'] = """ +type: command +short-summary: Show all snapshots in specified deployment stack at resource group scope +examples: + - name: List all snapshots using stack name + text: az stacks snapshot group list --name "StackName" --resource-group "ResourceGroup" + - name: List all snapshots using stack id + text: az stacks snapshot group list --stack "StackResourceID" +""" + +helps['az stacks snapshot group show'] = """ +type: command +short-summary: Get specified snapshot in deployment stack at resource group scope +examples: + - name: Get snapshot with stack name and snapshot name. + text: az stacks snapshot group show --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + - name: Get snapshot by snapshot resource id. + text: az stacks snapshot group show --snapshot "SnapshotResourceID" +""" + +helps['az stacks snapshot group delete'] = """ +type: command +short-summary: Delete specified snapshot in deployment stack at resource group scope +examples: + - name: Delete snapshot with stack name and snapshot name. + text: az stacks snapshot group delete --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + - name: Delete snapshot by snapshot resource id. + text: az stacks snapshot group delete --snapshot "SnapshotResourceID" +""" \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 532c4a8d40e..2bc7216699c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2082,9 +2082,20 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + try: + if rcf.deployment_stacks.get_at_subscription(name): + print("The DeploymentStack " + name + " you're trying to create already exists in the current subscription. Do you want to overwrite it?") + yes_or_no = input() + if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": + pass + else: + return + except: + pass + if not deployment_scope: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) else: @@ -2110,17 +2121,13 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior if param_file: if path.exists(param_file): parameters = json.load(open(param_file)) - print(parameters) elif param_uri: #confirm with someone about this p_uri = "'" + param_uri + "'" - #need to add debug setting deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - print(deployment_stack_model) - if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link @@ -2140,11 +2147,10 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) -def show_deployment_stack_at_subscription(cmd, name=None, stack=None): +def show_deployment_stack_at_subscription(cmd, name, stack): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: - # return DeploymentStack(rcf.deployment_stacks.get_at_subscription(name)) return rcf.deployment_stacks.get_at_subscription(name) return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) raise CLIError("Please enter the stack name or stack resource id.") @@ -2160,19 +2166,34 @@ def list_deployment_stack_at_subscription(cmd): def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + print("Are you sure you want to remove DeploymentStack " + name + "?") + yes_or_no = input() + if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": + pass + else: + return if name: return rcf.deployment_stacks.begin_delete_at_subscription(name) return rcf.deployment_stacks.begin_delete_at_subscription(stack.split('/')[-1]) raise CLIError("Please enter the stack name or stack resource id") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, debug_setting = None, description = None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, description = None): if not deployment_scope: #fix this deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - + try: + if rcf.deployment_stacks.get_at_resource_group(resource_group, name): + print("The DeploymentStack " + name + " you're trying to create already exists in the current resource group. Do you want to overwrite it?") + yes_or_no = input() + if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": + pass + else: + return + except: + pass t_spec, t_uri, t_file = None, None, None parameters, p_uri = None, None @@ -2192,15 +2213,12 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ if param_file: if path.exists(param_file): parameters = json.load(open(param_file)) - print(parameters) elif param_uri: p_uri = param_uri deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, update_behavior = update_behavior, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - print(deployment_stack_model) - if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link @@ -2251,6 +2269,12 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + print("Are you sure you want to remove DeploymentStack " + name + "?") + yes_or_no = input() + if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": + pass + else: + return if name and resource_group: return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) if stack: @@ -2300,6 +2324,12 @@ def list_deployment_stack_snapshot_at_resource_group(cmd, name=None, resource_gr def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + print("Are you sure you want to remove DeploymentStackSnapshot " + name + "?") + yes_or_no = input() + if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": + pass + else: + return if snapshot: snapshot_arr = snapshot.split('/') return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) @@ -2310,6 +2340,12 @@ def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name= def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + print("Are you sure you want to remove DeploymentStackSnapshot " + name + "?") + yes_or_no = input() + if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": + pass + else: + return if snapshot: snapshot_arr = snapshot.split('/') return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) From 1dd379245e6351e55fe6132db371654edc5ab5ed Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 1 Nov 2021 11:16:41 -0400 Subject: [PATCH 028/139] Added validator implementation --- .../command_modules/resource/_validators.py | 6 +++ .../cli/command_modules/resource/commands.py | 14 +++--- .../cli/command_modules/resource/custom.py | 46 +++---------------- .../resource/tests/latest/test_resource.py | 40 ++++++++-------- 4 files changed, 40 insertions(+), 66 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index eacddefe1da..c9b22417ebd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -40,6 +40,12 @@ def _validate_template_spec_out(namespace): if namespace.output_folder and not os.path.isdir(namespace.output_folder): raise CLIError('Please enter a valid output folder') +def validate_deployment_stack_files(namespace): + if namespace.template_file and not os.path.isfile(namespace.template_file): + raise CLIError('Please enter a valid template file path') + if namespace.param_file and not os.path.isfile(namespace.param_file): + raise CLIError('Please enter a valid parameter file path') + def _validate_deployment_name_with_template_specs(namespace): # If missing,try come out with a name associated with the template name diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index ebc33285494..d31f2a4865c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -17,7 +17,7 @@ cf_resource_groups, cf_providers, cf_features, cf_feature_registrations, cf_tags, cf_deployments, cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_policy_exemptions, cf_resource_links, cf_resource_deploymentscripts, cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_group_subscriptions, cf_resource_templatespecs, cf_resource_deploymentstacks) -from azure.cli.command_modules.resource._validators import process_deployment_create_namespace, process_ts_create_or_update_namespace, _validate_template_spec, _validate_template_spec_out +from azure.cli.command_modules.resource._validators import process_deployment_create_namespace, process_ts_create_or_update_namespace, _validate_template_spec, _validate_template_spec_out, validate_deployment_stack_files from ._exception_handler import managementgroups_exception_handler @@ -341,24 +341,24 @@ def load_command_table(self, _): with self.command_group('stacks sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription') g.custom_command('list', 'list_deployment_stack_at_subscription') - g.custom_command('delete', 'delete_deployment_stack_at_subscription') - g.custom_command('create', 'create_deployment_stack_at_subscription') + g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation = True) + g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files) with self.command_group('stacks group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group') g.custom_command('list', 'list_deployment_stack_at_resource_group') - g.custom_command('delete', 'delete_deployment_stack_at_resource_group') - g.custom_command('create', 'create_deployment_stack_at_resource_group') + g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation = True) + g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files) with self.command_group('stacks snapshot sub', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription') g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription') - g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription') + g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription', confirmation = True) with self.command_group('stacks snapshot group', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group') g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group') - g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group') + g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group', confirmation = True) # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 2bc7216699c..7d5e7ae71af 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2087,7 +2087,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior try: if rcf.deployment_stacks.get_at_subscription(name): - print("The DeploymentStack " + name + " you're trying to create already exists in the current subscription. Do you want to overwrite it?") + print("The DeploymentStack " + name + " you're trying to create already exists in the current subscription. Do you want to overwrite it? (y/n)") yes_or_no = input() if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": pass @@ -2106,10 +2106,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior p_uri, parameters = None, None if template_file: - if path.exists(template_file): - t_file = template_file - else: - raise CLIError("Please enter a valid file path") + t_file = template_file elif template_spec: t_spec = template_spec elif template_uri: @@ -2119,8 +2116,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior raise CLIError("Please enter one of the following: template file, template spec, or template url") if param_file: - if path.exists(param_file): - parameters = json.load(open(param_file)) + parameters = json.load(open(param_file)) elif param_uri: #confirm with someone about this p_uri = "'" + param_uri + "'" @@ -2147,7 +2143,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) -def show_deployment_stack_at_subscription(cmd, name, stack): +def show_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: @@ -2166,12 +2162,6 @@ def list_deployment_stack_at_subscription(cmd): def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - print("Are you sure you want to remove DeploymentStack " + name + "?") - yes_or_no = input() - if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": - pass - else: - return if name: return rcf.deployment_stacks.begin_delete_at_subscription(name) return rcf.deployment_stacks.begin_delete_at_subscription(stack.split('/')[-1]) @@ -2186,7 +2176,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): - print("The DeploymentStack " + name + " you're trying to create already exists in the current resource group. Do you want to overwrite it?") + print("The DeploymentStack " + name + " you're trying to create already exists in the current resource group. Do you want to overwrite it? (y/n") yes_or_no = input() if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": pass @@ -2198,10 +2188,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ parameters, p_uri = None, None if template_file: - if path.exists(template_file): - t_file = template_file - else: - raise CLIError("Please enter a valid file path") + t_file = template_file elif template_spec: t_spec = template_spec elif template_uri: @@ -2211,8 +2198,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ raise CLIError("Please enter one of the following: template file, template spec, or template url") if param_file: - if path.exists(param_file): - parameters = json.load(open(param_file)) + parameters = json.load(open(param_file)) elif param_uri: p_uri = param_uri @@ -2269,12 +2255,6 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - print("Are you sure you want to remove DeploymentStack " + name + "?") - yes_or_no = input() - if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": - pass - else: - return if name and resource_group: return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) if stack: @@ -2324,12 +2304,6 @@ def list_deployment_stack_snapshot_at_resource_group(cmd, name=None, resource_gr def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - print("Are you sure you want to remove DeploymentStackSnapshot " + name + "?") - yes_or_no = input() - if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": - pass - else: - return if snapshot: snapshot_arr = snapshot.split('/') return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) @@ -2340,12 +2314,6 @@ def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name= def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - print("Are you sure you want to remove DeploymentStackSnapshot " + name + "?") - yes_or_no = input() - if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": - pass - else: - return if snapshot: snapshot_arr = snapshot.split('/') return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 4d8bc78a8fd..113aec7bccc 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2037,13 +2037,13 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') #create deployment stack with template spec and parameter file self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2069,7 +2069,7 @@ def test_show_deployment_stack_subscription(self): self.cmd('stacks sub show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') #test again @AllowLargeResponse(4096) @@ -2097,7 +2097,7 @@ def test_list_deployment_stack_subscription(self): self.assertTrue(list_deployment_stacks[0]['name'], '{name}') # cleanup - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') @AllowLargeResponse(4096) def test_delete_deployment_stack_subscription(self): @@ -2119,7 +2119,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) # delete stack with stack name - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') #confirm stack is deleted self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) @@ -2131,7 +2131,7 @@ def test_delete_deployment_stack_subscription(self): self.kwargs.update({'id': stack_id}) # delete stack with id - self.cmd('stacks sub delete --stack {id}') + self.cmd('stacks sub delete --stack {id} --yes') #confirm stack is deleted self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) @@ -2164,13 +2164,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): @@ -2197,7 +2197,7 @@ def test_show_deployment_stack_resource_group(self, resource_group): self.cmd('stacks group show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_resource_group(self, resource_group): @@ -2222,7 +2222,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_resource_group(self, resource_group): @@ -2244,7 +2244,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2258,7 +2258,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack with stack id - self.cmd('stacks group delete --stack {id} --resource-group {resource-group}') + self.cmd('stacks group delete --stack {id} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2292,7 +2292,7 @@ def test_show_deployment_stack_snapshot_subscription(self): # will this need snapshot delete # cleanup - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') def test_list_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2324,7 +2324,7 @@ def test_list_deployment_stack_snapshot_subscription(self): self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stacks sub delete --name {name}') + self.cmd('stacks sub delete --name {name} --yes') def test_delete_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2351,7 +2351,7 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stacks snapshot sub delete --name {snapshot-name} --stack-name {name}') + self.cmd('stacks snapshot sub delete --name {snapshot-name} --stack-name {name} --yes') #confirm stack is deleted self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2373,7 +2373,7 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot id - self.cmd('stacks snapshot sub delete --snapshot {snapshot-id}') + self.cmd('stacks snapshot sub delete --snapshot {snapshot-id} --yes') #confirm stack is deleted self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2406,7 +2406,7 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): # will this need snapshot delete # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2439,7 +2439,7 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group}') + self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2465,7 +2465,7 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.cmd('stacks snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stacks snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group}') + self.cmd('stacks snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2479,7 +2479,7 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.cmd('stacks snapshot group show --snapshot {snapshot-id}', checks=self.check('id', '{snapshot-id}')) # delete stack with snapshot id - self.cmd('stacks snapshot group delete --snapshot {snapshot-id}') + self.cmd('stacks snapshot group delete --snapshot {snapshot-id} --yes') #confirm stack is deleted self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) From 00e7041031976c60cbda9950de222b2ad7f4d9e5 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 3 Nov 2021 09:33:25 -0400 Subject: [PATCH 029/139] Fixed missing help cases and added verbose delete responses --- .../cli/command_modules/resource/_help.py | 16 ++++---- .../cli/command_modules/resource/custom.py | 40 +++++++++++++++++-- 2 files changed, 45 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 456beb67c8c..fe3c03b2b40 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2581,7 +2581,7 @@ text: az stacks sub list """ -helps['az stacks sub show'] = """ +helps['stacks sub show'] = """ type: command short-summary: Get specified deployment stack from subscription scope examples: @@ -2591,7 +2591,7 @@ text: az stacks sub show --stack "StackResourceID" """ -helps['az stacks sub delete'] = """ +helps['stacks sub delete'] = """ type: command short-summary: Delete specified deployment stack from subscription scope examples: @@ -2621,7 +2621,7 @@ text: az stacks group list --resource-group "ResourceGroup" """ -helps['az stacks group show'] = """ +helps['stacks group show'] = """ type: command short-summary: Get specified deployment stack from resource group scope examples: @@ -2631,7 +2631,7 @@ text: az stacks group show --stack "StackResourceID" """ -helps['az stacks group delete'] = """ +helps['stacks group delete'] = """ type: command short-summary: Delete specified deployment stack from resource group scope examples: @@ -2651,7 +2651,7 @@ text: az stacks snapshot sub list --stack "StackResourceID" """ -helps['az stacks snapshot sub show'] = """ +helps['stacks snapshot sub show'] = """ type: command short-summary: Get specified snapshot in deployment stack at subscription scope examples: @@ -2661,7 +2661,7 @@ text: az stacks snapshot sub show --snapshot "SnapshotResourceID" """ -helps['az stacks snapshot sub delete'] = """ +helps['stacks snapshot sub delete'] = """ type: command short-summary: Delete specified snapshot in deployment stack at subscription scope examples: @@ -2681,7 +2681,7 @@ text: az stacks snapshot group list --stack "StackResourceID" """ -helps['az stacks snapshot group show'] = """ +helps['stacks snapshot group show'] = """ type: command short-summary: Get specified snapshot in deployment stack at resource group scope examples: @@ -2691,7 +2691,7 @@ text: az stacks snapshot group show --snapshot "SnapshotResourceID" """ -helps['az stacks snapshot group delete'] = """ +helps['stacks snapshot group delete'] = """ type: command short-summary: Delete specified snapshot in deployment stack at resource group scope examples: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 7d5e7ae71af..0a23c55ff4e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2163,8 +2163,17 @@ def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: + try: + rcf.deployment_stacks.get_at_subscription(name) + except: + raise CLIError("DeploymentStack " + name + " not found in the current subscription scope.") return rcf.deployment_stacks.begin_delete_at_subscription(name) - return rcf.deployment_stacks.begin_delete_at_subscription(stack.split('/')[-1]) + stack_name = stack.split('/')[-1] + try: + rcf.deployment_stacks.get_at_subscription(stack_name) + except: + raise CLIError("DeploymentStack " + stack_name + " not found in the current subscription scope.") + return rcf.deployment_stacks.begin_delete_at_subscription(stack_name) raise CLIError("Please enter the stack name or stack resource id") @@ -2256,10 +2265,20 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: + try: + rcf.deployment_stacks.get_at_resource_group(resource_group,name) + except: + raise CLIError("DeploymentStack " + name + " not found in the current resource group scope.") return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) if stack: stack_arr = stack.split('/') - return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group,stack_arr[4], stack_arr[-1]) + stack_name = stack_arr[-1] + stack_rg = stack_arr[-5] + try: + rcf.deployment_stacks.get_at_resource_group(stack_rg, stack_name) + except: + raise CLIError("DeploymentStack " + stack_name + " not found in the current resource group scope.") + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, stack_name) raise CLIError("Please enter the (stack name and resource group) or stack resource id") @@ -2306,8 +2325,16 @@ def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name= rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') + try: + rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) + except: + raise CLIError("DeploymentStack Snapshot " + snapshot_arr[-1] + " not found in the subscription scope.") return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: + try: + rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) + except: + raise CLIError("DeploymentStack Snapshot " + name + " not found in the subscription scope.") return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, name) raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") @@ -2316,12 +2343,19 @@ def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_nam rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') + try: + rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) + except: + raise CLIError("Snapshot " + snapshot_arr[-1] + " not found in the stack.") return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name and resource_group: + try: + rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) + except: + raise CLIError("Snapshot " + name + " not found in the stack") return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) raise CLIError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") - def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) return rcf.deployment_operations.list_at_subscription_scope(deployment_name) From 23cfe66159e3742cf3687dabc31916bee1839369 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 3 Nov 2021 15:01:24 -0400 Subject: [PATCH 030/139] Used proper error handling functions --- .../cli/command_modules/resource/custom.py | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 0a23c55ff4e..d0248c37637 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -26,7 +26,7 @@ from azure.mgmt.resource.resources.models import GenericResource, DeploymentMode -from azure.cli.core.azclierror import ArgumentUsageError, InvalidArgumentValueError, RequiredArgumentMissingError +from azure.cli.core.azclierror import ArgumentUsageError, InvalidArgumentValueError, RequiredArgumentMissingError, ResourceNotFoundError from azure.cli.core.parser import IncorrectUsageError from azure.cli.core.util import get_file_json, read_file_content, shell_safe_json_parse, sdk_no_wait from azure.cli.core.commands import LongRunningOperation @@ -2087,7 +2087,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior try: if rcf.deployment_stacks.get_at_subscription(name): - print("The DeploymentStack " + name + " you're trying to create already exists in the current subscription. Do you want to overwrite it? (y/n)") + logger.info("The DeploymentStack " + name + " you're trying to create already exists in the current subscription. Do you want to overwrite it? (y/n)") yes_or_no = input() if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": pass @@ -2113,7 +2113,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior t_uri = template_uri else: # we assume this will end the code - raise CLIError("Please enter one of the following: template file, template spec, or template url") + raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") if param_file: parameters = json.load(open(param_file)) @@ -2149,7 +2149,7 @@ def show_deployment_stack_at_subscription(cmd, name=None, stack=None): if name: return rcf.deployment_stacks.get_at_subscription(name) return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) - raise CLIError("Please enter the stack name or stack resource id.") + raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") def list_deployment_stack_at_subscription(cmd): @@ -2166,15 +2166,15 @@ def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): try: rcf.deployment_stacks.get_at_subscription(name) except: - raise CLIError("DeploymentStack " + name + " not found in the current subscription scope.") + raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current subscription scope.") return rcf.deployment_stacks.begin_delete_at_subscription(name) stack_name = stack.split('/')[-1] try: rcf.deployment_stacks.get_at_subscription(stack_name) except: - raise CLIError("DeploymentStack " + stack_name + " not found in the current subscription scope.") + raise ResourceNotFoundError("DeploymentStack " + stack_name + " not found in the current subscription scope.") return rcf.deployment_stacks.begin_delete_at_subscription(stack_name) - raise CLIError("Please enter the stack name or stack resource id") + raise InvalidArgumentValueError("Please enter the stack name or stack resource id") def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, description = None): @@ -2185,7 +2185,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): - print("The DeploymentStack " + name + " you're trying to create already exists in the current resource group. Do you want to overwrite it? (y/n") + logger.info("The DeploymentStack " + name + " you're trying to create already exists in the current resource group. Do you want to overwrite it? (y/n") yes_or_no = input() if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": pass @@ -2204,7 +2204,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ t_uri = template_uri else: # we assume this will end the code - raise CLIError("Please enter one of the following: template file, template spec, or template url") + raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") if param_file: parameters = json.load(open(param_file)) @@ -2252,14 +2252,14 @@ def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, if stack: stack_arr = stack.split('/') return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) - raise CLIError("Please enter the (stack name and resource group) or stack resource id") + raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") def list_deployment_stack_at_resource_group(cmd, resource_group): if resource_group: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_resource_group(resource_group) - raise CLIError("Please enter the resource group") + raise InvalidArgumentValueError("Please enter the resource group") def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): @@ -2268,7 +2268,7 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N try: rcf.deployment_stacks.get_at_resource_group(resource_group,name) except: - raise CLIError("DeploymentStack " + name + " not found in the current resource group scope.") + raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) if stack: stack_arr = stack.split('/') @@ -2277,9 +2277,9 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N try: rcf.deployment_stacks.get_at_resource_group(stack_rg, stack_name) except: - raise CLIError("DeploymentStack " + stack_name + " not found in the current resource group scope.") + raise ResourceNotFoundError("DeploymentStack " + stack_name + " not found in the current resource group scope.") return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, stack_name) - raise CLIError("Please enter the (stack name and resource group) or stack resource id") + raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): @@ -2289,7 +2289,7 @@ def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=No return rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) - raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): @@ -2299,12 +2299,12 @@ def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name= return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name and resource_group: return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) - raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") def list_deployment_stack_snapshot_at_subscription(cmd, name=None, stack=None): if not name and not stack: - raise CLIError("Please enter the stack name or stack resource id") + raise InvalidArgumentValueError("Please enter the stack name or stack resource id") rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: return rcf.deployment_stack_snapshots.list_at_subscription(name) @@ -2318,7 +2318,7 @@ def list_deployment_stack_snapshot_at_resource_group(cmd, name=None, resource_gr return rcf.deployment_stack_snapshots.list_at_resource_group(stack_arr[4], stack_arr[-1]) if name and resource_group: return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, name) - raise CLIError("Please enter the stack name or stack resource id") + raise InvalidArgumentValueError("Please enter the stack name or stack resource id") def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): @@ -2328,15 +2328,15 @@ def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name= try: rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) except: - raise CLIError("DeploymentStack Snapshot " + snapshot_arr[-1] + " not found in the subscription scope.") + raise ResourceNotFoundError("DeploymentStack Snapshot " + snapshot_arr[-1] + " not found in the subscription scope.") return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: try: rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) except: - raise CLIError("DeploymentStack Snapshot " + name + " not found in the subscription scope.") + raise ResourceNotFoundError("DeploymentStack Snapshot " + name + " not found in the subscription scope.") return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, name) - raise CLIError("Please enter the (snapshot name and stack name) or snapshot resource id") + raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): @@ -2346,15 +2346,15 @@ def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_nam try: rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) except: - raise CLIError("Snapshot " + snapshot_arr[-1] + " not found in the stack.") + raise ResourceNotFoundError("Snapshot " + snapshot_arr[-1] + " not found in the stack.") return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name and resource_group: try: rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) except: - raise CLIError("Snapshot " + name + " not found in the stack") + raise ResourceNotFoundError("Snapshot " + name + " not found in the stack") return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) - raise CLIError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") + raise InvalidArgumentValueError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) From 82ba3eee19a672b5e0bd498afc95dc7651b4c127 Mon Sep 17 00:00:00 2001 From: "Harsh D. Patel" Date: Thu, 4 Nov 2021 10:47:32 -0400 Subject: [PATCH 031/139] Update src/azure-cli/azure/cli/command_modules/resource/_help.py Co-authored-by: Xing Zhou --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index fe3c03b2b40..09d6a4d1c3a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2575,7 +2575,7 @@ helps['stacks sub list'] = """ type: command -short-summary: Show all deployment stacks in subscription +short-summary: List all deployment stacks in subscription examples: - name: List all stacks text: az stacks sub list From dfe649f8dc342687e18e3bdabece26d33ea1879d Mon Sep 17 00:00:00 2001 From: "Harsh D. Patel" Date: Thu, 4 Nov 2021 10:47:55 -0400 Subject: [PATCH 032/139] Update src/azure-cli/azure/cli/command_modules/resource/_help.py Co-authored-by: Xing Zhou --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 09d6a4d1c3a..59b8efad43a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2615,7 +2615,7 @@ helps['stacks group list'] = """ type: command -short-summary: Show all deployment stacks in resource group +short-summary: List all deployment stacks in resource group examples: - name: List all stacks in resource group text: az stacks group list --resource-group "ResourceGroup" From e89b16d7842717752b0513aff2e432f258596eaf Mon Sep 17 00:00:00 2001 From: "Harsh D. Patel" Date: Thu, 4 Nov 2021 10:48:04 -0400 Subject: [PATCH 033/139] Update src/azure-cli/azure/cli/command_modules/resource/_help.py Co-authored-by: Xing Zhou --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 59b8efad43a..e474a1b8de8 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2643,7 +2643,7 @@ helps['stacks snapshot sub list'] = """ type: command -short-summary: Show all snapshots in specified deployment stack at subscription scope +short-summary: List all snapshots in specified deployment stack at subscription scope examples: - name: List all snapshots using stack name text: az stacks snapshot sub list --name "StackName" From 4c18c77ae7751a50d1310b33ab499100f426aad4 Mon Sep 17 00:00:00 2001 From: "Harsh D. Patel" Date: Thu, 4 Nov 2021 10:48:10 -0400 Subject: [PATCH 034/139] Update src/azure-cli/azure/cli/command_modules/resource/_help.py Co-authored-by: Xing Zhou --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index e474a1b8de8..d5f3455bea5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2673,7 +2673,7 @@ helps['stacks snapshot group list'] = """ type: command -short-summary: Show all snapshots in specified deployment stack at resource group scope +short-summary: List all snapshots in specified deployment stack at resource group scope examples: - name: List all snapshots using stack name text: az stacks snapshot group list --name "StackName" --resource-group "ResourceGroup" From 817f5556b7d7f527618a9436ed1b04cc565b1b26 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 4 Nov 2021 10:52:10 -0400 Subject: [PATCH 035/139] Used correct error type and updated package version --- .../azure/cli/command_modules/resource/_validators.py | 5 +++-- src/azure-cli/setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index c9b22417ebd..7d13179adf3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -7,6 +7,7 @@ import re import argparse +from azure.cli.core.azclierror import InvalidArgumentValueError from knack.util import CLIError try: from urllib.parse import urlparse, urlsplit @@ -42,9 +43,9 @@ def _validate_template_spec_out(namespace): def validate_deployment_stack_files(namespace): if namespace.template_file and not os.path.isfile(namespace.template_file): - raise CLIError('Please enter a valid template file path') + raise InvalidArgumentValueError('Please enter a valid template file path') if namespace.param_file and not os.path.isfile(namespace.param_file): - raise CLIError('Please enter a valid parameter file path') + raise InvalidArgumentValueError('Please enter a valid parameter file path') def _validate_deployment_name_with_template_specs(namespace): diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index e1bcc8e632e..7a79b746e01 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -130,7 +130,7 @@ 'azure-mgmt-trafficmanager~=0.51.0', 'azure-mgmt-web~=4.0.0', 'azure-multiapi-storage~=0.7.0', - 'azure-storage-common~=1.4.1', + 'azure-storage-common~=1.4', 'azure-synapse-accesscontrol~=0.5.0', 'azure-synapse-artifacts~=0.8.0', 'azure-synapse-managedprivateendpoints~=0.3.0', From 462e6f58a4820bcb6a39a6072b40c2feb526582d Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 5 Nov 2021 12:59:45 -0400 Subject: [PATCH 036/139] help.py changes --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index d5f3455bea5..b071768906f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2571,6 +2571,8 @@ text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --param-file simpleTemplateParams.json --location "westus2" --description "description" - name: Create a deployment stack with template spec text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + - name: Create a deployment stack using bicep file. + text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" """ helps['stacks sub list'] = """ @@ -2611,6 +2613,8 @@ text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --param-file simpleTemplateParams.json --description "description" - name: Create a deployment stack with template spec text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" + - name: Create a deployment stack using bicep file. + text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" """ helps['stacks group list'] = """ From 760a522c744c23b6c5cafdab9000074c9f515a70 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 15 Nov 2021 10:11:05 -0500 Subject: [PATCH 037/139] Used appropriate logging function --- .../cli/command_modules/resource/custom.py | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index d0248c37637..1a0b9e6b830 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2087,12 +2087,11 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior try: if rcf.deployment_stacks.get_at_subscription(name): - logger.info("The DeploymentStack " + name + " you're trying to create already exists in the current subscription. Do you want to overwrite it? (y/n)") - yes_or_no = input() - if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": - pass - else: - return + from knack.prompting import prompt_y_n + confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it?".format(name)) + if not confirmation: + return None + pass except: pass @@ -2185,12 +2184,11 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): - logger.info("The DeploymentStack " + name + " you're trying to create already exists in the current resource group. Do you want to overwrite it? (y/n") - yes_or_no = input() - if yes_or_no.lower() == "yes" or yes_or_no.lower() == "y": - pass - else: - return + from knack.prompting import prompt_y_n + confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current resource group. Do you want to overwrite it?".format(name)) + if not confirmation: + return None + pass except: pass t_spec, t_uri, t_file = None, None, None From be56960b43582d65774a2ea579565ff3fe599db8 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 15 Nov 2021 16:03:46 -0500 Subject: [PATCH 038/139] Added argument context --- .../cli/command_modules/resource/_help.py | 4 +- .../cli/command_modules/resource/_params.py | 92 ++++++++++++++++++- .../command_modules/resource/_validators.py | 3 +- .../cli/command_modules/resource/custom.py | 15 ++- .../resource/tests/latest/test_resource.py | 46 +++++----- 5 files changed, 125 insertions(+), 35 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index b071768906f..d6aacc03709 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2568,7 +2568,7 @@ - name: Create a deployment stack using template file. text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description" - name: Create a deployment stack with parameter file. - text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --param-file simpleTemplateParams.json --location "westus2" --description "description" + text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - name: Create a deployment stack with template spec text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - name: Create a deployment stack using bicep file. @@ -2610,7 +2610,7 @@ - name: Create a deployment stack using template file. text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description" - name: Create a deployment stack with parameter file. - text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --param-file simpleTemplateParams.json --description "description" + text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" - name: Create a deployment stack with template spec text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" - name: Create a deployment stack using bicep file. diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 0d3ef04c0a9..319fd20b3e4 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -97,6 +97,20 @@ def load_arguments(self, _): ui_form_definition_file_type = CLIArgumentType(options_list=['--ui-form-definition'], completer=FilesCompleter(), type=file_type, help="A path to a uiFormDefinition file in the file system") + stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') + stacks_deployment_scope_type = CLIArgumentType(options_list=['--deployment-scope'], help='Scope of deployment stack: either resource group or subscription.') + stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') + stacks_update_behavior_type = CLIArgumentType(options_list=['--update-behavior'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') + stacks_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], help='The parameter file path for template.') + stacks_stack_type = CLIArgumentType(options_list=['--stack'], help='The deployment stack resource id.') + stacks_stack_name_type = CLIArgumentType(options_list=['--stack-name'], help='The deployment stack name') + stacks_snapshot_type = CLIArgumentType(options_list=['--snapshot'], help='The deployment stack snapshot resource id.') + stacks_snapshot_name_type = CLIArgumentType(options_list=['--name'], help='The deployment stack snapshot name.') + + + + + _PROVIDER_HELP_TEXT = 'the resource namespace, aka \'provider\'' with self.argument_context('resource') as c: @@ -621,7 +635,83 @@ def load_arguments(self, _): with self.argument_context('ts list') as c: c.argument('resource_group', arg_type=resource_group_name_type) - + + with self.argument_context('stacks sub create') as c: + c.argument('name', arg_type=stacks_name_type) + c.argument('deployment_scope', arg_type=stacks_deployment_scope_type) + c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') + c.argument('template_file', arg_type=deployment_template_file_type) + c.argument('template_spec', arg_type=deployment_template_spec_type) + c.argument('template_uri', arg_type=deployment_template_uri_type) + c.argument('parameters', arg_type=stacks_parameters_type) + c.argument('param_uri', options_list=['--params-uri'], help='The parameter uri that holds parameter file.') + c.argument('update_behavior', arg_type=stacks_update_behavior_type) + c.argument('description', arg_type=stacks_description_type) + + with self.argument_context('stacks sub show') as c: + c.argument('name', arg_type=stacks_name_type) + c.argument('stack', arg_type=stacks_stack_type) + + with self.argument_context('stacks sub delete') as c: + c.argument('name', arg_type=stacks_name_type) + c.argument('stack', arg_type=stacks_stack_type) + + with self.argument_context('stacks group create') as c: + c.argument('name', arg_type=stacks_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack will be created.') + c.argument('deployment_scope', arg_type=stacks_deployment_scope_type) + c.argument('template_file', arg_type=deployment_template_file_type) + c.argument('template_spec', arg_type=deployment_template_spec_type) + c.argument('template_uri', arg_type=deployment_template_uri_type) + c.argument('parameters', arg_type=stacks_parameters_type) + c.argument('param_uri', options_list=['--params-uri'], help='The parameter uri that holds parameter file.') + c.argument('update_behavior', arg_type=stacks_update_behavior_type) + c.argument('description', arg_type=stacks_description_type) + + with self.argument_context('stacks group show') as c: + c.argument('name', arg_type=stacks_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('stack', arg_type=stacks_stack_type) + + with self.argument_context('stacks group list') as c: + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + + with self.argument_context('stacks group delete') as c: + c.argument('name', arg_type=stacks_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('stack', arg_type=stacks_stack_type) + + with self.argument_context('stacks snapshot sub show') as c: + c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) + c.argument('snapshot', arg_type=stacks_snapshot_type) + + with self.argument_context('stacks snapshot sub list') as c: + c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('stack', arg_type=stacks_stack_type) + + with self.argument_context('stacks snapshot sub delete') as c: + c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) + c.argument('snapshot', arg_type=stacks_snapshot_type) + + with self.argument_context('stacks snapshot group show') as c: + c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('stack_name', arg_type=stacks_stack_name_type) + c.argument('snapshot', arg_type=stacks_snapshot_type) + + with self.argument_context('stacks snapshot group list') as c: + c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('stack', arg_type=stacks_stack_type) + + with self.argument_context('stacks snapshot group delete') as c: + c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('stack_name', arg_type=stacks_stack_name_type) + c.argument('snapshot', arg_type=stacks_snapshot_type) + with self.argument_context('bicep build') as c: c.argument('file', arg_type=CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type, help="The path to the Bicep file to build in the file system.")) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index 7d13179adf3..2c82028faa7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -8,6 +8,7 @@ import argparse from azure.cli.core.azclierror import InvalidArgumentValueError +from azure.cli.core.commands import parameters from knack.util import CLIError try: from urllib.parse import urlparse, urlsplit @@ -44,7 +45,7 @@ def _validate_template_spec_out(namespace): def validate_deployment_stack_files(namespace): if namespace.template_file and not os.path.isfile(namespace.template_file): raise InvalidArgumentValueError('Please enter a valid template file path') - if namespace.param_file and not os.path.isfile(namespace.param_file): + if namespace.parameters and not os.path.isfile(namespace.parameters): raise InvalidArgumentValueError('Please enter a valid parameter file path') diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 1a0b9e6b830..a0f02a2ed43 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2082,9 +2082,8 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, description = None): +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - try: if rcf.deployment_stacks.get_at_subscription(name): from knack.prompting import prompt_y_n @@ -2114,8 +2113,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior # we assume this will end the code raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - if param_file: - parameters = json.load(open(param_file)) + if parameters: + parameters = json.load(open(parameters)) elif param_uri: #confirm with someone about this p_uri = "'" + param_uri + "'" @@ -2176,11 +2175,11 @@ def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, param_file = None, param_uri = None, description = None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): if not deployment_scope: #fix this deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group - + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): @@ -2204,8 +2203,8 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ # we assume this will end the code raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - if param_file: - parameters = json.load(open(param_file)) + if parameters: + parameters = json.load(open(parameters)) elif param_uri: p_uri = param_uri diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 113aec7bccc..4b0d8cd508e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2034,13 +2034,13 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stacks sub delete --name {name} --yes') #create deployment stack with template spec and parameter file - self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stacks sub delete --name {name} --yes') @@ -2057,7 +2057,7 @@ def test_show_deployment_stack_subscription(self): }) - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2086,7 +2086,7 @@ def test_list_deployment_stack_subscription(self): }) - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks list_deployment_stacks = self.cmd('stacks sub list').get_output_in_json() @@ -2113,7 +2113,7 @@ def test_delete_deployment_stack_subscription(self): }) # create stack - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) @@ -2125,7 +2125,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id - created_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) @@ -2161,13 +2161,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') @@ -2185,7 +2185,7 @@ def test_show_deployment_stack_resource_group(self, resource_group): 'update-behavior': "detachResources", }) - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2213,7 +2213,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): 'update-behavior': "detachResources", }) - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks in rg list_deployment_stacks_rg = self.cmd('stacks group list --resource-group {resource-group}').get_output_in_json() @@ -2239,7 +2239,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): }) # create stack - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2250,7 +2250,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id':stack_id}) @@ -2276,7 +2276,7 @@ def test_show_deployment_stack_snapshot_subscription(self): }) - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] #double check this deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] @@ -2306,7 +2306,7 @@ def test_list_deployment_stack_snapshot_subscription(self): 'update-behavior': "detachResources", }) - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'id': deployment_stack_id}) @@ -2339,10 +2339,10 @@ def test_delete_deployment_stack_snapshot_subscription(self): }) # create stack - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() #create stack again to make another snapshot - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] @@ -2357,14 +2357,14 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] self.kwargs.update({'snapshot-name': snapshot_name}) #create stack again - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_id = created_deployment_stack['snapshotId'] @@ -2390,7 +2390,7 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): 'resource-group': resource_group }) - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] #double check this deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] @@ -2421,7 +2421,7 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): 'resource-group': resource_group }) - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'id': deployment_stack_id}) @@ -2455,8 +2455,8 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): }) # create stack - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - created_deployment_stack_second = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack_second = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] @@ -2471,7 +2471,7 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --param-file "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_id = created_deployment_stack_second['snapshotId'] self.kwargs.update({'snapshot-id': snapshot_id}) From 050d35bd29dfe60b559e52f8f54eb86a5db84a65 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 18 Nov 2021 16:06:54 -0500 Subject: [PATCH 039/139] Changes from Tarun's review --- .../cli/command_modules/resource/_params.py | 1 - .../cli/command_modules/resource/commands.py | 10 +---- .../cli/command_modules/resource/custom.py | 45 +++++++------------ 3 files changed, 19 insertions(+), 37 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 7b6d1d28870..b0e9c0f658f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -660,7 +660,6 @@ def load_arguments(self, _): with self.argument_context('stacks group create') as c: c.argument('name', arg_type=stacks_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack will be created.') - c.argument('deployment_scope', arg_type=stacks_deployment_scope_type) c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index d31f2a4865c..1cc8bba190c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -183,12 +183,6 @@ def load_command_table(self, _): resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS ) - resource_deploymentstacks_snapshots_sdk = CliCommandType( - operations_tmpl='azure.mgmt.resource.deploymentstacks.snapshots.operations#ResourceLinksOperations.{}', - client_factory=cf_resource_deploymentstacks, - resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS - ) - with self.command_group('account lock', resource_lock_sdk, resource_type=ResourceType.MGMT_RESOURCE_LOCKS) as g: g.custom_command('create', 'create_lock') g.custom_command('delete', 'delete_lock') @@ -350,12 +344,12 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation = True) g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files) - with self.command_group('stacks snapshot sub', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + with self.command_group('stacks snapshot sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription') g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription') g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription', confirmation = True) - with self.command_group('stacks snapshot group', resource_deploymentstacks_snapshots_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + with self.command_group('stacks snapshot group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group') g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group') g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group', confirmation = True) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 1790dd5f6ef..0b6cf067ba8 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2083,10 +2083,13 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope = None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) try: - if rcf.deployment_stacks.get_at_subscription(name): + get_subscription_response = rcf.deployment_stacks.get_at_subscription(name) + if get_subscription_response: + if get_subscription_response.location != location: + raise CLIError("Cannot change location of an already existing stack at subscription scope.") from knack.prompting import prompt_y_n confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it?".format(name)) if not confirmation: @@ -2098,7 +2101,6 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior if not deployment_scope: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) else: - #Verify this get with Gokul deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_scope t_spec, t_uri, t_file = None, None, None @@ -2111,23 +2113,20 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior elif template_uri: t_uri = template_uri else: - # we assume this will end the code raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") if parameters: parameters = json.load(open(parameters)) elif param_uri: - #confirm with someone about this p_uri = "'" + param_uri + "'" - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link elif t_uri: - #need to validate deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link else: @@ -2161,26 +2160,22 @@ def list_deployment_stack_at_subscription(cmd): def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): if name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name: - try: - rcf.deployment_stacks.get_at_subscription(name) - except: - raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current subscription scope.") - return rcf.deployment_stacks.begin_delete_at_subscription(name) - stack_name = stack.split('/')[-1] + delete_name = None try: + if name: + delete_name = name + rcf.deployment_stacks.get_at_subscription(name) + else: + stack_name = stack.split('/')[-1] + delete_name = stack_name rcf.deployment_stacks.get_at_subscription(stack_name) except: - raise ResourceNotFoundError("DeploymentStack " + stack_name + " not found in the current subscription scope.") - return rcf.deployment_stacks.begin_delete_at_subscription(stack_name) + raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current subscription scope.") + return rcf.deployment_stacks.begin_delete_at_subscription(delete_name) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, deployment_scope=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): - if not deployment_scope: - #fix this - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group - +def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): @@ -2201,7 +2196,6 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ elif template_uri: t_uri = template_uri else: - # we assume this will end the code raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") if parameters: @@ -2209,18 +2203,16 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ elif param_uri: p_uri = param_uri - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, update_behavior = update_behavior, deployment_scope = deployment_scope) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, update_behavior = update_behavior) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link elif t_uri: - #need to validate deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link else: - # deployment_stack_model.template = json.load(open(t_file)) if is_bicep_file(t_file): template_content = run_bicep_command(["build", "--stdout", t_file]) input_content = _remove_comments_from_json(template_content, file_path=t_file) @@ -2230,9 +2222,6 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ deployment_stack_model.template = input_template - - #new code start - #need to validate uri if p_uri: parameters_link = rcf.deployment_stacks.models.DeploymentStacksParametersLink(uri = param_uri) deployment_stack_model.parameters_link = parameters_link From 06f235c9c2560cc3d76acf024a52da86683d1515 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 19 Nov 2021 12:18:11 -0500 Subject: [PATCH 040/139] Cleaned up formatting for --output table --- .../cli/command_modules/resource/commands.py | 33 +++++++++++++------ 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 1cc8bba190c..18a136f3505 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -57,6 +57,19 @@ def transform_deployments_list(result): sort_list = sorted(result, key=lambda deployment: deployment['properties']['timestamp']) return [transform_deployment(r) for r in sort_list] +def transform_stacks(result): + r = result + return OrderedDict([('Name', r['name']), + ('State', r['provisioningState']), + ('Last Modified', r['systemData']['lastModifiedAt']), + ('Id', r['id'])]) + +def transform_stacks_list(result): + transformed = [] + for r in result: + res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Id', r['id'])]) + transformed.append(res) + return transformed # pylint: disable=too-many-statements def load_command_table(self, _): @@ -333,25 +346,25 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) with self.command_group('stacks sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_subscription') - g.custom_command('list', 'list_deployment_stack_at_subscription') + g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) + g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation = True) - g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files) + g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) with self.command_group('stacks group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_resource_group') - g.custom_command('list', 'list_deployment_stack_at_resource_group') + g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) + g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation = True) - g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files) + g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) with self.command_group('stacks snapshot sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription') - g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription') + g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription', table_transformer=transform_stacks) + g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription', confirmation = True) with self.command_group('stacks snapshot group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group') - g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group') + g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group', table_transformer=transform_stacks) + g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group', confirmation = True) # az deployment group From 14c5f4e756d08e4a2ab07c336300bf7e6433df0e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 23 Nov 2021 14:50:20 -0500 Subject: [PATCH 041/139] Finished Feedback 2, standardized parameter names + fixed deployment scope + made update behavior not required --- .../cli/command_modules/resource/_help.py | 20 ++-- .../cli/command_modules/resource/_params.py | 29 +++--- .../cli/command_modules/resource/commands.py | 9 +- .../cli/command_modules/resource/custom.py | 92 ++++++++++--------- .../resource/tests/latest/test_resource.py | 71 +++++++------- 5 files changed, 118 insertions(+), 103 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index d6aacc03709..8cbbec1f065 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2588,7 +2588,7 @@ short-summary: Get specified deployment stack from subscription scope examples: - name: Get stack by name. - text: az stacks sub show --name "StackName" + text: az stacks sub show --stack-name "StackName" - name: Get stack by stack resource id. text: az stacks sub show --stack "StackResourceID" """ @@ -2598,7 +2598,7 @@ short-summary: Delete specified deployment stack from subscription scope examples: - name: Delete stack by name. - text: az stacks sub delete --name "StackName" + text: az stacks sub delete --stack-name "StackName" - name: Delete stack by stack resource id. text: az stacks sub delete --stack "StackResourceID" """ @@ -2630,7 +2630,7 @@ short-summary: Get specified deployment stack from resource group scope examples: - name: Get stack by name. - text: az stacks group show --name "StackName" --resource-group "ResourceGroup" + text: az stacks group show --stack-name "StackName" --resource-group "ResourceGroup" - name: Get stack by stack resource id. text: az stacks group show --stack "StackResourceID" """ @@ -2640,7 +2640,7 @@ short-summary: Delete specified deployment stack from resource group scope examples: - name: Delete stack by name. - text: az stacks group delete --name "StackName" --resource-group "ResourceGroup" + text: az stacks group delete --stack-name "StackName" --resource-group "ResourceGroup" - name: Delete stack by stack resource id. text: az stacks group delete --stack "StackResourceID" """ @@ -2650,7 +2650,7 @@ short-summary: List all snapshots in specified deployment stack at subscription scope examples: - name: List all snapshots using stack name - text: az stacks snapshot sub list --name "StackName" + text: az stacks snapshot sub list --stack-name "StackName" - name: List all snapshots using stack id text: az stacks snapshot sub list --stack "StackResourceID" """ @@ -2660,7 +2660,7 @@ short-summary: Get specified snapshot in deployment stack at subscription scope examples: - name: Get snapshot with stack name and snapshot name. - text: az stacks snapshot sub show --name "SnapshotName" --stack-name "StackName" + text: az stacks snapshot sub show --snapshot-name "SnapshotName" --stack-name "StackName" - name: Get snapshot by snapshot resource id. text: az stacks snapshot sub show --snapshot "SnapshotResourceID" """ @@ -2670,7 +2670,7 @@ short-summary: Delete specified snapshot in deployment stack at subscription scope examples: - name: Delete snapshot with stack name and snapshot name. - text: az stacks snapshot sub delete --name "SnapshotName" --stack-name "StackName" + text: az stacks snapshot sub delete --snapshot-name "SnapshotName" --stack-name "StackName" - name: Delete snapshot by snapshot resource id. text: az stacks snapshot sub delete --snapshot "SnapshotResourceID" """ @@ -2680,7 +2680,7 @@ short-summary: List all snapshots in specified deployment stack at resource group scope examples: - name: List all snapshots using stack name - text: az stacks snapshot group list --name "StackName" --resource-group "ResourceGroup" + text: az stacks snapshot group list --stack-name "StackName" --resource-group "ResourceGroup" - name: List all snapshots using stack id text: az stacks snapshot group list --stack "StackResourceID" """ @@ -2690,7 +2690,7 @@ short-summary: Get specified snapshot in deployment stack at resource group scope examples: - name: Get snapshot with stack name and snapshot name. - text: az stacks snapshot group show --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + text: az stacks snapshot group show --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - name: Get snapshot by snapshot resource id. text: az stacks snapshot group show --snapshot "SnapshotResourceID" """ @@ -2700,7 +2700,7 @@ short-summary: Delete specified snapshot in deployment stack at resource group scope examples: - name: Delete snapshot with stack name and snapshot name. - text: az stacks snapshot group delete --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + text: az stacks snapshot group delete --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - name: Delete snapshot by snapshot resource id. text: az stacks snapshot group delete --snapshot "SnapshotResourceID" """ \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index b0e9c0f658f..278ef39c7f6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -98,14 +98,13 @@ def load_arguments(self, _): help="A path to a uiFormDefinition file in the file system") stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') - stacks_deployment_scope_type = CLIArgumentType(options_list=['--deployment-scope'], help='Scope of deployment stack: either resource group or subscription.') stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_update_behavior_type = CLIArgumentType(options_list=['--update-behavior'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') stacks_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], help='The parameter file path for template.') - stacks_stack_type = CLIArgumentType(options_list=['--stack'], help='The deployment stack resource id.') + stacks_stack_type = CLIArgumentType(options_list=['--stack', '-h'], help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(options_list=['--stack-name'], help='The deployment stack name') - stacks_snapshot_type = CLIArgumentType(options_list=['--snapshot'], help='The deployment stack snapshot resource id.') - stacks_snapshot_name_type = CLIArgumentType(options_list=['--name'], help='The deployment stack snapshot name.') + stacks_snapshot_type = CLIArgumentType(options_list=['--snapshot', '-h'], help='The deployment stack snapshot resource id.') + stacks_snapshot_name_type = CLIArgumentType(options_list=['--snapshot-name'], help='The deployment stack snapshot name.') @@ -639,7 +638,7 @@ def load_arguments(self, _): with self.argument_context('stacks sub create') as c: c.argument('name', arg_type=stacks_name_type) - c.argument('deployment_scope', arg_type=stacks_deployment_scope_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The resource group where the deployment stack will be created.') c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) @@ -650,11 +649,11 @@ def load_arguments(self, _): c.argument('description', arg_type=stacks_description_type) with self.argument_context('stacks sub show') as c: - c.argument('name', arg_type=stacks_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stacks sub delete') as c: - c.argument('name', arg_type=stacks_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stacks group create') as c: @@ -669,7 +668,7 @@ def load_arguments(self, _): c.argument('description', arg_type=stacks_description_type) with self.argument_context('stacks group show') as c: - c.argument('name', arg_type=stacks_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack', arg_type=stacks_stack_type) @@ -677,37 +676,37 @@ def load_arguments(self, _): c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') with self.argument_context('stacks group delete') as c: - c.argument('name', arg_type=stacks_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stacks snapshot sub show') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) with self.argument_context('stacks snapshot sub list') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stacks snapshot sub delete') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) with self.argument_context('stacks snapshot group show') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) with self.argument_context('stacks snapshot group list') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stacks snapshot group delete') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) + c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 18a136f3505..9b5fd7c6a25 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -20,6 +20,7 @@ from azure.cli.command_modules.resource._validators import process_deployment_create_namespace, process_ts_create_or_update_namespace, _validate_template_spec, _validate_template_spec_out, validate_deployment_stack_files from ._exception_handler import managementgroups_exception_handler +import json logger = get_logger(__name__) @@ -62,12 +63,16 @@ def transform_stacks(result): return OrderedDict([('Name', r['name']), ('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), - ('Id', r['id'])]) + ('Managed Resources Id', r['managedResources'][0]['id'])]) def transform_stacks_list(result): transformed = [] for r in result: - res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Id', r['id'])]) + res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt'])]) + try: + res['Managed Resources Id'] = r['managedResources'][0]['id'] + except: + res['Managed Resources Id'] = ' ' transformed.append(res) return transformed diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 0b6cf067ba8..9e2e719497e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2083,8 +2083,10 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior, deployment_scope = None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior = None, resource_group = None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if not update_behavior: + update_behavior = "detachResources" try: get_subscription_response = rcf.deployment_stacks.get_at_subscription(name) if get_subscription_response: @@ -2098,10 +2100,10 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior except: pass - if not deployment_scope: + if not resource_group: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) else: - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_scope + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group t_spec, t_uri, t_file = None, None, None p_uri, parameters = None, None @@ -2120,7 +2122,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior elif param_uri: p_uri = "'" + param_uri + "'" - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2141,11 +2143,11 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) -def show_deployment_stack_at_subscription(cmd, name=None, stack=None): - if name or stack: +def show_deployment_stack_at_subscription(cmd, stack_name=None, stack=None): + if stack_name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name: - return rcf.deployment_stacks.get_at_subscription(name) + if stack_name: + return rcf.deployment_stacks.get_at_subscription(stack_name) return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") @@ -2157,14 +2159,14 @@ def list_deployment_stack_at_subscription(cmd): return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): - if name or stack: +def delete_deployment_stack_at_subscription(cmd, stack_name=None, stack=None): + if stack_name or stack: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_name = None try: - if name: - delete_name = name - rcf.deployment_stacks.get_at_subscription(name) + if stack_name: + delete_name = stack_name + rcf.deployment_stacks.get_at_subscription(stack_name) else: stack_name = stack.split('/')[-1] delete_name = stack_name @@ -2177,6 +2179,8 @@ def delete_deployment_stack_at_subscription(cmd, name=None, stack=None): def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if not update_behavior: + update_behavior = "detachResources" try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): from knack.prompting import prompt_y_n @@ -2232,10 +2236,10 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) -def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, stack=None): +def show_deployment_stack_at_resource_group(cmd, stack_name=None, resource_group=None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name and resource_group: - return rcf.deployment_stacks.get_at_resource_group(resource_group, name) + if stack_name and resource_group: + return rcf.deployment_stacks.get_at_resource_group(resource_group, stack_name) if stack: stack_arr = stack.split('/') return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) @@ -2249,14 +2253,14 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, stack=None): +def delete_deployment_stack_at_resource_group(cmd, stack_name=None, resource_group = None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name and resource_group: + if stack_name and resource_group: try: - rcf.deployment_stacks.get_at_resource_group(resource_group,name) + rcf.deployment_stacks.get_at_resource_group(resource_group,stack_name) except: - raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") - return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) + raise ResourceNotFoundError("DeploymentStack " + stack_name + " not found in the current resource group scope.") + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, stack_name) if stack: stack_arr = stack.split('/') stack_name = stack_arr[-1] @@ -2269,46 +2273,46 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): +def show_deployment_stack_snapshot_at_subscription(cmd, snapshot_name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') return rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name: - return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) + if snapshot_name and stack_name: + return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, snapshot_name) raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") -def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): +def show_deployment_stack_snapshot_at_resource_group(cmd, snapshot_name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name and resource_group: - return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) + if snapshot_name and stack_name and resource_group: + return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, snapshot_name) raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") -def list_deployment_stack_snapshot_at_subscription(cmd, name=None, stack=None): - if not name and not stack: +def list_deployment_stack_snapshot_at_subscription(cmd, stack_name=None, stack=None): + if not stack_name and not stack: raise InvalidArgumentValueError("Please enter the stack name or stack resource id") rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name: - return rcf.deployment_stack_snapshots.list_at_subscription(name) + if stack_name: + return rcf.deployment_stack_snapshots.list_at_subscription(stack_name) return rcf.deployment_stack_snapshots.list_at_subscription(stack.split('/')[-1]) -def list_deployment_stack_snapshot_at_resource_group(cmd, name=None, resource_group=None, stack=None): +def list_deployment_stack_snapshot_at_resource_group(cmd, stack_name=None, resource_group=None, stack=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if stack: stack_arr = stack.split('/') return rcf.deployment_stack_snapshots.list_at_resource_group(stack_arr[4], stack_arr[-1]) - if name and resource_group: - return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, name) + if stack_name and resource_group: + return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, stack_name) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, snapshot=None): +def delete_deployment_stack_snapshot_at_subscription(cmd, snapshot_name=None, stack_name=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') @@ -2317,16 +2321,16 @@ def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name= except: raise ResourceNotFoundError("DeploymentStack Snapshot " + snapshot_arr[-1] + " not found in the subscription scope.") return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name: + if snapshot_name and stack_name: try: - rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) + rcf.deployment_stack_snapshots.get_at_subscription(stack_name, snapshot_name) except: - raise ResourceNotFoundError("DeploymentStack Snapshot " + name + " not found in the subscription scope.") - return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, name) + raise ResourceNotFoundError("DeploymentStack Snapshot " + snapshot_name + " not found in the subscription scope.") + return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, snapshot_name) raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") -def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, snapshot=None): +def delete_deployment_stack_snapshot_at_resource_group(cmd, snapshot_name=None, stack_name=None, resource_group=None, snapshot=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if snapshot: snapshot_arr = snapshot.split('/') @@ -2335,12 +2339,12 @@ def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_nam except: raise ResourceNotFoundError("Snapshot " + snapshot_arr[-1] + " not found in the stack.") return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name and resource_group: + if snapshot_name and stack_name and resource_group: try: - rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) + rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, snapshot_name) except: - raise ResourceNotFoundError("Snapshot " + name + " not found in the stack") - return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) + raise ResourceNotFoundError("Snapshot " + snapshot_name + " not found in the stack") + return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, snapshot_name) raise InvalidArgumentValueError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") def list_deployment_operations_at_subscription_scope(cmd, deployment_name): diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 9fd9114a82f..53d7bcccbeb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2041,13 +2041,20 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') #create deployment stack with template spec and parameter file self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') + + # deploy to rg + self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stacks sub delete --stack-name {name} --yes') + def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2067,13 +2074,13 @@ def test_show_deployment_stack_subscription(self): self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) + self.cmd('stacks sub show --stack-name {name}', checks=self.check('name', '{name}')) # show stack with stack id self.cmd('stacks sub show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') #test again @AllowLargeResponse(4096) @@ -2101,7 +2108,7 @@ def test_list_deployment_stack_subscription(self): self.assertTrue(list_deployment_stacks[0]['name'], '{name}') # cleanup - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') @AllowLargeResponse(4096) def test_delete_deployment_stack_subscription(self): @@ -2120,10 +2127,10 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists - self.cmd('stacks sub show --name {name}', checks=self.check('name', '{name}')) + self.cmd('stacks sub show --stack-name {name}', checks=self.check('name', '{name}')) # delete stack with stack name - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') #confirm stack is deleted self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) @@ -2168,13 +2175,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): @@ -2195,13 +2202,13 @@ def test_show_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stacks group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # show stack with stack id self.cmd('stacks group show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_resource_group(self, resource_group): @@ -2226,7 +2233,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_resource_group(self, resource_group): @@ -2245,10 +2252,10 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # create stack self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stacks group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2259,7 +2266,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'id':stack_id}) - self.cmd('stacks group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stacks group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack with stack id self.cmd('stacks group delete --stack {id} --resource-group {resource-group} --yes') @@ -2289,14 +2296,14 @@ def test_show_deployment_stack_snapshot_subscription(self): 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stacks snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id self.cmd('stacks snapshot sub show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) # will this need snapshot delete # cleanup - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') def test_list_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2316,7 +2323,7 @@ def test_list_deployment_stack_snapshot_subscription(self): self.kwargs.update({'id': deployment_stack_id}) # list snapshots using stack name - list_with_stack_name = self.cmd('stacks snapshot sub list --name {name}').get_output_in_json() + list_with_stack_name = self.cmd('stacks snapshot sub list --stack-name {name}').get_output_in_json() self.assertTrue(len(list_with_stack_name) > 0) self.assertTrue(list_with_stack_name[0]['name'], '{name}') @@ -2328,7 +2335,7 @@ def test_list_deployment_stack_snapshot_subscription(self): self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stacks sub delete --name {name} --yes') + self.cmd('stacks sub delete --stack-name {name} --yes') def test_delete_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2352,13 +2359,13 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stacks snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stacks snapshot sub delete --name {snapshot-name} --stack-name {name} --yes') + self.cmd('stacks snapshot sub delete --snapshot-name {snapshot-name} --stack-name {name} --yes') #confirm stack is deleted - self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stacks snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) # create stack created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() @@ -2374,13 +2381,13 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stacks snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stacks snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot id self.cmd('stacks snapshot sub delete --snapshot {snapshot-id} --yes') #confirm stack is deleted - self.cmd('stacks snapshot sub list --name {name}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stacks snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2403,14 +2410,14 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stacks snapshot group show --stack-name {name} --name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stacks snapshot group show --stack-name {name} --snapshot-name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id self.cmd('stacks snapshot group show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) # will this need snapshot delete # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2431,7 +2438,7 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): self.kwargs.update({'id': deployment_stack_id}) # list snapshots using stack name - list_with_stack_name = self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}').get_output_in_json() + list_with_stack_name = self.cmd('stacks snapshot group list --stack-name {name} --resource-group {resource-group}').get_output_in_json() self.assertTrue(len(list_with_stack_name) > 0) self.assertTrue(list_with_stack_name[0]['name'], '{name}') @@ -2443,7 +2450,7 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stacks group delete --name {name} --resource-group {resource-group} --yes') + self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2466,13 +2473,13 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stacks snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stacks snapshot group show --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stacks snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stacks snapshot group delete --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') #confirm stack is deleted - self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stacks snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() @@ -2486,7 +2493,7 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.cmd('stacks snapshot group delete --snapshot {snapshot-id} --yes') #confirm stack is deleted - self.cmd('stacks snapshot group list --name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stacks snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): From 0348828721860d44485696281034b829cebe79c9 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 24 Nov 2021 14:34:35 -0500 Subject: [PATCH 042/139] -h threw errors and fixed output table bug --- .../cli/command_modules/acs/_resourcegroup.py | 17 + .../command_modules/acs/_roleassignments.py | 168 ++++ .../command_modules/acs/addonconfiguration.py | 831 ++++++++++++++++++ .../cli/command_modules/resource/_params.py | 4 +- .../cli/command_modules/resource/commands.py | 7 +- 5 files changed, 1024 insertions(+), 3 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/acs/_resourcegroup.py create mode 100644 src/azure-cli/azure/cli/command_modules/acs/_roleassignments.py create mode 100644 src/azure-cli/azure/cli/command_modules/acs/addonconfiguration.py diff --git a/src/azure-cli/azure/cli/command_modules/acs/_resourcegroup.py b/src/azure-cli/azure/cli/command_modules/acs/_resourcegroup.py new file mode 100644 index 00000000000..61a9fc6851b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acs/_resourcegroup.py @@ -0,0 +1,17 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.azclierror import AzCLIError + +from ._client_factory import cf_resource_groups + + +def get_rg_location(ctx, resource_group_name, subscription_id=None): + groups = cf_resource_groups(ctx, subscription_id=subscription_id) + # Just do the get, we don't need the result, it will error out if the group doesn't exist. + rg = groups.get(resource_group_name) + if rg is None: + raise AzCLIError(f"Resource group {resource_group_name} not found.") + return rg.location diff --git a/src/azure-cli/azure/cli/command_modules/acs/_roleassignments.py b/src/azure-cli/azure/cli/command_modules/acs/_roleassignments.py new file mode 100644 index 00000000000..4adfa71f5a8 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acs/_roleassignments.py @@ -0,0 +1,168 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import uuid + +from azure.cli.core.azclierror import AzCLIError +from azure.cli.core.profiles import ResourceType, get_sdk +from azure.core.exceptions import HttpResponseError +from azure.graphrbac.models import GetObjectsParameters +from knack.log import get_logger +from msrestazure.azure_exceptions import CloudError + +from ._client_factory import (get_auth_management_client, + get_graph_rbac_management_client) + +logger = get_logger(__name__) + + +def _get_object_stubs(graph_client, assignees): + params = GetObjectsParameters(include_directory_object_references=True, + object_ids=assignees) + return list(graph_client.objects.get_objects_by_object_ids(params)) + + +def resolve_object_id(cli_ctx, assignee): + client = get_graph_rbac_management_client(cli_ctx) + result = None + if assignee is None: + raise AzCLIError('Inputted parameter "assignee" is None.') + if assignee.find('@') >= 0: # looks like a user principal name + result = list(client.users.list( + filter="userPrincipalName eq '{}'".format(assignee))) + if not result: + result = list(client.service_principals.list( + filter="servicePrincipalNames/any(c:c eq '{}')".format(assignee))) + if not result: # assume an object id, let us verify it + result = _get_object_stubs(client, [assignee]) + + # 2+ matches should never happen, so we only check 'no match' here + if not result: + raise AzCLIError( + "No matches in graph database for '{}'".format(assignee)) + + return result[0].object_id + + +def resolve_role_id(role, scope, definitions_client): + role_id = None + try: + uuid.UUID(role) + role_id = role + except ValueError: + pass + if not role_id: # retrieve role id + role_defs = list(definitions_client.list( + scope, "roleName eq '{}'".format(role))) + if len(role_defs) == 0: + raise AzCLIError("Role '{}' doesn't exist.".format(role)) + if len(role_defs) > 1: + ids = [r.id for r in role_defs] + err = "More than one role matches the given name '{}'. Please pick a value from '{}'" + raise AzCLIError(err.format(role, ids)) + role_id = role_defs[0].id + return role_id + + +def build_role_scope(resource_group_name: str, scope: str, subscription_id: str): + subscription_scope = '/subscriptions/' + subscription_id + if scope is not None: + if resource_group_name: + err = 'Resource group "{}" is redundant because scope is supplied' + raise AzCLIError(err.format(resource_group_name)) + elif resource_group_name: + scope = subscription_scope + '/resourceGroups/' + resource_group_name + else: + scope = subscription_scope + return scope + + +def create_role_assignment( + cmd, + role, + assignee, + is_service_principal, + resource_group_name=None, + scope=None, + resolve_assignee=True, +): + return _create_role_assignment( + cmd, + role, + assignee, + resource_group_name, + scope, + resolve_assignee=(is_service_principal and resolve_assignee), + ) + + +def _create_role_assignment(cmd, role, assignee, + resource_group_name=None, scope=None, resolve_assignee=True): + factory = get_auth_management_client(cmd.cli_ctx, scope) + assignments_client = factory.role_assignments + definitions_client = factory.role_definitions + + # FIXME: is this necessary? + if assignments_client.config is None: + raise AzCLIError("Assignments client config is undefined.") + + scope = build_role_scope( + resource_group_name, scope, assignments_client.config.subscription_id) + + # XXX: if role is uuid, this function's output cannot be used as role assignment defintion id + # ref: https://github.com/Azure/azure-cli/issues/2458 + role_id = resolve_role_id(role, scope, definitions_client) + + # If the cluster has service principal resolve the service principal client id to get the object id, + # if not use MSI object id. + object_id = resolve_object_id( + cmd.cli_ctx, assignee) if resolve_assignee else assignee + + assignment_name = uuid.uuid4() + custom_headers = None + + RoleAssignmentCreateParameters = get_sdk(cmd.cli_ctx, ResourceType.MGMT_AUTHORIZATION, + 'RoleAssignmentCreateParameters', mod='models', + operation_group='role_assignments') + if cmd.supported_api_version(min_api='2018-01-01-preview', resource_type=ResourceType.MGMT_AUTHORIZATION): + parameters = RoleAssignmentCreateParameters( + role_definition_id=role_id, principal_id=object_id) + return assignments_client.create(scope, assignment_name, parameters, custom_headers=custom_headers) + + # for backward compatibility + RoleAssignmentProperties = get_sdk(cmd.cli_ctx, ResourceType.MGMT_AUTHORIZATION, + 'RoleAssignmentProperties', mod='models', + operation_group='role_assignments') + properties = RoleAssignmentProperties(role_definition_id=role_id, principal_id=object_id) + return assignments_client.create(scope, assignment_name, properties, custom_headers=custom_headers) + + +def add_role_assignment(cmd, role, service_principal_msi_id, is_service_principal=True, delay=2, scope=None): + # AAD can have delays in propagating data, so sleep and retry + hook = cmd.cli_ctx.get_progress_controller(True) + hook.add(message='Waiting for AAD role to propagate', + value=0, total_val=1.0) + logger.info('Waiting for AAD role to propagate') + for x in range(0, 10): + hook.add(message='Waiting for AAD role to propagate', + value=0.1 * x, total_val=1.0) + try: + # TODO: break this out into a shared utility library + create_role_assignment( + cmd, role, service_principal_msi_id, is_service_principal, scope=scope) + break + except (CloudError, HttpResponseError) as ex: + if ex.message == 'The role assignment already exists.': + break + logger.info(ex.message) + except: # pylint: disable=bare-except + pass + time.sleep(delay + delay * x) + else: + return False + hook.add(message='AAD role propagation done', value=1.0, total_val=1.0) + logger.info('AAD role propagation done') + return True diff --git a/src/azure-cli/azure/cli/command_modules/acs/addonconfiguration.py b/src/azure-cli/azure/cli/command_modules/acs/addonconfiguration.py new file mode 100644 index 00000000000..eb3a771d80b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acs/addonconfiguration.py @@ -0,0 +1,831 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import datetime +import json + +from azure.cli.core.azclierror import ( + AzCLIError, + ClientRequestError, +) +from azure.cli.core.commands import LongRunningOperation +from azure.cli.core.commands.client_factory import ( + get_mgmt_service_client, +) +from azure.cli.core.profiles import ResourceType +from azure.cli.core.util import sdk_no_wait, send_raw_request +from azure.core.exceptions import HttpResponseError +from knack.log import get_logger +from msrestazure.tools import parse_resource_id, resource_id + +from ._client_factory import cf_resource_groups, cf_resources +from ._consts import ( + CONST_INGRESS_APPGW_ADDON_NAME, + CONST_INGRESS_APPGW_APPLICATION_GATEWAY_ID, + CONST_INGRESS_APPGW_SUBNET_CIDR, + CONST_INGRESS_APPGW_SUBNET_ID, + CONST_MONITORING_ADDON_NAME, + CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID, + CONST_VIRTUAL_NODE_ADDON_NAME, +) +from ._resourcegroup import get_rg_location +from ._roleassignments import add_role_assignment + +logger = get_logger(__name__) + + +# pylint: disable=too-many-locals +def ensure_default_log_analytics_workspace_for_monitoring( + cmd, subscription_id, resource_group_name +): + # mapping for azure public cloud + # log analytics workspaces cannot be created in WCUS region due to capacity limits + # so mapped to EUS per discussion with log analytics team + AzureCloudLocationToOmsRegionCodeMap = { + "australiasoutheast": "ASE", + "australiaeast": "EAU", + "australiacentral": "CAU", + "canadacentral": "CCA", + "centralindia": "CIN", + "centralus": "CUS", + "eastasia": "EA", + "eastus": "EUS", + "eastus2": "EUS2", + "eastus2euap": "EAP", + "francecentral": "PAR", + "japaneast": "EJP", + "koreacentral": "SE", + "northeurope": "NEU", + "southcentralus": "SCUS", + "southeastasia": "SEA", + "uksouth": "SUK", + "usgovvirginia": "USGV", + "westcentralus": "EUS", + "westeurope": "WEU", + "westus": "WUS", + "westus2": "WUS2", + "brazilsouth": "CQ", + "brazilsoutheast": "BRSE", + "norwayeast": "NOE", + "southafricanorth": "JNB", + "northcentralus": "NCUS", + "uaenorth": "DXB", + "germanywestcentral": "DEWC", + "ukwest": "WUK", + "switzerlandnorth": "CHN", + "switzerlandwest": "CHW", + "uaecentral": "AUH", + } + AzureCloudRegionToOmsRegionMap = { + "australiacentral": "australiacentral", + "australiacentral2": "australiacentral", + "australiaeast": "australiaeast", + "australiasoutheast": "australiasoutheast", + "brazilsouth": "brazilsouth", + "canadacentral": "canadacentral", + "canadaeast": "canadacentral", + "centralus": "centralus", + "centralindia": "centralindia", + "eastasia": "eastasia", + "eastus": "eastus", + "eastus2": "eastus2", + "francecentral": "francecentral", + "francesouth": "francecentral", + "japaneast": "japaneast", + "japanwest": "japaneast", + "koreacentral": "koreacentral", + "koreasouth": "koreacentral", + "northcentralus": "northcentralus", + "northeurope": "northeurope", + "southafricanorth": "southafricanorth", + "southafricawest": "southafricanorth", + "southcentralus": "southcentralus", + "southeastasia": "southeastasia", + "southindia": "centralindia", + "uksouth": "uksouth", + "ukwest": "ukwest", + "westcentralus": "eastus", + "westeurope": "westeurope", + "westindia": "centralindia", + "westus": "westus", + "westus2": "westus2", + "norwayeast": "norwayeast", + "norwaywest": "norwayeast", + "switzerlandnorth": "switzerlandnorth", + "switzerlandwest": "switzerlandwest", + "uaenorth": "uaenorth", + "germanywestcentral": "germanywestcentral", + "germanynorth": "germanywestcentral", + "uaecentral": "uaecentral", + "eastus2euap": "eastus2euap", + "brazilsoutheast": "brazilsoutheast", + } + + # mapping for azure china cloud + # log analytics only support China East2 region + AzureChinaLocationToOmsRegionCodeMap = { + "chinaeast": "EAST2", + "chinaeast2": "EAST2", + "chinanorth": "EAST2", + "chinanorth2": "EAST2", + } + AzureChinaRegionToOmsRegionMap = { + "chinaeast": "chinaeast2", + "chinaeast2": "chinaeast2", + "chinanorth": "chinaeast2", + "chinanorth2": "chinaeast2", + } + + # mapping for azure us governmner cloud + AzureFairfaxLocationToOmsRegionCodeMap = { + "usgovvirginia": "USGV", + "usgovarizona": "PHX", + } + AzureFairfaxRegionToOmsRegionMap = { + "usgovvirginia": "usgovvirginia", + "usgovtexas": "usgovvirginia", + "usgovarizona": "usgovarizona", + } + + rg_location = get_rg_location(cmd.cli_ctx, resource_group_name) + cloud_name = cmd.cli_ctx.cloud.name + + if cloud_name.lower() == "azurecloud": + workspace_region = AzureCloudRegionToOmsRegionMap.get( + rg_location, "eastus" + ) + workspace_region_code = AzureCloudLocationToOmsRegionCodeMap.get( + workspace_region, "EUS" + ) + elif cloud_name.lower() == "azurechinacloud": + workspace_region = AzureChinaRegionToOmsRegionMap.get( + rg_location, "chinaeast2" + ) + workspace_region_code = AzureChinaLocationToOmsRegionCodeMap.get( + workspace_region, "EAST2" + ) + elif cloud_name.lower() == "azureusgovernment": + workspace_region = AzureFairfaxRegionToOmsRegionMap.get( + rg_location, "usgovvirginia" + ) + workspace_region_code = AzureFairfaxLocationToOmsRegionCodeMap.get( + workspace_region, "USGV" + ) + else: + logger.error( + "AKS Monitoring addon not supported in cloud : %s", cloud_name + ) + + default_workspace_resource_group = ( + "DefaultResourceGroup-" + workspace_region_code + ) + default_workspace_name = "DefaultWorkspace-{0}-{1}".format( + subscription_id, workspace_region_code + ) + + default_workspace_resource_id = ( + "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.OperationalInsights/workspaces/{2}".format( + subscription_id, + default_workspace_resource_group, + default_workspace_name, + ) + ) + resource_groups = cf_resource_groups(cmd.cli_ctx, subscription_id) + resources = cf_resources(cmd.cli_ctx, subscription_id) + + # check if default RG exists + if resource_groups.check_existence(default_workspace_resource_group): + try: + resource = resources.get_by_id( + default_workspace_resource_id, "2015-11-01-preview" + ) + return resource.id + except HttpResponseError as ex: + if ex.status_code != 404: + raise ex + else: + ResourceGroup = cmd.get_models( + "ResourceGroup", resource_type=ResourceType.MGMT_RESOURCE_RESOURCES + ) + resource_group = ResourceGroup(location=workspace_region) + resource_groups.create_or_update( + default_workspace_resource_group, resource_group + ) + + GenericResource = cmd.get_models( + "GenericResource", resource_type=ResourceType.MGMT_RESOURCE_RESOURCES + ) + generic_resource = GenericResource( + location=workspace_region, properties={"sku": {"name": "standalone"}} + ) + + async_poller = resources.begin_create_or_update_by_id( + default_workspace_resource_id, "2015-11-01-preview", generic_resource + ) + + ws_resource_id = "" + while True: + result = async_poller.result(15) + if async_poller.done(): + ws_resource_id = result.id + break + + return ws_resource_id + + +def sanitize_loganalytics_ws_resource_id(workspace_resource_id): + workspace_resource_id = workspace_resource_id.strip() + if not workspace_resource_id.startswith("/"): + workspace_resource_id = "/" + workspace_resource_id + if workspace_resource_id.endswith("/"): + workspace_resource_id = workspace_resource_id.rstrip("/") + return workspace_resource_id + + +# pylint: disable=too-many-locals,too-many-branches,too-many-statements +def ensure_container_insights_for_monitoring( + cmd, + addon, + cluster_subscription, + cluster_resource_group_name, + cluster_name, + cluster_region, + remove_monitoring=False, + aad_route=False, + create_dcr=False, + create_dcra=False, +): + """ + Either adds the ContainerInsights solution to a LA Workspace OR sets up a DCR (Data Collection Rule) and DCRA + (Data Collection Rule Association). Both let the monitoring addon send data to a Log Analytics Workspace. + + Set aad_route == True to set up the DCR data route. Otherwise the solution route will be used. Create_dcr and + create_dcra have no effect if aad_route == False. + + Set remove_monitoring to True and create_dcra to True to remove the DCRA from a cluster. The association makes + it very hard to delete either the DCR or cluster. (It is not obvious how to even navigate to the association from + the portal, and it prevents the cluster and DCR from being deleted individually). + """ + if not addon.enabled: + return None + + # workaround for this addon key which has been seen lowercased in the wild + for key in list(addon.config): + if ( + key.lower() == CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID.lower() and + key != CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID + ): + addon.config[ + CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID + ] = addon.config.pop(key) + + workspace_resource_id = addon.config[ + CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID + ] + workspace_resource_id = sanitize_loganalytics_ws_resource_id( + workspace_resource_id + ) + + # extract subscription ID and resource group from workspace_resource_id URL + try: + subscription_id = workspace_resource_id.split("/")[2] + resource_group = workspace_resource_id.split("/")[4] + workspace_name = workspace_resource_id.split("/")[8] + except IndexError: + raise AzCLIError( + "Could not locate resource group in workspace-resource-id URL." + ) + + # region of workspace can be different from region of RG so find the location of the workspace_resource_id + if not remove_monitoring: + resources = cf_resources(cmd.cli_ctx, subscription_id) + try: + resource = resources.get_by_id( + workspace_resource_id, "2015-11-01-preview" + ) + location = resource.location + except HttpResponseError as ex: + raise ex + + if aad_route: + cluster_resource_id = ( + f"/subscriptions/{cluster_subscription}/resourceGroups/{cluster_resource_group_name}/" + f"providers/Microsoft.ContainerService/managedClusters/{cluster_name}" + ) + dataCollectionRuleName = f"DCR-{workspace_name}" + dcr_resource_id = ( + f"/subscriptions/{subscription_id}/resourceGroups/{resource_group}/" + f"providers/Microsoft.Insights/dataCollectionRules/{dataCollectionRuleName}" + ) + if create_dcr: + # first get the association between region display names and region IDs (because for some reason + # the "which RPs are available in which regions" check returns region display names) + region_names_to_id = {} + # retry the request up to two times + for _ in range(3): + try: + location_list_url = ( + f"https://management.azure.com/subscriptions/{subscription_id}/" + "locations?api-version=2019-11-01" + ) + r = send_raw_request(cmd.cli_ctx, "GET", location_list_url) + + # this is required to fool the static analyzer. The else statement will only run if an exception + # is thrown, but flake8 will complain that e is undefined if we don't also define it here. + error = None + break + except AzCLIError as e: + error = e + else: + # This will run if the above for loop was not broken out of. This means all three requests failed + raise error + json_response = json.loads(r.text) + for region_data in json_response["value"]: + region_names_to_id[region_data["displayName"]] = region_data[ + "name" + ] + + # check if region supports DCRs and DCR-A + for _ in range(3): + try: + feature_check_url = ( + f"https://management.azure.com/subscriptions/{subscription_id}/" + "providers/Microsoft.Insights?api-version=2020-10-01" + ) + r = send_raw_request(cmd.cli_ctx, "GET", feature_check_url) + error = None + break + except AzCLIError as e: + error = e + else: + raise error + json_response = json.loads(r.text) + for resource in json_response["resourceTypes"]: + region_ids = map( + lambda x: region_names_to_id[x], resource["locations"] + ) # map is lazy, so doing this for every region isn't slow + if ( + resource["resourceType"].lower() == "datacollectionrules" and + location not in region_ids + ): + raise ClientRequestError( + f"Data Collection Rules are not supported for LA workspace region {location}" + ) + if ( + resource["resourceType"].lower() == "datacollectionruleassociations" and + cluster_region not in region_ids + ): + raise ClientRequestError( + f"Data Collection Rule Associations are not supported for cluster region {location}" + ) + + # create the DCR + dcr_creation_body = json.dumps( + { + "location": location, + "properties": { + "dataSources": { + "extensions": [ + { + "name": "ContainerInsightsExtension", + "streams": [ + "Microsoft-Perf", + "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", + "Microsoft-ContainerLogV2", + "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", + "Microsoft-KubeHealth", + "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", + "Microsoft-KubePodInventory", + "Microsoft-KubePVInventory", + "Microsoft-KubeServices", + "Microsoft-InsightsMetrics", + ], + "extensionName": "ContainerInsights", + } + ] + }, + "dataFlows": [ + { + "streams": [ + "Microsoft-Perf", + "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", + "Microsoft-ContainerLogV2", + "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", + "Microsoft-KubeHealth", + "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", + "Microsoft-KubePodInventory", + "Microsoft-KubePVInventory", + "Microsoft-KubeServices", + "Microsoft-InsightsMetrics", + ], + "destinations": ["la-workspace"], + } + ], + "destinations": { + "logAnalytics": [ + { + "workspaceResourceId": workspace_resource_id, + "name": "la-workspace", + } + ] + }, + }, + } + ) + dcr_url = f"https://management.azure.com/{dcr_resource_id}?api-version=2019-11-01-preview" + for _ in range(3): + try: + send_raw_request( + cmd.cli_ctx, "PUT", dcr_url, body=dcr_creation_body + ) + error = None + break + except AzCLIError as e: + error = e + else: + raise error + + if create_dcra: + # only create or delete the association between the DCR and cluster + association_body = json.dumps( + { + "location": cluster_region, + "properties": { + "dataCollectionRuleId": dcr_resource_id, + "description": "routes monitoring data to a Log Analytics workspace", + }, + } + ) + association_url = ( + f"https://management.azure.com/{cluster_resource_id}/providers/Microsoft.Insights/" + f"dataCollectionRuleAssociations/send-to-{workspace_name}?api-version=2019-11-01-preview" + ) + for _ in range(3): + try: + send_raw_request( + cmd.cli_ctx, + "PUT" if not remove_monitoring else "DELETE", + association_url, + body=association_body, + ) + error = None + break + except AzCLIError as e: + error = e + else: + raise error + + else: + # legacy auth with LA workspace solution + unix_time_in_millis = int( + ( + datetime.datetime.utcnow() - + datetime.datetime.utcfromtimestamp(0) + ).total_seconds() * 1000.0 + ) + + solution_deployment_name = "ContainerInsights-{}".format( + unix_time_in_millis + ) + + # pylint: disable=line-too-long + template = { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "workspaceResourceId": { + "type": "string", + "metadata": { + "description": "Azure Monitor Log Analytics Resource ID" + }, + }, + "workspaceRegion": { + "type": "string", + "metadata": { + "description": "Azure Monitor Log Analytics workspace region" + }, + }, + "solutionDeploymentName": { + "type": "string", + "metadata": { + "description": "Name of the solution deployment" + }, + }, + }, + "resources": [ + { + "type": "Microsoft.Resources/deployments", + "name": "[parameters('solutionDeploymentName')]", + "apiVersion": "2017-05-10", + "subscriptionId": "[split(parameters('workspaceResourceId'),'/')[2]]", + "resourceGroup": "[split(parameters('workspaceResourceId'),'/')[4]]", + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "variables": {}, + "resources": [ + { + "apiVersion": "2015-11-01-preview", + "type": "Microsoft.OperationsManagement/solutions", + "location": "[parameters('workspaceRegion')]", + "name": "[Concat('ContainerInsights', '(', split(parameters('workspaceResourceId'),'/')[8], ')')]", + "properties": { + "workspaceResourceId": "[parameters('workspaceResourceId')]" + }, + "plan": { + "name": "[Concat('ContainerInsights', '(', split(parameters('workspaceResourceId'),'/')[8], ')')]", + "product": "[Concat('OMSGallery/', 'ContainerInsights')]", + "promotionCode": "", + "publisher": "Microsoft", + }, + } + ], + }, + "parameters": {}, + }, + } + ], + } + + params = { + "workspaceResourceId": {"value": workspace_resource_id}, + "workspaceRegion": {"value": location}, + "solutionDeploymentName": {"value": solution_deployment_name}, + } + + deployment_name = "aks-monitoring-{}".format(unix_time_in_millis) + # publish the Container Insights solution to the Log Analytics workspace + return _invoke_deployment( + cmd, + resource_group, + deployment_name, + template, + params, + validate=False, + no_wait=False, + subscription_id=subscription_id, + ) + + +def _invoke_deployment( + cmd, + resource_group_name, + deployment_name, + template, + parameters, + validate, + no_wait, + subscription_id=None, +): + DeploymentProperties = cmd.get_models( + "DeploymentProperties", + resource_type=ResourceType.MGMT_RESOURCE_RESOURCES, + ) + properties = DeploymentProperties( + template=template, parameters=parameters, mode="incremental" + ) + smc = get_mgmt_service_client( + cmd.cli_ctx, + ResourceType.MGMT_RESOURCE_RESOURCES, + subscription_id=subscription_id, + ).deployments + if validate: + logger.info("==== BEGIN TEMPLATE ====") + logger.info(json.dumps(template, indent=2)) + logger.info("==== END TEMPLATE ====") + + Deployment = cmd.get_models( + "Deployment", resource_type=ResourceType.MGMT_RESOURCE_RESOURCES + ) + deployment = Deployment(properties=properties) + + if validate: + if cmd.supported_api_version( + min_api="2019-10-01", + resource_type=ResourceType.MGMT_RESOURCE_RESOURCES, + ): + validation_poller = smc.begin_validate( + resource_group_name, deployment_name, deployment + ) + return LongRunningOperation(cmd.cli_ctx)(validation_poller) + return smc.validate(resource_group_name, deployment_name, deployment) + + return sdk_no_wait( + no_wait, + smc.begin_create_or_update, + resource_group_name, + deployment_name, + deployment, + ) + + +def add_monitoring_role_assignment(result, cluster_resource_id, cmd): + service_principal_msi_id = None + # Check if service principal exists, if it does, assign permissions to service principal + # Else, provide permissions to MSI + if ( + hasattr(result, "service_principal_profile") and + hasattr(result.service_principal_profile, "client_id") and + result.service_principal_profile.client_id.lower() != "msi" + ): + logger.info("valid service principal exists, using it") + service_principal_msi_id = result.service_principal_profile.client_id + is_service_principal = True + elif ( + (hasattr(result, "addon_profiles")) and + (CONST_MONITORING_ADDON_NAME in result.addon_profiles) and + ( + hasattr( + result.addon_profiles[CONST_MONITORING_ADDON_NAME], "identity" + ) + ) and + ( + hasattr( + result.addon_profiles[CONST_MONITORING_ADDON_NAME].identity, + "object_id", + ) + ) + ): + logger.info("omsagent MSI exists, using it") + service_principal_msi_id = result.addon_profiles[ + CONST_MONITORING_ADDON_NAME + ].identity.object_id + is_service_principal = False + + if service_principal_msi_id is not None: + if not add_role_assignment( + cmd, + "Monitoring Metrics Publisher", + service_principal_msi_id, + is_service_principal, + scope=cluster_resource_id, + ): + logger.warning( + "Could not create a role assignment for Monitoring addon. " + "Are you an Owner on this subscription?" + ) + else: + logger.warning( + "Could not find service principal or user assigned MSI for role" + "assignment" + ) + + +def add_ingress_appgw_addon_role_assignment(result, cmd): + service_principal_msi_id = None + # Check if service principal exists, if it does, assign permissions to service principal + # Else, provide permissions to MSI + if ( + hasattr(result, "service_principal_profile") and + hasattr(result.service_principal_profile, "client_id") and + result.service_principal_profile.client_id != "msi" + ): + service_principal_msi_id = result.service_principal_profile.client_id + is_service_principal = True + elif ( + (hasattr(result, "addon_profiles")) and + (CONST_INGRESS_APPGW_ADDON_NAME in result.addon_profiles) and + ( + hasattr( + result.addon_profiles[CONST_INGRESS_APPGW_ADDON_NAME], + "identity", + ) + ) and + ( + hasattr( + result.addon_profiles[CONST_INGRESS_APPGW_ADDON_NAME].identity, + "object_id", + ) + ) + ): + service_principal_msi_id = result.addon_profiles[ + CONST_INGRESS_APPGW_ADDON_NAME + ].identity.object_id + is_service_principal = False + + if service_principal_msi_id is not None: + config = result.addon_profiles[CONST_INGRESS_APPGW_ADDON_NAME].config + if CONST_INGRESS_APPGW_APPLICATION_GATEWAY_ID in config: + appgw_id = config[CONST_INGRESS_APPGW_APPLICATION_GATEWAY_ID] + parsed_appgw_id = parse_resource_id(appgw_id) + appgw_group_id = resource_id( + subscription=parsed_appgw_id["subscription"], + resource_group=parsed_appgw_id["resource_group"], + ) + if not add_role_assignment( + cmd, + "Contributor", + service_principal_msi_id, + is_service_principal, + scope=appgw_group_id, + ): + logger.warning( + "Could not create a role assignment for application gateway: %s " + "specified in %s addon. " + "Are you an Owner on this subscription?", + appgw_id, + CONST_INGRESS_APPGW_ADDON_NAME, + ) + if CONST_INGRESS_APPGW_SUBNET_ID in config: + subnet_id = config[CONST_INGRESS_APPGW_SUBNET_ID] + if not add_role_assignment( + cmd, + "Network Contributor", + service_principal_msi_id, + is_service_principal, + scope=subnet_id, + ): + logger.warning( + "Could not create a role assignment for subnet: %s " + "specified in %s addon. " + "Are you an Owner on this subscription?", + subnet_id, + CONST_INGRESS_APPGW_ADDON_NAME, + ) + if CONST_INGRESS_APPGW_SUBNET_CIDR in config: + if result.agent_pool_profiles[0].vnet_subnet_id is not None: + parsed_subnet_vnet_id = parse_resource_id( + result.agent_pool_profiles[0].vnet_subnet_id + ) + vnet_id = resource_id( + subscription=parsed_subnet_vnet_id["subscription"], + resource_group=parsed_subnet_vnet_id["resource_group"], + namespace="Microsoft.Network", + type="virtualNetworks", + name=parsed_subnet_vnet_id["name"], + ) + if not add_role_assignment( + cmd, + "Contributor", + service_principal_msi_id, + is_service_principal, + scope=vnet_id, + ): + logger.warning( + "Could not create a role assignment for virtual network: %s " + "specified in %s addon. " + "Are you an Owner on this subscription?", + vnet_id, + CONST_INGRESS_APPGW_ADDON_NAME, + ) + + +def add_virtual_node_role_assignment(cmd, result, vnet_subnet_id): + # Remove trailing "/subnets/" to get the vnet id + vnet_id = vnet_subnet_id.rpartition("/")[0] + vnet_id = vnet_id.rpartition("/")[0] + + service_principal_msi_id = None + is_service_principal = False + os_type = "Linux" + addon_name = CONST_VIRTUAL_NODE_ADDON_NAME + os_type + # Check if service principal exists, if it does, assign permissions to service principal + # Else, provide permissions to MSI + if ( + hasattr(result, "service_principal_profile") and + hasattr(result.service_principal_profile, "client_id") and + result.service_principal_profile.client_id.lower() != "msi" + ): + logger.info("valid service principal exists, using it") + service_principal_msi_id = result.service_principal_profile.client_id + is_service_principal = True + elif ( + (hasattr(result, "addon_profiles")) and + (addon_name in result.addon_profiles) and + (hasattr(result.addon_profiles[addon_name], "identity")) and + (hasattr(result.addon_profiles[addon_name].identity, "object_id")) + ): + logger.info("virtual node MSI exists, using it") + service_principal_msi_id = result.addon_profiles[ + addon_name + ].identity.object_id + is_service_principal = False + + if service_principal_msi_id is not None: + if not add_role_assignment( + cmd, + "Contributor", + service_principal_msi_id, + is_service_principal, + scope=vnet_id, + ): + logger.warning( + "Could not create a role assignment for virtual node addon. " + "Are you an Owner on this subscription?" + ) + else: + logger.warning( + "Could not find service principal or user assigned MSI for role" + "assignment" + ) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 278ef39c7f6..1a853484c45 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -101,9 +101,9 @@ def load_arguments(self, _): stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_update_behavior_type = CLIArgumentType(options_list=['--update-behavior'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') stacks_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], help='The parameter file path for template.') - stacks_stack_type = CLIArgumentType(options_list=['--stack', '-h'], help='The deployment stack resource id.') + stacks_stack_type = CLIArgumentType(options_list=['--stack'], help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(options_list=['--stack-name'], help='The deployment stack name') - stacks_snapshot_type = CLIArgumentType(options_list=['--snapshot', '-h'], help='The deployment stack snapshot resource id.') + stacks_snapshot_type = CLIArgumentType(options_list=['--snapshot'], help='The deployment stack snapshot resource id.') stacks_snapshot_name_type = CLIArgumentType(options_list=['--snapshot-name'], help='The deployment stack snapshot name.') diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 9b5fd7c6a25..e22b26b8ece 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -60,10 +60,15 @@ def transform_deployments_list(result): def transform_stacks(result): r = result + try: + managed_resources_id = r['managedResources'][0]['id'] + except: + managed_resources_id = ' ' + return OrderedDict([('Name', r['name']), ('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), - ('Managed Resources Id', r['managedResources'][0]['id'])]) + ('Managed Resources Id', managed_resources_id)]) def transform_stacks_list(result): transformed = [] From 52c8bb4369d3576e03fd86a622b1ea4d236068a1 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 29 Nov 2021 17:31:47 -0500 Subject: [PATCH 043/139] Changed command names from stacks to stack | Test Suite Passed | Verified Manually --- .../cli/command_modules/resource/_help.py | 90 +++++------ .../cli/command_modules/resource/_params.py | 26 +-- .../cli/command_modules/resource/commands.py | 8 +- .../resource/tests/latest/test_resource.py | 150 +++++++++--------- 4 files changed, 137 insertions(+), 137 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 8cbbec1f065..eac2d17dd31 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2556,151 +2556,151 @@ short-summary: List out all available versions of Bicep CLI. """ -helps['stacks'] = """ +helps['stack'] = """ type: group short-summary: Manage deployment stacks at subscription or resource group scope. """ -helps['stacks sub create'] = """ +helps['stack sub create'] = """ type: command short-summary: Create a deployment stack at subscription scope examples: - name: Create a deployment stack using template file. - text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description" + text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description" - name: Create a deployment stack with parameter file. - text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" + text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - name: Create a deployment stack with template spec - text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - name: Create a deployment stack using bicep file. - text: az stacks sub create --name "StackName" --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" + text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" """ -helps['stacks sub list'] = """ +helps['stack sub list'] = """ type: command short-summary: List all deployment stacks in subscription examples: - name: List all stacks - text: az stacks sub list + text: az stack sub list """ -helps['stacks sub show'] = """ +helps['stack sub show'] = """ type: command short-summary: Get specified deployment stack from subscription scope examples: - name: Get stack by name. - text: az stacks sub show --stack-name "StackName" + text: az stack sub show --stack-name "StackName" - name: Get stack by stack resource id. - text: az stacks sub show --stack "StackResourceID" + text: az stack sub show --stack "StackResourceID" """ -helps['stacks sub delete'] = """ +helps['stack sub delete'] = """ type: command short-summary: Delete specified deployment stack from subscription scope examples: - name: Delete stack by name. - text: az stacks sub delete --stack-name "StackName" + text: az stack sub delete --stack-name "StackName" - name: Delete stack by stack resource id. - text: az stacks sub delete --stack "StackResourceID" + text: az stack sub delete --stack "StackResourceID" """ -helps['stacks group create'] = """ +helps['stack group create'] = """ type: command short-summary: Create a deployment stack at resource group scope examples: - name: Create a deployment stack using template file. - text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description" - name: Create a deployment stack with parameter file. - text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" - name: Create a deployment stack with template spec - text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" - name: Create a deployment stack using bicep file. - text: az stacks group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" """ -helps['stacks group list'] = """ +helps['stack group list'] = """ type: command short-summary: List all deployment stacks in resource group examples: - name: List all stacks in resource group - text: az stacks group list --resource-group "ResourceGroup" + text: az stack group list --resource-group "ResourceGroup" """ -helps['stacks group show'] = """ +helps['stack group show'] = """ type: command short-summary: Get specified deployment stack from resource group scope examples: - name: Get stack by name. - text: az stacks group show --stack-name "StackName" --resource-group "ResourceGroup" + text: az stack group show --stack-name "StackName" --resource-group "ResourceGroup" - name: Get stack by stack resource id. - text: az stacks group show --stack "StackResourceID" + text: az stack group show --stack "StackResourceID" """ -helps['stacks group delete'] = """ +helps['stack group delete'] = """ type: command short-summary: Delete specified deployment stack from resource group scope examples: - name: Delete stack by name. - text: az stacks group delete --stack-name "StackName" --resource-group "ResourceGroup" + text: az stack group delete --stack-name "StackName" --resource-group "ResourceGroup" - name: Delete stack by stack resource id. - text: az stacks group delete --stack "StackResourceID" + text: az stack group delete --stack "StackResourceID" """ -helps['stacks snapshot sub list'] = """ +helps['stack snapshot sub list'] = """ type: command short-summary: List all snapshots in specified deployment stack at subscription scope examples: - name: List all snapshots using stack name - text: az stacks snapshot sub list --stack-name "StackName" + text: az stack snapshot sub list --stack-name "StackName" - name: List all snapshots using stack id - text: az stacks snapshot sub list --stack "StackResourceID" + text: az stack snapshot sub list --stack "StackResourceID" """ -helps['stacks snapshot sub show'] = """ +helps['stack snapshot sub show'] = """ type: command short-summary: Get specified snapshot in deployment stack at subscription scope examples: - name: Get snapshot with stack name and snapshot name. - text: az stacks snapshot sub show --snapshot-name "SnapshotName" --stack-name "StackName" + text: az stack snapshot sub show --snapshot-name "SnapshotName" --stack-name "StackName" - name: Get snapshot by snapshot resource id. - text: az stacks snapshot sub show --snapshot "SnapshotResourceID" + text: az stack snapshot sub show --snapshot "SnapshotResourceID" """ -helps['stacks snapshot sub delete'] = """ +helps['stack snapshot sub delete'] = """ type: command short-summary: Delete specified snapshot in deployment stack at subscription scope examples: - name: Delete snapshot with stack name and snapshot name. - text: az stacks snapshot sub delete --snapshot-name "SnapshotName" --stack-name "StackName" + text: az stack snapshot sub delete --snapshot-name "SnapshotName" --stack-name "StackName" - name: Delete snapshot by snapshot resource id. - text: az stacks snapshot sub delete --snapshot "SnapshotResourceID" + text: az stack snapshot sub delete --snapshot "SnapshotResourceID" """ -helps['stacks snapshot group list'] = """ +helps['stack snapshot group list'] = """ type: command short-summary: List all snapshots in specified deployment stack at resource group scope examples: - name: List all snapshots using stack name - text: az stacks snapshot group list --stack-name "StackName" --resource-group "ResourceGroup" + text: az stack snapshot group list --stack-name "StackName" --resource-group "ResourceGroup" - name: List all snapshots using stack id - text: az stacks snapshot group list --stack "StackResourceID" + text: az stack snapshot group list --stack "StackResourceID" """ -helps['stacks snapshot group show'] = """ +helps['stack snapshot group show'] = """ type: command short-summary: Get specified snapshot in deployment stack at resource group scope examples: - name: Get snapshot with stack name and snapshot name. - text: az stacks snapshot group show --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + text: az stack snapshot group show --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - name: Get snapshot by snapshot resource id. - text: az stacks snapshot group show --snapshot "SnapshotResourceID" + text: az stack snapshot group show --snapshot "SnapshotResourceID" """ -helps['stacks snapshot group delete'] = """ +helps['stack snapshot group delete'] = """ type: command short-summary: Delete specified snapshot in deployment stack at resource group scope examples: - name: Delete snapshot with stack name and snapshot name. - text: az stacks snapshot group delete --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + text: az stack snapshot group delete --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - name: Delete snapshot by snapshot resource id. - text: az stacks snapshot group delete --snapshot "SnapshotResourceID" + text: az stack snapshot group delete --snapshot "SnapshotResourceID" """ \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 1a853484c45..a25f85d0f4e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -636,7 +636,7 @@ def load_arguments(self, _): with self.argument_context('ts list') as c: c.argument('resource_group', arg_type=resource_group_name_type) - with self.argument_context('stacks sub create') as c: + with self.argument_context('stack sub create') as c: c.argument('name', arg_type=stacks_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The resource group where the deployment stack will be created.') c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') @@ -648,15 +648,15 @@ def load_arguments(self, _): c.argument('update_behavior', arg_type=stacks_update_behavior_type) c.argument('description', arg_type=stacks_description_type) - with self.argument_context('stacks sub show') as c: + with self.argument_context('stack sub show') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) - with self.argument_context('stacks sub delete') as c: + with self.argument_context('stack sub delete') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) - with self.argument_context('stacks group create') as c: + with self.argument_context('stack group create') as c: c.argument('name', arg_type=stacks_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack will be created.') c.argument('template_file', arg_type=deployment_template_file_type) @@ -667,45 +667,45 @@ def load_arguments(self, _): c.argument('update_behavior', arg_type=stacks_update_behavior_type) c.argument('description', arg_type=stacks_description_type) - with self.argument_context('stacks group show') as c: + with self.argument_context('stack group show') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack', arg_type=stacks_stack_type) - with self.argument_context('stacks group list') as c: + with self.argument_context('stack group list') as c: c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - with self.argument_context('stacks group delete') as c: + with self.argument_context('stack group delete') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack', arg_type=stacks_stack_type) - with self.argument_context('stacks snapshot sub show') as c: + with self.argument_context('stack snapshot sub show') as c: c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) - with self.argument_context('stacks snapshot sub list') as c: + with self.argument_context('stack snapshot sub list') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) - with self.argument_context('stacks snapshot sub delete') as c: + with self.argument_context('stack snapshot sub delete') as c: c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) - with self.argument_context('stacks snapshot group show') as c: + with self.argument_context('stack snapshot group show') as c: c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('snapshot', arg_type=stacks_snapshot_type) - with self.argument_context('stacks snapshot group list') as c: + with self.argument_context('stack snapshot group list') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack', arg_type=stacks_stack_type) - with self.argument_context('stacks snapshot group delete') as c: + with self.argument_context('stack snapshot group delete') as c: c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack_name', arg_type=stacks_stack_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index e22b26b8ece..cceb652144a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -355,24 +355,24 @@ def load_command_table(self, _): g.custom_command('list', 'list_template_specs') g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) - with self.command_group('stacks sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation = True) g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - with self.command_group('stacks group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation = True) g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - with self.command_group('stacks snapshot sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + with self.command_group('stack snapshot sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription', confirmation = True) - with self.command_group('stacks snapshot group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + with self.command_group('stack snapshot group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group', confirmation = True) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 53d7bcccbeb..ec8c19218ef 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2038,22 +2038,22 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') #create deployment stack with template spec and parameter file - self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') # deploy to rg - self.cmd('stacks sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') def test_show_deployment_stack_subscription(self): @@ -2068,19 +2068,19 @@ def test_show_deployment_stack_subscription(self): }) - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stacks sub show --stack-name {name}', checks=self.check('name', '{name}')) + self.cmd('stack sub show --stack-name {name}', checks=self.check('name', '{name}')) # show stack with stack id - self.cmd('stacks sub show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) + self.cmd('stack sub show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') #test again @AllowLargeResponse(4096) @@ -2097,10 +2097,10 @@ def test_list_deployment_stack_subscription(self): }) - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks - list_deployment_stacks = self.cmd('stacks sub list').get_output_in_json() + list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() print(list_deployment_stacks) @@ -2108,7 +2108,7 @@ def test_list_deployment_stack_subscription(self): self.assertTrue(list_deployment_stacks[0]['name'], '{name}') # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') @AllowLargeResponse(4096) def test_delete_deployment_stack_subscription(self): @@ -2124,28 +2124,28 @@ def test_delete_deployment_stack_subscription(self): }) # create stack - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists - self.cmd('stacks sub show --stack-name {name}', checks=self.check('name', '{name}')) + self.cmd('stack sub show --stack-name {name}', checks=self.check('name', '{name}')) # delete stack with stack name - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') #confirm stack is deleted - self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id - created_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) # delete stack with id - self.cmd('stacks sub delete --stack {id} --yes') + self.cmd('stack sub delete --stack {id} --yes') #confirm stack is deleted - self.cmd('stacks sub list', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) @@ -2172,16 +2172,16 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): @@ -2196,19 +2196,19 @@ def test_show_deployment_stack_resource_group(self, resource_group): 'update-behavior': "detachResources", }) - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stacks group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stack group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # show stack with stack id - self.cmd('stacks group show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) + self.cmd('stack group show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_resource_group(self, resource_group): @@ -2224,16 +2224,16 @@ def test_list_deployment_stack_resource_group(self, resource_group): 'update-behavior': "detachResources", }) - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks in rg - list_deployment_stacks_rg = self.cmd('stacks group list --resource-group {resource-group}').get_output_in_json() + list_deployment_stacks_rg = self.cmd('stack group list --resource-group {resource-group}').get_output_in_json() self.assertTrue(len(list_deployment_stacks_rg) > 0) self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') # cleanup - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_resource_group(self, resource_group): @@ -2250,29 +2250,29 @@ def test_delete_deployment_stack_resource_group(self, resource_group): }) # create stack - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - self.cmd('stacks group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stack group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') #confirm stack is deleted - self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id':stack_id}) - self.cmd('stacks group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stack group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack with stack id - self.cmd('stacks group delete --stack {id} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack {id} --resource-group {resource-group} --yes') #confirm stack is deleted - self.cmd('stacks group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) def test_show_deployment_stack_snapshot_subscription(self): @@ -2287,7 +2287,7 @@ def test_show_deployment_stack_snapshot_subscription(self): }) - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] #double check this deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] @@ -2296,14 +2296,14 @@ def test_show_deployment_stack_snapshot_subscription(self): 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stacks snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id - self.cmd('stacks snapshot sub show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) # will this need snapshot delete # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') def test_list_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2317,25 +2317,25 @@ def test_list_deployment_stack_snapshot_subscription(self): 'update-behavior': "detachResources", }) - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'id': deployment_stack_id}) # list snapshots using stack name - list_with_stack_name = self.cmd('stacks snapshot sub list --stack-name {name}').get_output_in_json() + list_with_stack_name = self.cmd('stack snapshot sub list --stack-name {name}').get_output_in_json() self.assertTrue(len(list_with_stack_name) > 0) self.assertTrue(list_with_stack_name[0]['name'], '{name}') #list snapshots using stack id - list_with_stack_id = self.cmd('stacks snapshot sub list --stack {id}').get_output_in_json() + list_with_stack_id = self.cmd('stack snapshot sub list --stack {id}').get_output_in_json() self.assertTrue(len(list_with_stack_id) > 0) self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stacks sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --stack-name {name} --yes') def test_delete_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2350,44 +2350,44 @@ def test_delete_deployment_stack_snapshot_subscription(self): }) # create stack - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() #create stack again to make another snapshot - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stacks snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stacks snapshot sub delete --snapshot-name {snapshot-name} --stack-name {name} --yes') + self.cmd('stack snapshot sub delete --snapshot-name {snapshot-name} --stack-name {name} --yes') #confirm stack is deleted - self.cmd('stacks snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_deployment_stack = self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] self.kwargs.update({'snapshot-name': snapshot_name}) #create stack again - self.cmd('stacks sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_id = created_deployment_stack['snapshotId'] self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stacks snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot id - self.cmd('stacks snapshot sub delete --snapshot {snapshot-id} --yes') + self.cmd('stack snapshot sub delete --snapshot {snapshot-id} --yes') #confirm stack is deleted - self.cmd('stacks snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2401,7 +2401,7 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): 'resource-group': resource_group }) - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] #double check this deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] @@ -2410,16 +2410,16 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stacks snapshot group show --stack-name {name} --snapshot-name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot group show --stack-name {name} --snapshot-name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id - self.cmd('stacks snapshot group show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot group show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) # will this need snapshot delete # cleanup - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stack', location=location) def test_list_deployment_stack_snapshot_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-deployment-stack-snapshot-resource-group', 60) @@ -2432,25 +2432,25 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): 'resource-group': resource_group }) - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'id': deployment_stack_id}) # list snapshots using stack name - list_with_stack_name = self.cmd('stacks snapshot group list --stack-name {name} --resource-group {resource-group}').get_output_in_json() + list_with_stack_name = self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}').get_output_in_json() self.assertTrue(len(list_with_stack_name) > 0) self.assertTrue(list_with_stack_name[0]['name'], '{name}') #list snapshots using stack id - list_with_stack_id = self.cmd('stacks snapshot group list --stack {id}').get_output_in_json() + list_with_stack_id = self.cmd('stack snapshot group list --stack {id}').get_output_in_json() self.assertTrue(len(list_with_stack_id) > 0) self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stacks group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2466,34 +2466,34 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): }) # create stack - created_deployment_stack = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - created_deployment_stack_second = self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack_second = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stacks snapshot group show --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot group show --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stacks snapshot group delete --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack snapshot group delete --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') #confirm stack is deleted - self.cmd('stacks snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - self.cmd('stacks group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() snapshot_id = created_deployment_stack_second['snapshotId'] self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stacks snapshot group show --snapshot {snapshot-id}', checks=self.check('id', '{snapshot-id}')) + self.cmd('stack snapshot group show --snapshot {snapshot-id}', checks=self.check('id', '{snapshot-id}')) # delete stack with snapshot id - self.cmd('stacks snapshot group delete --snapshot {snapshot-id} --yes') + self.cmd('stack snapshot group delete --snapshot {snapshot-id} --yes') #confirm stack is deleted - self.cmd('stacks snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): From 629f59b1b338f08dcd5e0d57a2d5d89da1ee74ba Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 8 Dec 2021 13:20:45 -0500 Subject: [PATCH 044/139] Changed commands to follow the name & id format [tested] --- .../cli/command_modules/resource/_help.py | 36 +++--- .../cli/command_modules/resource/_params.py | 52 +++++---- .../cli/command_modules/resource/custom.py | 106 +++++++++--------- .../resource/tests/latest/test_resource.py | 72 ++++++------ 4 files changed, 139 insertions(+), 127 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index eac2d17dd31..0431fdabf5a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2573,6 +2573,8 @@ text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - name: Create a deployment stack using bicep file. text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" + - name: Create a deployment stack at a different subscription. + text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" """ helps['stack sub list'] = """ @@ -2588,9 +2590,9 @@ short-summary: Get specified deployment stack from subscription scope examples: - name: Get stack by name. - text: az stack sub show --stack-name "StackName" + text: az stack sub show --name "StackName" - name: Get stack by stack resource id. - text: az stack sub show --stack "StackResourceID" + text: az stack sub show --id "StackResourceID" """ helps['stack sub delete'] = """ @@ -2598,9 +2600,9 @@ short-summary: Delete specified deployment stack from subscription scope examples: - name: Delete stack by name. - text: az stack sub delete --stack-name "StackName" + text: az stack sub delete --name "StackName" - name: Delete stack by stack resource id. - text: az stack sub delete --stack "StackResourceID" + text: az stack sub delete --id "StackResourceID" """ helps['stack group create'] = """ @@ -2615,6 +2617,8 @@ text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" - name: Create a deployment stack using bicep file. text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" + - name: Create a deployment stack at a different subscription + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" """ helps['stack group list'] = """ @@ -2630,9 +2634,9 @@ short-summary: Get specified deployment stack from resource group scope examples: - name: Get stack by name. - text: az stack group show --stack-name "StackName" --resource-group "ResourceGroup" + text: az stack group show --name "StackName" --resource-group "ResourceGroup" - name: Get stack by stack resource id. - text: az stack group show --stack "StackResourceID" + text: az stack group show --id "StackResourceID" """ helps['stack group delete'] = """ @@ -2640,9 +2644,9 @@ short-summary: Delete specified deployment stack from resource group scope examples: - name: Delete stack by name. - text: az stack group delete --stack-name "StackName" --resource-group "ResourceGroup" + text: az stack group delete --name "StackName" --resource-group "ResourceGroup" - name: Delete stack by stack resource id. - text: az stack group delete --stack "StackResourceID" + text: az stack group delete --id "StackResourceID" """ helps['stack snapshot sub list'] = """ @@ -2660,9 +2664,9 @@ short-summary: Get specified snapshot in deployment stack at subscription scope examples: - name: Get snapshot with stack name and snapshot name. - text: az stack snapshot sub show --snapshot-name "SnapshotName" --stack-name "StackName" + text: az stack snapshot sub show --name "SnapshotName" --stack-name "StackName" - name: Get snapshot by snapshot resource id. - text: az stack snapshot sub show --snapshot "SnapshotResourceID" + text: az stack snapshot sub show --id "SnapshotResourceID" """ helps['stack snapshot sub delete'] = """ @@ -2670,9 +2674,9 @@ short-summary: Delete specified snapshot in deployment stack at subscription scope examples: - name: Delete snapshot with stack name and snapshot name. - text: az stack snapshot sub delete --snapshot-name "SnapshotName" --stack-name "StackName" + text: az stack snapshot sub delete --name "SnapshotName" --stack-name "StackName" - name: Delete snapshot by snapshot resource id. - text: az stack snapshot sub delete --snapshot "SnapshotResourceID" + text: az stack snapshot sub delete --id "SnapshotResourceID" """ helps['stack snapshot group list'] = """ @@ -2690,9 +2694,9 @@ short-summary: Get specified snapshot in deployment stack at resource group scope examples: - name: Get snapshot with stack name and snapshot name. - text: az stack snapshot group show --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + text: az stack snapshot group show --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - name: Get snapshot by snapshot resource id. - text: az stack snapshot group show --snapshot "SnapshotResourceID" + text: az stack snapshot group show --id "SnapshotResourceID" """ helps['stack snapshot group delete'] = """ @@ -2700,7 +2704,7 @@ short-summary: Delete specified snapshot in deployment stack at resource group scope examples: - name: Delete snapshot with stack name and snapshot name. - text: az stack snapshot group delete --snapshot-name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" + text: az stack snapshot group delete --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - name: Delete snapshot by snapshot resource id. - text: az stack snapshot group delete --snapshot "SnapshotResourceID" + text: az stack snapshot group delete --id "SnapshotResourceID" """ \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index a25f85d0f4e..412f5f124ec 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -101,10 +101,10 @@ def load_arguments(self, _): stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_update_behavior_type = CLIArgumentType(options_list=['--update-behavior'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') stacks_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], help='The parameter file path for template.') - stacks_stack_type = CLIArgumentType(options_list=['--stack'], help='The deployment stack resource id.') - stacks_stack_name_type = CLIArgumentType(options_list=['--stack-name'], help='The deployment stack name') - stacks_snapshot_type = CLIArgumentType(options_list=['--snapshot'], help='The deployment stack snapshot resource id.') - stacks_snapshot_name_type = CLIArgumentType(options_list=['--snapshot-name'], help='The deployment stack snapshot name.') + stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') + stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') + stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') + stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') @@ -637,7 +637,7 @@ def load_arguments(self, _): c.argument('resource_group', arg_type=resource_group_name_type) with self.argument_context('stack sub create') as c: - c.argument('name', arg_type=stacks_name_type) + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The resource group where the deployment stack will be created.') c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) @@ -647,17 +647,20 @@ def load_arguments(self, _): c.argument('param_uri', options_list=['--params-uri'], help='The parameter uri that holds parameter file.') c.argument('update_behavior', arg_type=stacks_update_behavior_type) c.argument('description', arg_type=stacks_description_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack sub show') as c: - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('stack', arg_type=stacks_stack_type) + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack sub delete') as c: - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('stack', arg_type=stacks_stack_type) + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack group create') as c: - c.argument('name', arg_type=stacks_name_type) + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack will be created.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) @@ -666,39 +669,44 @@ def load_arguments(self, _): c.argument('param_uri', options_list=['--params-uri'], help='The parameter uri that holds parameter file.') c.argument('update_behavior', arg_type=stacks_update_behavior_type) c.argument('description', arg_type=stacks_description_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack group show') as c: - c.argument('stack_name', arg_type=stacks_stack_name_type) + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('stack', arg_type=stacks_stack_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) + with self.argument_context('stack group list') as c: c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack group delete') as c: - c.argument('stack_name', arg_type=stacks_stack_name_type) + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('stack', arg_type=stacks_stack_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack snapshot sub show') as c: - c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) + c.argument('name', arg_type=stacks_snapshot_name_type) c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('snapshot', arg_type=stacks_snapshot_type) + c.argument('id', arg_type=stacks_snapshot_type) with self.argument_context('stack snapshot sub list') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stack snapshot sub delete') as c: - c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) + c.argument('name', arg_type=stacks_snapshot_name_type) c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('snapshot', arg_type=stacks_snapshot_type) + c.argument('id', arg_type=stacks_snapshot_type) with self.argument_context('stack snapshot group show') as c: - c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) + c.argument('name', arg_type=stacks_snapshot_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('snapshot', arg_type=stacks_snapshot_type) + c.argument('id', arg_type=stacks_snapshot_type) with self.argument_context('stack snapshot group list') as c: c.argument('stack_name', arg_type=stacks_stack_name_type) @@ -706,10 +714,10 @@ def load_arguments(self, _): c.argument('stack', arg_type=stacks_stack_type) with self.argument_context('stack snapshot group delete') as c: - c.argument('snapshot_name', arg_type=stacks_snapshot_name_type) + c.argument('name', arg_type=stacks_snapshot_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('snapshot', arg_type=stacks_snapshot_type) + c.argument('id', arg_type=stacks_snapshot_type) with self.argument_context('bicep build') as c: c.argument('file', arg_type=CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 9e2e719497e..96a467d91aa 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2143,12 +2143,12 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) -def show_deployment_stack_at_subscription(cmd, stack_name=None, stack=None): - if stack_name or stack: +def show_deployment_stack_at_subscription(cmd, name=None, id=None): + if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if stack_name: - return rcf.deployment_stacks.get_at_subscription(stack_name) - return rcf.deployment_stacks.get_at_subscription(stack.split('/')[-1]) + if name: + return rcf.deployment_stacks.get_at_subscription(name) + return rcf.deployment_stacks.get_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") @@ -2159,18 +2159,18 @@ def list_deployment_stack_at_subscription(cmd): return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, stack_name=None, stack=None): - if stack_name or stack: +def delete_deployment_stack_at_subscription(cmd, name=None, id=None): + if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_name = None try: - if stack_name: - delete_name = stack_name - rcf.deployment_stacks.get_at_subscription(stack_name) + if name: + delete_name = name + rcf.deployment_stacks.get_at_subscription(name) else: - stack_name = stack.split('/')[-1] - delete_name = stack_name - rcf.deployment_stacks.get_at_subscription(stack_name) + name = id.split('/')[-1] + delete_name = name + rcf.deployment_stacks.get_at_subscription(name) except: raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current subscription scope.") return rcf.deployment_stacks.begin_delete_at_subscription(delete_name) @@ -2236,12 +2236,12 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) -def show_deployment_stack_at_resource_group(cmd, stack_name=None, resource_group=None, stack=None): +def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if stack_name and resource_group: - return rcf.deployment_stacks.get_at_resource_group(resource_group, stack_name) - if stack: - stack_arr = stack.split('/') + if name and resource_group: + return rcf.deployment_stacks.get_at_resource_group(resource_group, name) + if id: + stack_arr = id.split('/') return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") @@ -2253,43 +2253,43 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, stack_name=None, resource_group = None, stack=None): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if stack_name and resource_group: + if name and resource_group: try: - rcf.deployment_stacks.get_at_resource_group(resource_group,stack_name) + rcf.deployment_stacks.get_at_resource_group(resource_group,name) except: - raise ResourceNotFoundError("DeploymentStack " + stack_name + " not found in the current resource group scope.") - return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, stack_name) - if stack: - stack_arr = stack.split('/') - stack_name = stack_arr[-1] + raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) + if id: + stack_arr = id.split('/') + name = stack_arr[-1] stack_rg = stack_arr[-5] try: - rcf.deployment_stacks.get_at_resource_group(stack_rg, stack_name) + rcf.deployment_stacks.get_at_resource_group(stack_rg, name) except: - raise ResourceNotFoundError("DeploymentStack " + stack_name + " not found in the current resource group scope.") - return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, stack_name) + raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, name) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def show_deployment_stack_snapshot_at_subscription(cmd, snapshot_name=None, stack_name=None, snapshot=None): +def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if snapshot: - snapshot_arr = snapshot.split('/') + if id: + snapshot_arr = id.split('/') return rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) - if snapshot_name and stack_name: - return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, snapshot_name) + if name and stack_name: + return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") -def show_deployment_stack_snapshot_at_resource_group(cmd, snapshot_name=None, stack_name=None, resource_group=None, snapshot=None): +def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if snapshot: - snapshot_arr = snapshot.split('/') + if id: + snapshot_arr = id.split('/') return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - if snapshot_name and stack_name and resource_group: - return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, snapshot_name) + if name and stack_name and resource_group: + return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") @@ -2312,39 +2312,39 @@ def list_deployment_stack_snapshot_at_resource_group(cmd, stack_name=None, resou raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def delete_deployment_stack_snapshot_at_subscription(cmd, snapshot_name=None, stack_name=None, snapshot=None): +def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if snapshot: - snapshot_arr = snapshot.split('/') + if id: + snapshot_arr = id.split('/') try: rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) except: raise ResourceNotFoundError("DeploymentStack Snapshot " + snapshot_arr[-1] + " not found in the subscription scope.") return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) - if snapshot_name and stack_name: + if name and stack_name: try: - rcf.deployment_stack_snapshots.get_at_subscription(stack_name, snapshot_name) + rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) except: - raise ResourceNotFoundError("DeploymentStack Snapshot " + snapshot_name + " not found in the subscription scope.") - return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, snapshot_name) + raise ResourceNotFoundError("DeploymentStack Snapshot " + name + " not found in the subscription scope.") + return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, name) raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") -def delete_deployment_stack_snapshot_at_resource_group(cmd, snapshot_name=None, stack_name=None, resource_group=None, snapshot=None): +def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if snapshot: - snapshot_arr = snapshot.split('/') + if id: + snapshot_arr = id.split('/') try: rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) except: raise ResourceNotFoundError("Snapshot " + snapshot_arr[-1] + " not found in the stack.") return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - if snapshot_name and stack_name and resource_group: + if name and stack_name and resource_group: try: - rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, snapshot_name) + rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) except: - raise ResourceNotFoundError("Snapshot " + snapshot_name + " not found in the stack") - return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, snapshot_name) + raise ResourceNotFoundError("Snapshot " + name + " not found in the stack") + return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) raise InvalidArgumentValueError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") def list_deployment_operations_at_subscription_scope(cmd, deployment_name): diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index ec8c19218ef..a558e8c74ea 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2041,19 +2041,19 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') #create deployment stack with template spec and parameter file self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') # deploy to rg self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') def test_show_deployment_stack_subscription(self): @@ -2074,13 +2074,13 @@ def test_show_deployment_stack_subscription(self): self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stack sub show --stack-name {name}', checks=self.check('name', '{name}')) + self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) # show stack with stack id - self.cmd('stack sub show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) + self.cmd('stack sub show --id {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') #test again @AllowLargeResponse(4096) @@ -2108,7 +2108,7 @@ def test_list_deployment_stack_subscription(self): self.assertTrue(list_deployment_stacks[0]['name'], '{name}') # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') @AllowLargeResponse(4096) def test_delete_deployment_stack_subscription(self): @@ -2127,10 +2127,10 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists - self.cmd('stack sub show --stack-name {name}', checks=self.check('name', '{name}')) + self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) # delete stack with stack name - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') #confirm stack is deleted self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) @@ -2142,7 +2142,7 @@ def test_delete_deployment_stack_subscription(self): self.kwargs.update({'id': stack_id}) # delete stack with id - self.cmd('stack sub delete --stack {id} --yes') + self.cmd('stack sub delete --id {id} --yes') #confirm stack is deleted self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) @@ -2175,13 +2175,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): @@ -2202,13 +2202,13 @@ def test_show_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stack group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # show stack with stack id - self.cmd('stack group show --stack {deployment-stack-id}', checks=self.check('name', '{name}')) + self.cmd('stack group show --id {deployment-stack-id}', checks=self.check('name', '{name}')) # cleanup - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_resource_group(self, resource_group): @@ -2233,7 +2233,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') # cleanup - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_resource_group(self, resource_group): @@ -2252,10 +2252,10 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # create stack self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - self.cmd('stack group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2266,10 +2266,10 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'id':stack_id}) - self.cmd('stack group show --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) # delete stack with stack id - self.cmd('stack group delete --stack {id} --resource-group {resource-group} --yes') + self.cmd('stack group delete --id {id} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2296,14 +2296,14 @@ def test_show_deployment_stack_snapshot_subscription(self): 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stack snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id - self.cmd('stack snapshot sub show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --id {snapshot-id}', checks=self.check('name', '{snapshot-name}')) # will this need snapshot delete # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') def test_list_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2335,7 +2335,7 @@ def test_list_deployment_stack_snapshot_subscription(self): self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stack sub delete --stack-name {name} --yes') + self.cmd('stack sub delete --name {name} --yes') def test_delete_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2359,10 +2359,10 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stack snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stack snapshot sub delete --snapshot-name {snapshot-name} --stack-name {name} --yes') + self.cmd('stack snapshot sub delete --name {snapshot-name} --stack-name {name} --yes') #confirm stack is deleted self.cmd('stack snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2381,10 +2381,10 @@ def test_delete_deployment_stack_snapshot_subscription(self): self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stack snapshot sub show --snapshot-name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot id - self.cmd('stack snapshot sub delete --snapshot {snapshot-id} --yes') + self.cmd('stack snapshot sub delete --id {snapshot-id} --yes') #confirm stack is deleted self.cmd('stack snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2410,14 +2410,14 @@ def test_show_deployment_stack_snapshot_resource_group(self, resource_group): 'snapshot-name': deployment_stack_snapshot_name}) # show snapshot with stack name and snapshot name - self.cmd('stack snapshot group show --stack-name {name} --snapshot-name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot group show --stack-name {name} --name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # show stack with stack id - self.cmd('stack snapshot group show --snapshot {snapshot-id}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot group show --id {snapshot-id}', checks=self.check('name', '{snapshot-name}')) # will this need snapshot delete # cleanup - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stack', location=location) def test_list_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2450,7 +2450,7 @@ def test_list_deployment_stack_snapshot_resource_group(self, resource_group): self.assertTrue(list_with_stack_id[0]['name'], '{name}') # cleanup - self.cmd('stack group delete --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): @@ -2473,10 +2473,10 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.kwargs.update({'snapshot-name': snapshot_name}) - self.cmd('stack snapshot group show --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) + self.cmd('stack snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) # delete stack with snapshot name and stack name - self.cmd('stack snapshot group delete --snapshot-name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') + self.cmd('stack snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') #confirm stack is deleted self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) @@ -2487,10 +2487,10 @@ def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): self.kwargs.update({'snapshot-id': snapshot_id}) - self.cmd('stack snapshot group show --snapshot {snapshot-id}', checks=self.check('id', '{snapshot-id}')) + self.cmd('stack snapshot group show --id {snapshot-id}', checks=self.check('id', '{snapshot-id}')) # delete stack with snapshot id - self.cmd('stack snapshot group delete --snapshot {snapshot-id} --yes') + self.cmd('stack snapshot group delete --id {snapshot-id} --yes') #confirm stack is deleted self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) From c2040ffe76eb6a20f576ba894e0cd9ffea2ac685 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 8 Dec 2021 17:38:37 -0500 Subject: [PATCH 045/139] Added Bicep sub functionality [tested] --- .../azure/cli/command_modules/resource/custom.py | 9 ++++++++- .../resource/tests/latest/test_resource.py | 14 ++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 96a467d91aa..9aa2f9727e9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2132,7 +2132,14 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link else: - deployment_stack_model.template = json.load(open(t_file)) + if is_bicep_file(t_file): + template_content = run_bicep_command(["build", "--stdout", t_file]) + input_content = _remove_comments_from_json(template_content, file_path=t_file) + input_template = json.loads(json.dumps(input_content)) + else: + input_template = json.load(open(t_file)) + + deployment_stack_model.template = input_template if p_uri: parameters_link = rcf.deployment_stacks.models.DeploymentStacksParametersLink(uri = param_uri) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index a558e8c74ea..d84532431a1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2025,6 +2025,7 @@ def test_create_deployment_stack_subscription(self, resource_group): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), 'update-behavior': "detachResources", 'template-spec-name': template_spec_name, 'template-spec-version': "v1", @@ -2055,6 +2056,12 @@ def test_create_deployment_stack_subscription(self, resource_group): # cleanup self.cmd('stack sub delete --name {name} --yes') + # create deployment stack with bicep file and rg scope + self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --parameters "{parameter-file}" -g {resource-group}', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack sub delete --name {name} --yes') + def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2160,6 +2167,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), 'update-behavior': "detachResources", 'template-spec-name': template_spec_name, 'template-spec-version': "v1", @@ -2182,6 +2190,12 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + + # create deployment stack with bicep file + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): From 105184eb80c715d2e4575170fa8881ada289f463 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 15 Dec 2021 13:10:47 -0500 Subject: [PATCH 046/139] Added bicep test file --- .../tests/latest/bicep_simple_template.bicep | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/bicep_simple_template.bicep diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/bicep_simple_template.bicep b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/bicep_simple_template.bicep new file mode 100644 index 00000000000..9625ecb7c72 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/bicep_simple_template.bicep @@ -0,0 +1,12 @@ +param location string = 'centralus' + +@minLength(3) +@maxLength(24) +param storageAccountName string = 'uniquestorage001' // must be globally unique + +resource stg 'Providers.Test/statefulResources@2014-04-01' = { + name: storageAccountName + location: location +} + +output storageId string = stg.id // output resourceId of storage account From 073abbda9fad0afa296f2dc6e0727a1d38cf4bbc Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 15 Dec 2021 13:26:09 -0500 Subject: [PATCH 047/139] Adding Recordings --- ...reate_deployment_stack_resource_group.yaml | 1391 +++++++++ ..._create_deployment_stack_subscription.yaml | 1569 ++++++++++ ...elete_deployment_stack_resource_group.yaml | 902 ++++++ ...loyment_stack_snapshot_resource_group.yaml | 1238 ++++++++ ...eployment_stack_snapshot_subscription.yaml | 1541 ++++++++++ ..._delete_deployment_stack_subscription.yaml | 2549 +++++++++++++++++ ..._list_deployment_stack_resource_group.yaml | 411 +++ ...loyment_stack_snapshot_resource_group.yaml | 481 ++++ ...eployment_stack_snapshot_subscription.yaml | 487 ++++ ...st_list_deployment_stack_subscription.yaml | 1242 ++++++++ ..._show_deployment_stack_resource_group.yaml | 471 +++ ...loyment_stack_snapshot_resource_group.yaml | 475 +++ ...eployment_stack_snapshot_subscription.yaml | 481 ++++ ...st_show_deployment_stack_subscription.yaml | 479 ++++ 14 files changed, 13717 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml new file mode 100644 index 00000000000..4c76d9d116e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -0,0 +1,1391 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' + under resource group ''cli_test_deployment_stacks000001'' was not found. For + more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' + under resource group ''cli_test_deployment_stacks000001'' was not found. For + more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '341' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:58.1335606Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:58.1335606Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"linkedTemplates": [], + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + Content-Length: + - '601' + Content-Type: + - application/json + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:00.604681Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:00.604681Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": + \"v1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1551' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:02.5112989Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:02.5112989Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/08644188-0675-42e1-a008-6a8300295ae4?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/08644188-0675-42e1-a008-6a8300295ae4?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/08644188-0675-42e1-a008-6a8300295ae4\",\r\n + \ \"name\": \"08644188-0675-42e1-a008-6a8300295ae4\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-02-31150\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-18-06-02-31150\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:02.5112989Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:02.5112989Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-02-31150\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-18-06-02-31150\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:02.5112989Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:02.5112989Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '340' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:22.9286527Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:22.9286527Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d7aba9c-41f5-42f2-84a8-4bc04b49e89a?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1126' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d7aba9c-41f5-42f2-84a8-4bc04b49e89a?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d7aba9c-41f5-42f2-84a8-4bc04b49e89a\",\r\n + \ \"name\": \"6d7aba9c-41f5-42f2-84a8-4bc04b49e89a\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-22-3d281\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-18-06-22-3d281\",\r\n + \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:22.9286527Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:22.9286527Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1706' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-22-3d281\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-18-06-22-3d281\",\r\n + \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:22.9286527Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:22.9286527Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1706' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://aka.ms/BicepLatestRelease + response: + body: + string: '' + headers: + cache-control: + - max-age=0, no-cache, no-store + connection: + - keep-alive + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:44 GMT + expires: + - Wed, 15 Dec 2021 18:06:44 GMT + location: + - https://api.github.com/repos/Azure/bicep/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.github.com/repos/Azure/bicep/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/51445655","assets_url":"https://api.github.com/repos/Azure/bicep/releases/51445655/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/51445655/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1008","id":51445655,"author":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DEP-X","tag_name":"v0.4.1008","target_commitish":"main","name":"v0.4.1008","draft":false,"prerelease":false,"created_at":"2021-10-15T16:45:35Z","published_at":"2021-10-15T20:17:50Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097065","id":47097065,"node_id":"RA_kwDOD7S9ks4CzqTp","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20998825,"download_count":9,"created_at":"2021-10-15T20:10:07Z","updated_at":"2021-10-15T20:10:08Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.CommandLine.linux-x64.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097073","id":47097073,"node_id":"RA_kwDOD7S9ks4CzqTx","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21231132,"download_count":5,"created_at":"2021-10-15T20:10:18Z","updated_at":"2021-10-15T20:10:20Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.CommandLine.osx-x64.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097053","id":47097053,"node_id":"RA_kwDOD7S9ks4CzqTd","name":"Azure.Bicep.CommandLine.win-x64.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21234954,"download_count":80,"created_at":"2021-10-15T20:09:42Z","updated_at":"2021-10-15T20:09:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.CommandLine.win-x64.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097008","id":47097008,"node_id":"RA_kwDOD7S9ks4CzqSw","name":"Azure.Bicep.MSBuild.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":38151,"download_count":5,"created_at":"2021-10-15T20:09:10Z","updated_at":"2021-10-15T20:09:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.MSBuild.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097023","id":47097023,"node_id":"RA_kwDOD7S9ks4CzqS_","name":"Azure.Bicep.MSBuild.0.4.1008.snupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6647,"download_count":3,"created_at":"2021-10-15T20:09:12Z","updated_at":"2021-10-15T20:09:12Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.MSBuild.0.4.1008.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097025","id":47097025,"node_id":"RA_kwDOD7S9ks4CzqTB","name":"bicep-langserver.zip","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":10621973,"download_count":67,"created_at":"2021-10-15T20:09:16Z","updated_at":"2021-10-15T20:09:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096921","id":47096921,"node_id":"RA_kwDOD7S9ks4CzqRZ","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":46899162,"download_count":12011,"created_at":"2021-10-15T20:07:52Z","updated_at":"2021-10-15T20:07:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096863","id":47096863,"node_id":"RA_kwDOD7S9ks4CzqQf","name":"bicep-linux-x64","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":47082977,"download_count":144947,"created_at":"2021-10-15T20:07:15Z","updated_at":"2021-10-15T20:07:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096967","id":47096967,"node_id":"RA_kwDOD7S9ks4CzqSH","name":"bicep-osx-x64","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":47862047,"download_count":4157,"created_at":"2021-10-15T20:08:22Z","updated_at":"2021-10-15T20:08:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096996","id":47096996,"node_id":"RA_kwDOD7S9ks4CzqSk","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":18126312,"download_count":2973,"created_at":"2021-10-15T20:09:01Z","updated_at":"2021-10-15T20:09:02Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097006","id":47097006,"node_id":"RA_kwDOD7S9ks4CzqSu","name":"bicep-win-x64.exe","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":45876272,"download_count":62724,"created_at":"2021-10-15T20:09:06Z","updated_at":"2021-10-15T20:09:08Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097041","id":47097041,"node_id":"RA_kwDOD7S9ks4CzqTR","name":"vscode-bicep.vsix","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":26071148,"download_count":186,"created_at":"2021-10-15T20:09:30Z","updated_at":"2021-10-15T20:09:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1008","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1008","body":"\r\n**UPDATE** + (10/15/21 2:31PM PT):\r\nWe forgot to account for Az CLI and Azure PowerShell + updates that need to be made in order to expose the new `publish` and `restore` + commands. As a workaround, you will need to run these commands directly with + the bicep CLI. If you are installing the bicep CLI automatically via Az CLI, + then the binary is most likely located at either `%USERPROFILE%\\.azure\\bin` + on windows or `$HOME/.azure/bin` on macOS or Linux. You can then add this + directory to your PATH and run `bicep publish file.bicep --target ''br:foo.azurecr.io/myModule:v1.0''`. + Apologies for this oversight.\r\n\r\n## Highlights\r\n\r\nBicep team:\r\n* + Private Module registry support\r\n - Documentation:\r\n * [Create a private + registry](https://docs.microsoft.com/azure/azure-resource-manager/bicep/private-module-registry)\r\n * + [Reference modules in a registry](https://docs.microsoft.com/azure/azure-resource-manager/bicep/modules#file-in-registry)\r\n * + [`publish`](https://docs.microsoft.com/azure/azure-resource-manager/bicep/bicep-cli#publish) + and [`restore`](https://docs.microsoft.com/azure/azure-resource-manager/bicep/bicep-cli#restore) + commands\r\n * [Adding registry aliases via bicepconfig.json](https://docs.microsoft.com/azure/azure-resource-manager/bicep/bicep-config#aliases-for-module-registry)\r\n - + **Note:** This does **not** include support for a planned *public* registry + which will be released with Bicep v0.5 (ETA early November)\r\n* Implement + TemplateSpec module references (#4269)\r\n - Template specs can be used as + a source for modules (documentation available soon)\r\n - Overview of template + spec references from our recent [community call](https://youtu.be/TrAxi-cj1JM?t=791)\r\n - + Example: `module tsDeploy ts:<>/<>/<> + = {...}` \r\n - Example with alias: `module tsDeploy ts/myAlias:<>:<> + = {...}`\r\n* Add `items()` function to Bicep in order to convert a dictionary + to an array (#4456)\r\n - Documentation available soon\r\n - [Community + call walkthrough](https://youtu.be/TrAxi-cj1JM?t=1235)\r\n* Add support for + `tenant()` & `managementGroup()` functions for retrieving scope metadata (#4478)\r\n - + Documentation available soon\r\n - [Community call walkthrough](https://youtu.be/TrAxi-cj1JM?t=1176)\r\n* + Expanded hover support\r\n - Can now add `@description` decorators to variables, + resources, modules, outputs which will be displayed on hover (#4091)\r\n* + Add lightbulb option to disable linter rule (#4493)\r\n* Add \"build\" command + to tab context menu (#4155)\r\n* rule: adminUsername-should-not-be-literal + (#4702)\r\n* Support symbolic management group references to be used as scopes + (#4476)\r\n - If you have a symbolic reference to a management group, you + can now pass that as a scope for an management group scoped module\r\n\r\n## + Bug fixes and features\r\n\r\nBicep team:\r\n* removed warning about allowed + scopes for scope functions (#4784)\r\n* Fix for exception compiling `listKeys()` + on resource array access (#4282)\r\n* Add errors for 2 unsupported decompiler + features (#4375)\r\n* Fix integer-key property access expression generation + (#4385)\r\n* Add decompilation support for null(), true() & false() (#4273)\r\n* + Allow use of `existing` parent resource scope if it is a valid deployment + scope (#4394)\r\n* Fix cycle detection with resource access syntax (#4684)\r\n* + Display function overload description on hover (#4669)\r\n* Avoid optimizing + empty string interpolation expression (#4683)\r\n* Fix unhandled exception + and stack overflow for resource parent property assignments (#4384)\r\n* Change + array merging behavior to \"replace\" for Bicep configs (#4767)\r\n* module + path completions do not show up url encoded (#4708)\r\n* Ensure snippets and + other completions use \\n (#4180)\r\n* Watch for creation/deletion/modification + of local bicepconfig.json file (#4038)\r\n* Fix exception thrown in CLI when + bicepconfig.json is invalid (#4348)\r\n\r\n@CoachAlexis\r\n* Add icons (#4344)\r\n\r\n@JimPaine\r\n* + Simplification of expressions on decompile (#4482)\r\n\r\n@miqm\r\n* In-lining + Resources and Modules when assigned to a variable (#4069)\r\n* Fix using existing + resource of a discriminated type based on a property other than name (#4407)\r\n* + Fixed generating scope for looped modules and nested resources (#4639)\r\n\r\n@pakrym\r\n* + Sort required properties first in completion (#4562)\r\n* Add = to completion + (#4599)\r\n* Add a codefix for BCP035 (#4570)\r\n\r\n## Docs, examples, snippet + updates\r\n\r\nBicep team: \r\n\r\n@DamianFlynn\r\n* Bump Homebrew to the + current release (#4560)\r\n\r\n@egullbrandsson\r\n* Snippet res-rg - removed + single quotes (#4275)\r\n\r\n@mgreenegit\r\n* guest config snippets (#4243)\r\n* + better version example; only reinforce identity for extension (#4309)\r\n* + Readme - Build badge should link to build results (#4431)\r\n\r\n@rajyraman\r\n* + Logic App Workflow and Integration Account Snippet (#3919)\r\n\r\n@StefanIvemo\r\n* + Updated readme with links to learn path and docs.microsoft.com (#4036)\r\n* + [Snippet] Added ExpressRoute Gateway snippet (#3920)\r\n* [Snippet] Added + Route Server snippet (#3976)\r\n* Fixed bug in `res-container-registry` snippet + (#4597)\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/51445655/reactions","total_count":11,"+1":0,"-1":0,"laugh":0,"hooray":6,"confused":0,"heart":0,"rocket":5,"eyes":0},"mentions_count":9}' + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + access-control-expose-headers: + - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, + X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, + Sunset + cache-control: + - public, max-age=60, s-maxage=60 + content-length: + - '24810' + content-security-policy: + - default-src 'none' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:41 GMT + etag: + - '"20d531f56ac36d87fee9fe147132129edb51c645be12bbf3958525e7b3a14cf0"' + last-modified: + - Fri, 15 Oct 2021 21:38:40 GMT + referrer-policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + server: + - GitHub.com + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + vary: + - Accept, Accept-Encoding, Accept, X-Requested-With + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-github-media-type: + - github.v3; format=json + x-github-request-id: + - EE12:5938:12168C4:2D2A3F8:61BA2EB4 + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '59' + x-ratelimit-reset: + - '1639595204' + x-ratelimit-resource: + - core + x-ratelimit-used: + - '1' + x-xss-protection: + - '0' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.4.1008.15138", "templateHash": "18335756685998555005"}}, "parameters": {"location": + {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": + "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": + 3}}, "functions": [], "resources": [{"type": "Providers.Test/statefulResources", + "apiVersion": "2014-04-01", "name": "[parameters(''storageAccountName'')]", + "location": "[parameters(''location'')]"}], "outputs": {"storageId": {"type": + "string", "value": "[resourceId(''Providers.Test/statefulResources'', parameters(''storageAccountName''))]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '827' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": + {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n + \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n + \ \"parameters\": {\r\n \"location\": {\r\n \"type\": + \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n + \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": + 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": + [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n + \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n + \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n + \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n + \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n + \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:47.160565Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:47.160565Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5c2d88a-c199-4ba7-bc2b-81e44a508920?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1954' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5c2d88a-c199-4ba7-bc2b-81e44a508920?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5c2d88a-c199-4ba7-bc2b-81e44a508920\",\r\n + \ \"name\": \"e5c2d88a-c199-4ba7-bc2b-81e44a508920\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-47-3932a\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-18-06-47-3932a\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": + {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n + \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n + \ \"parameters\": {\r\n \"location\": {\r\n \"type\": + \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n + \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": + 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": + [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n + \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n + \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n + \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n + \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n + \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:47.160565Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:47.160565Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2778' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-47-3932a\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-18-06-47-3932a\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": + {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n + \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n + \ \"parameters\": {\r\n \"location\": {\r\n \"type\": + \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n + \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": + 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": + [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n + \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n + \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n + \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n + \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n + \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:47.160565Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:47.160565Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2778' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml new file mode 100644 index 00000000000..ef37f016064 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -0,0 +1,1569 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' + under resource group ''cli_test_deployment_stacks000001'' was not found. For + more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' + under resource group ''cli_test_deployment_stacks000001'' was not found. For + more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '341' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:57.4724604Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:57.4724604Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"linkedTemplates": [], + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + Content-Length: + - '601' + Content-Type: + - application/json + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:59.4274831Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:59.4274831Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": + \"v1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1553' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --update-behavior --location --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:01.4553817Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:01.4553817Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c452953e-af2f-4571-b32b-d454b3285935?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c452953e-af2f-4571-b32b-d454b3285935?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c452953e-af2f-4571-b32b-d454b3285935\",\r\n + \ \"name\": \"c452953e-af2f-4571-b32b-d454b3285935\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-06-02-c75a9\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-06-02-c75a9\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:01.4553817Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:01.4553817Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-06-02-c75a9\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-06-02-c75a9\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:01.4553817Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:01.4553817Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '437' + Content-Type: + - application/json + ParameterSetName: + - --name --update-behavior --location --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:22.8939688Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:22.8939688Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f92a7e3a-2d9d-4a99-b8b5-1d84a78643df?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1140' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f92a7e3a-2d9d-4a99-b8b5-1d84a78643df?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f92a7e3a-2d9d-4a99-b8b5-1d84a78643df\",\r\n + \ \"name\": \"f92a7e3a-2d9d-4a99-b8b5-1d84a78643df\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-spec --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-06-23-00dcf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-06-23-00dcf\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:22.8939688Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:22.8939688Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1538' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-06-23-00dcf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-06-23-00dcf\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:22.8939688Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:22.8939688Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1538' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-file --resource-group --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '764' + Content-Type: + - application/json + ParameterSetName: + - --name --update-behavior --location --template-file --resource-group --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:44.6159632Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:44.6159632Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2dea2b2-b137-4f72-b35d-854cc9b1b0a5?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1769' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-file --resource-group --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2dea2b2-b137-4f72-b35d-854cc9b1b0a5?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2dea2b2-b137-4f72-b35d-854cc9b1b0a5\",\r\n + \ \"name\": \"c2dea2b2-b137-4f72-b35d-854cc9b1b0a5\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-file --resource-group --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-06-44-e72d2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-06-44-e72d2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:44.6159632Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:44.6159632Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2258' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-06-44-e72d2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-06-44-e72d2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:44.6159632Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:44.6159632Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2258' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.4.1008.15138", "templateHash": "18335756685998555005"}}, "parameters": {"location": + {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": + "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": + 3}}, "functions": [], "resources": [{"type": "Providers.Test/statefulResources", + "apiVersion": "2014-04-01", "name": "[parameters(''storageAccountName'')]", + "location": "[parameters(''location'')]"}], "outputs": {"storageId": {"type": + "string", "value": "[resourceId(''Providers.Test/statefulResources'', parameters(''storageAccountName''))]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1015' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": + {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n + \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n + \ \"parameters\": {\r\n \"location\": {\r\n \"type\": + \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n + \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": + 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": + [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n + \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n + \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n + \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n + \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n + \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:07.4055796Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:07.4055796Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa2c58d0-8927-4516-b3d7-6a6d3a78dd6b?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '2061' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa2c58d0-8927-4516-b3d7-6a6d3a78dd6b?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa2c58d0-8927-4516-b3d7-6a6d3a78dd6b\",\r\n + \ \"name\": \"aa2c58d0-8927-4516-b3d7-6a6d3a78dd6b\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-07-08-e59b1\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-07-08-e59b1\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": + {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n + \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n + \ \"parameters\": {\r\n \"location\": {\r\n \"type\": + \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n + \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": + 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": + [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n + \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n + \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n + \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n + \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n + \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:07.4055796Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:07.4055796Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2794' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-18-07-08-e59b1\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-18-07-08-e59b1\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": + {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n + \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n + \ \"parameters\": {\r\n \"location\": {\r\n \"type\": + \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n + \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": + 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": + [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n + \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n + \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n + \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n + \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n + \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:07.4055796Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:07.4055796Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2794' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml new file mode 100644 index 00000000000..a5630718fc1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -0,0 +1,902 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:55.5844812Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:55.5844812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9c696415-0b53-4459-8b9a-883e28666962?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9c696415-0b53-4459-8b9a-883e28666962?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9c696415-0b53-4459-8b9a-883e28666962\",\r\n + \ \"name\": \"9c696415-0b53-4459-8b9a-883e28666962\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-18-05-55-d4367\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-18-05-55-d4367\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:55.5844812Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:55.5844812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-18-05-55-d4367\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-18-05-55-d4367\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:55.5844812Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:55.5844812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-18-05-55-d4367\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-18-05-55-d4367\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:55.5844812Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:55.5844812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:17.2092542Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:17.2092542Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/224133e5-02c3-4321-a6b5-0441eef3eff8?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/224133e5-02c3-4321-a6b5-0441eef3eff8?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/224133e5-02c3-4321-a6b5-0441eef3eff8\",\r\n + \ \"name\": \"224133e5-02c3-4321-a6b5-0441eef3eff8\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-17-6a769\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-18-06-17-6a769\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:17.2092542Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:17.2092542Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-17-6a769\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-18-06-17-6a769\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:17.2092542Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:17.2092542Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --id --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-17-6a769\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-18-06-17-6a769\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:17.2092542Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:17.2092542Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml new file mode 100644 index 00000000000..5c25ca77e58 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml @@ -0,0 +1,1238 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:56.0349841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86fde463-0c2c-4ac6-b203-cfd41d80e018?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:05:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86fde463-0c2c-4ac6-b203-cfd41d80e018?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86fde463-0c2c-4ac6-b203-cfd41d80e018\",\r\n + \ \"name\": \"86fde463-0c2c-4ac6-b203-cfd41d80e018\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-05-56-0495c\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:56.0349841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-05-56-0495c\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:56.0349841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:14.8552979Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7356d7b1-c29f-4736-a5bc-a5656a8f3451?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7356d7b1-c29f-4736-a5bc-a5656a8f3451?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7356d7b1-c29f-4736-a5bc-a5656a8f3451\",\r\n + \ \"name\": \"7356d7b1-c29f-4736-a5bc-a5656a8f3451\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-14-69037\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:14.8552979Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group show + Connection: + - keep-alive + ParameterSetName: + - --name --stack-name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-05-56-0495c\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:56.0349841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-05-56-0495c\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2033' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group delete + Connection: + - keep-alive + ParameterSetName: + - --name --stack-name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-05-56-0495c\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:05:56.0349841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-05-56-0495c\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2033' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --stack-name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-05-56-0495c?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group list + Connection: + - keep-alive + ParameterSetName: + - --stack-name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-14-69037\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:06:14.8552979Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:06:14.8552979Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-06-14-69037\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-14-69037\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:14.8552979Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:36.6005362Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/79dac0ea-00d1-49a5-9819-08950a36445a?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/79dac0ea-00d1-49a5-9819-08950a36445a?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/79dac0ea-00d1-49a5-9819-08950a36445a\",\r\n + \ \"name\": \"79dac0ea-00d1-49a5-9819-08950a36445a\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-36-0f4ec\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-36-0f4ec\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:05:56.0349841Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:36.6005362Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group show + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-14-69037\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:14.8552979Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:14.8552979Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-06-14-69037\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2033' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group delete + Connection: + - keep-alive + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-14-69037\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:14.8552979Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:14.8552979Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-06-14-69037\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2033' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-14-69037?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:06:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group list + Connection: + - keep-alive + ParameterSetName: + - --stack-name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-06-36-0f4ec\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:06:36.6005362Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:06:36.6005362Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-06-36-0f4ec\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-06-36-0f4ec\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml new file mode 100644 index 00000000000..62f4c7ffcff --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml @@ -0,0 +1,1541 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-snapshot-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:09.9834741Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/13ea2b81-baf1-480a-8372-4b9b421a607e?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/13ea2b81-baf1-480a-8372-4b9b421a607e?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/13ea2b81-baf1-480a-8372-4b9b421a607e\",\r\n + \ \"name\": \"13ea2b81-baf1-480a-8372-4b9b421a607e\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-10-67966\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:09.9834741Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-10-67966\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:09.9834741Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:30.0637018Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d691d80-71fb-47c5-9e98-a5b725882f30?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d691d80-71fb-47c5-9e98-a5b725882f30?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d691d80-71fb-47c5-9e98-a5b725882f30\",\r\n + \ \"name\": \"6d691d80-71fb-47c5-9e98-a5b725882f30\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-30-9b8e2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-30-9b8e2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:30.0637018Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub show + Connection: + - keep-alive + ParameterSetName: + - --name --stack-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-10-67966\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:09.9834741Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-10-67966\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1930' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --stack-name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-10-67966\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:09.9834741Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-10-67966\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1930' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --stack-name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-10-67966?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub list + Connection: + - keep-alive + ParameterSetName: + - --stack-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-30-9b8e2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:07:30.0637018Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:07:30.0637018Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-30-9b8e2\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-30-9b8e2\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-30-9b8e2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-30-9b8e2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:30.0637018Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:53.584508Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d62f5b8b-94e6-4a11-9a64-a0c1894b40e2?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1677' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d62f5b8b-94e6-4a11-9a64-a0c1894b40e2?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d62f5b8b-94e6-4a11-9a64-a0c1894b40e2\",\r\n + \ \"name\": \"d62f5b8b-94e6-4a11-9a64-a0c1894b40e2\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-53-f7ff3\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:53.584508Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2075' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-53-f7ff3\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:53.584508Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2075' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:12.7517585Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/09709123-c7cb-4d97-a2c2-ac7a597aee9c?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/09709123-c7cb-4d97-a2c2-ac7a597aee9c?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/09709123-c7cb-4d97-a2c2-ac7a597aee9c\",\r\n + \ \"name\": \"09709123-c7cb-4d97-a2c2-ac7a597aee9c\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-08-12-2075b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:09.9834741Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:12.7517585Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub show + Connection: + - keep-alive + ParameterSetName: + - --name --stack-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-53-f7ff3\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:53.584508Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:53.584508Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-53-f7ff3\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1928' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub delete + Connection: + - keep-alive + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-53-f7ff3\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:53.584508Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:53.584508Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-53-f7ff3\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1928' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-53-f7ff3?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:08:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub list + Connection: + - keep-alive + ParameterSetName: + - --stack-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-30-9b8e2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:07:30.0637018Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:07:30.0637018Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-30-9b8e2\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-30-9b8e2\"\r\n },\r\n {\r\n \"properties\": + {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n + \ \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:08:12.7517585Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:08:12.7517585Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-08-12-2075b\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-08-12-2075b\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4336' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml new file mode 100644 index 00000000000..1c0830a37ec --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -0,0 +1,2549 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9855495Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9855495Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/313b97b1-aa19-47fc-994c-d1c145fbb30f?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/313b97b1-aa19-47fc-994c-d1c145fbb30f?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/313b97b1-aa19-47fc-994c-d1c145fbb30f\",\r\n + \ \"name\": \"313b97b1-aa19-47fc-994c-d1c145fbb30f\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-32-7f83c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-18-07-32-7f83c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9855495Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9855495Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub show + Connection: + - keep-alive + ParameterSetName: + - --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-32-7f83c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-18-07-32-7f83c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9855495Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9855495Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-32-7f83c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-18-07-32-7f83c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9855495Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9855495Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + response: + body: + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable + to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 + 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). + Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', + request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''foo'' + at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', + request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', + request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The + ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription + for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. + The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","location":"West + US 2","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap/snapshots/2021-09-15-17-56-23-97152","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1/snapshots/2021-09-15-23-48-00-f5e95","updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}},"managedResources":[],"provisioningState":"succeededWithFailures","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One + or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown + error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"[parameters(''rgName'')]","type":"Microsoft.Resources/resourceGroups","apiVersion":"2018-05-01","location":"[parameters(''rgLocation'')]","properties":{}},{"name":"nestedDeployment","type":"Microsoft.Resources/deployments","resourceGroup":"[parameters(''rgName'')]","apiVersion":"2020-06-01","dependsOn":["[parameters(''rgName'')]"],"properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinnewrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentTwo","type":"Microsoft.Resources/deployments","resourceGroup":"filiz-test","apiVersion":"2020-06-01","properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinexistingrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', + ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', + ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', + ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-template-created'' is in deprovisioning state + and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot + perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', + ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', + ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', + ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', + uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', + ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' + does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn + how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHLjqJAAEX%2fxWRmRwvFQ%2bykM1FAUUARRMFNBbB4F68qUOz0v4%2bTuTnLk5zF%2fZ7V6EnNvC7J7PN7dtXcs%2bfOPmcZpS35nM9xWIcpwqimH%2bFr6NFH3OA5GSIS93lL86Ym85CLklDiRSYBUcIIIOEYWYpERhbkWFoIScwDbt72zZjfUU%2fmVh73DWkS%2buEg0gx9jMj8jtqqmf5VXBrGJfkTtjkzvu134AuwgGNYkWE5pu3RmKPHb1Lm7bkpUf2lC2S3%2bj9tpQPnDGB4WqubUaDLdhWnpzU1j8kTRHcr08wHUHyj03GmrIdO4Xw5N7QGIh7tS3zYghbcD9BG9hZDW7tAgMNlIRqNx3Yh1EfrxTA3UfYb2lcGOwlj7GtOJQzlZloaGLoSf8k7LJ0S93WzHWJn0tYm0V6whH56KEm%2frE7u5jhdnKMuq1dvD2%2bDFEQ6H1HPrAozVa%2b%2b11%2bNYEwU%2bhCDZd%2bRdqdZ5WPrLQJm2tpg%2fQRJKky32850WJYKvXosVCWZVqf9CfdyHxbljVxl0XsebLnwcRV4wdiFfmHQxSVQFw8BDMoqeplDfuuKFhOoWONZP5XwcIbG%2brXEBg4PGWGOklh16pmjR9yAmqvbkEmtjjo8XsnP9ajCDL%2fMyipS3gUBpzJdH8d0zU52AbIRm8A3q%2faILK%2fRkxQZgbvBbTbt7dKFl5reHbk608OwhdDeRaPf6Evwggewq1sGwhQFdpgsmJX2fvUXf38z%2b%2fn5Cw%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '241501' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - e85f3dbc-95dd-4b2a-9709-3118ae072ad9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHLjqJAAEX%2FxWRmRwvFQ%2BykM1FAUUARRMFNBbB4F68qUOz0v4%2BTuTnLk5zF%2FZ7V6EnNvC7J7PN7dtXcs%2BfOPmcZpS35nM9xWIcpwqimH%2BFr6NFH3OA5GSIS93lL86Ym85CLklDiRSYBUcIIIOEYWYpERhbkWFoIScwDbt72zZjfUU%2FmVh73DWkS%2BuEg0gx9jMj8jtqqmf5VXBrGJfkTtjkzvu134AuwgGNYkWE5pu3RmKPHb1Lm7bkpUf2lC2S3%2Bj9tpQPnDGB4WqubUaDLdhWnpzU1j8kTRHcr08wHUHyj03GmrIdO4Xw5N7QGIh7tS3zYghbcD9BG9hZDW7tAgMNlIRqNx3Yh1EfrxTA3UfYb2lcGOwlj7GtOJQzlZloaGLoSf8k7LJ0S93WzHWJn0tYm0V6whH56KEm%2FrE7u5jhdnKMuq1dvD2%2BDFEQ6H1HPrAozVa%2B%2B11%2BNYEwU%2BhCDZd%2BRdqdZ5WPrLQJm2tpg%2FQRJKky32850WJYKvXosVCWZVqf9CfdyHxbljVxl0XsebLnwcRV4wdiFfmHQxSVQFw8BDMoqeplDfuuKFhOoWONZP5XwcIbG%2BrXEBg4PGWGOklh16pmjR9yAmqvbkEmtjjo8XsnP9ajCDL%2FMyipS3gUBpzJdH8d0zU52AbIRm8A3q%2FaILK%2FRkxQZgbvBbTbt7dKFl5reHbk608OwhdDeRaPf6Evwggewq1sGwhQFdpgsmJX2fvUXf38z%2B%2Fn5Cw%3D%3D + response: + body: + string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D\"},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:50:04.0885604Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:50:04.0885604Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf_pu\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf/snapshots/2021-09-17-19-51-01-adde5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:51:00.3893514Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:51:00.3893514Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf-pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf/snapshots/2021-09-17-19-53-29-35b3d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:53:28.4521693Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:53:28.4521693Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu/snapshots/2021-09-17-19-56-23-1b2bc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D\"},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:54:42.7520085Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:56:22.212836Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pu\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"parameters\":{\"adVnetName\":{\"value\":\"ad-vnet\"},\"adVnetSubscriptionId\":{\"value\":\"ec0f79d3-16f0-4892-8165-f569a92c8273\"},\"dnsServerPrivateIp\":{\"value\":\"10.0.0.4\"},\"adminUsername\":{\"value\":\"bmoore\"},\"adSubnetName\":{\"value\":\"ad-vnet-subnet\"},\"adDomainName\":{\"value\":\"corp.mydomain.com\"},\"adVnetRG\":{\"value\":\"aad-stack\"},\"adminPassword\":{\"reference\":{\"keyVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo\"},\"secretName\":\"adminPass\"}}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"dnsLabelPrefix\":{\"type\":\"string\",\"defaultValue\":\"[concat('rds-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"Unique + public DNS prefix for the deployment. The fqdn will look something like '.westus.cloudapp.azure.com'. + Up to 62 chars, digits or dashes, lowercase, should start with a letter: must + conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result + the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb\"}},\"adDomainName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + name of the AD domain. For example contoso.com\"}},\"adVnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + vnet name of AD domain. For example johnvnet1\"}},\"adVnetRG\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + Resource Group containing the existing Virtual Network resource\"}},\"adVnetSubscriptionId\":{\"type\":\"string\",\"defaultValue\":\"[subscription().subscriptionId]\",\"metadata\":{\"description\":\"The + subscription containing the existing Virtual Network resource\"}},\"adSubnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + subnet name of AD domain\"}},\"dnsServerPrivateIp\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + private IP address of the ad dns server\"}},\"adminUsername\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. + For example johnadmin\"}},\"adminPassword\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The + password for the administrator account of the new VM and the domain\"}},\"imageSKU\":{\"type\":\"string\",\"allowedValues\":[\"2012-R2-Datacenter\",\"2016-Datacenter\",\"2019-Datacenter\",\"2022-datacenter\"],\"metadata\":{\"description\":\"Windows + server SKU\"},\"defaultValue\":\"2019-Datacenter\"},\"numberOfRdshInstances\":{\"type\":\"int\",\"defaultValue\":1,\"metadata\":{\"description\":\"Number + of RemoteDesktopSessionHosts\"}},\"rdshVmSize\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + size of the RDSH VMs\"},\"defaultValue\":\"Standard_D4s_v3\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\",\"metadata\":{\"description\":\"Location + for all resources.\"}},\"_artifactsLocation\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + base URI where artifacts required by this template are located. When the template + is deployed using the accompanying scripts, a private location in the subscription + will be used and this value will be automatically generated.\"},\"defaultValue\":\"[deployment().properties.templateLink.uri]\"},\"_artifactsLocationSasToken\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The + sasToken required to access _artifactsLocation. When the template is deployed + using the accompanying scripts, a sasToken will be automatically generated.\"},\"defaultValue\":\"\"},\"gatewayIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('gwd-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name + for the gateway, must be globally unique.\"}},\"connBrokerIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('cbd-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name + for the connection broker, must be globally unique.\"}},\"rdshNamingPrefix\":{\"type\":\"string\",\"defaultValue\":\"rdsh-\",\"maxLength\":16,\"metadata\":{\"description\":\"Naming + prefix for the RDS Host VMs and resources\"}}},\"variables\":{\"imagePublisher\":\"MicrosoftWindowsServer\",\"imageOffer\":\"WindowsServer\",\"subnet-id\":\"[resourceId(parameters('adVnetSubscriptionId'), + parameters('adVnetRG'),'Microsoft.Network/virtualNetworks/subnets', parameters('adVnetName'), + parameters('adSubnetName'))]\",\"publicIpAddressName\":\"publicIp\",\"gatewayPublicIpAddressName\":\"gatewayPublicIp\",\"brokerPublicIpAddressName\":\"brokerPublicIp\"},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('publicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('dnsLabelPrefix')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('gatewayPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('gatewayIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('brokerPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('connBrokerIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"gw-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"cb-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + 'availabilityset')]\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/loadBalancers\",\"name\":\"loadBalancer\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('publicIpAddressName'))]\"],\"properties\":{\"frontendIPConfigurations\":[{\"name\":\"LBFE\",\"properties\":{\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('publicIpAddressName'))]\"}}}],\"backendAddressPools\":[{\"name\":\"LBBAP\"}],\"loadBalancingRules\":[{\"name\":\"LBRule01\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', + 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools/', + 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Tcp\",\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', + 'loadbalancer', 'tcpProbe')]\"}}},{\"name\":\"LBRule02\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', + 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools', + 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Udp\",\"frontendPort\":3391,\"backendPort\":3391,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', + 'loadbalancer', 'tcpProbe')]\"}}}],\"probes\":[{\"name\":\"tcpProbe\",\"properties\":{\"protocol\":\"Tcp\",\"port\":443,\"intervalInSeconds\":5,\"numberOfProbes\":2}},{\"name\":\"tcpProbe01\",\"properties\":{\"protocol\":\"Tcp\",\"port\":3391,\"intervalInSeconds\":5,\"numberOfProbes\":2}}],\"inboundNatRules\":[{\"name\":\"rdp\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations','loadBalancer','LBFE')]\"},\"protocol\":\"Tcp\",\"frontendPort\":3389,\"backendPort\":3389,\"enableFloatingIP\":false}}]}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"gw-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses',variables('gatewayPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools','loadBalancer', + 'LBBAP')]\"}],\"loadBalancerInboundNatRules\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/inboundNatRules','loadBalancer', + 'rdp')]\"}]}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"cb-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('brokerPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex(), '-nic')]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-nic-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"gw-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + 'gw-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', + 'gw-nic')]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + 'gw-availabilityset')]\"},\"osProfile\":{\"computerName\":\"gateway\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"gw_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','gw-nic')]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"extensions\",\"name\":\"gateway\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + 'gw-vm')]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\Gateway\",\"properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex())]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-vm-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\",\"[resourceId('Microsoft.Network/networkInterfaces', + concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\"},\"osProfile\":{\"computerName\":\"[concat(parameters('rdshNamingPrefix'), + copyIndex())]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyIndex(),'-OSDisk')]\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces', + concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex(),'/sessionhost')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + concat(parameters('rdshNamingPrefix'), copyindex()))]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\SessionHost\",\"Properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"cb-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + 'cb-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', + 'cb-nic')]\",\"rdsh-vm-loop\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + 'cb-availabilityset')]\"},\"osProfile\":{\"computerName\":\"broker\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"cb_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','cb-nic')]\"}]}}},{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"cb-vm/rdsdeployment\",\"apiVersion\":\"2020-06-01\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + 'cb-vm')]\",\"[resourceId('Microsoft.Compute/virtualMachines/extensions', + 'gw-vm', 'gateway')]\",\"rdsh-vm-loop\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"configurationFunction\":\"Configuration.ps1\\\\RDSDeployment\",\"properties\":{\"adminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:adminPassword\"},\"connectionBroker\":\"[concat('broker.',parameters('adDomainName'))]\",\"domainName\":\"[parameters('adDomainName')]\",\"externalfqdn\":\"[reference(variables('gatewayPublicIpAddressName')).dnsSettings.fqdn]\",\"numberOfRdshInstances\":\"[parameters('numberOfRdshInstances')]\",\"sessionHostNamingPrefix\":\"[parameters('rdshNamingPrefix')]\",\"webAccessServer\":\"[concat('gateway.',parameters('adDomainName'))]\"}},\"protectedSettings\":{\"Items\":{\"adminPassword\":\"[parameters('adminPassword')]\"}}}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplate\",\"message\":\"Deployment + template validation failed: 'The template resource 'dnsLabelPrefix' at line + '8' and column '27' is not valid: The template function 'RESOURCEGROUP' is + not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.'.\",\"details\":[],\"additionalInfo\":[{\"type\":\"TemplateViolation\",\"info\":{\"lineNumber\":8,\"linePosition\":27,\"path\":\"properties.template.parameters.dnsLabelPrefix\"}}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T22:00:21.3463894Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T22:00:21.3463894Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"filiz-test-stack9\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"AuthorizationFailed\",\"message\":\"The + client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' + does not have authorization to perform action 'Microsoft.Resources/deployments/write' + over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope + is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The + template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:37:19.2142448Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:37:19.2142448Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create/snapshots/2021-11-17-20-45-56-90d18\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T14:25:40.0202065Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:45:56.782397Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The + template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', + format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', + variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + 'appPlanDeploy'), '2020-06-01').outputs.planId.value]\"},\"namePrefix\":{\"value\":\"[variables('websites')[copyIndex()].name]\"},\"dockerImage\":{\"value\":\"nginxdemos/hello\"},\"dockerImageTag\":{\"value\":\"[variables('websites')[copyIndex()].tag]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"17373956428318857886\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\"},\"dockerImage\":{\"type\":\"string\"},\"dockerImageTag\":{\"type\":\"string\"},\"appPlanId\":{\"type\":\"string\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/sites\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}site', + parameters('namePrefix'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"siteConfig\":{\"appSettings\":[{\"name\":\"DOCKER_REGISTRY_SERVER_URL\",\"value\":\"https://index.docker.io\"},{\"name\":\"DOCKER_REGISTRY_SERVER_USERNAME\",\"value\":\"\"},{\"name\":\"DOCKER_REGISTRY_SERVER_PASSWORD\",\"value\":\"\"},{\"name\":\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\"value\":\"false\"}],\"linuxFxVersion\":\"[format('DOCKER|{0}:{1}', + parameters('dockerImage'), parameters('dockerImageTag'))]\"},\"serverFarmId\":\"[parameters('appPlanId')]\"}}],\"outputs\":{\"siteUrl\":{\"type\":\"string\",\"value\":\"[reference(resourceId('Microsoft.Web/sites', + format('{0}site', parameters('namePrefix')))).hostNames[0]]\"}}}},\"dependsOn\":[\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"},{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:36:24.6329286Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:36:24.6329286Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps8692\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4/snapshots/2021-11-15-15-07-37-06804\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T15:06:34.4666682Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T15:07:36.8624014Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc/snapshots/2021-11-15-20-20-18-81368\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:19:17.0338745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:20:18.1175672Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa/snapshots/2021-11-15-20-42-21-f515c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:41:20.4753415Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:42:21.4238094Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl/snapshots/2021-11-15-21-12-24-ad962\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T21:11:23.4123304Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T21:12:24.6476543Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9\",\"parameters\":{\"resourceGroups\":{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun\",\"name\":\"tarun\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"15509277032350500834\"}},\"parameters\":{\"resourceGroups\":{\"type\":\"array\",\"metadata\":{\"description\":\"Resource + Groups definition to deploy resources to.\"}},\"deploymentLocation\":{\"type\":\"string\",\"defaultValue\":\"[deployment().location]\",\"metadata\":{\"description\":\"The + location of the deployment.\"}},\"tags\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"Specify + tags that should be assigned to the deployed resources. Tags are needed for + proper usage and billing handling.\"}},\"solutionVersionTag\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"The + version of this solution in the form of tag. This parameter is specified usually + by lz-deployment-script (deploy.ps1).\"}}},\"functions\":[],\"variables\":{\"allTags\":\"[union(parameters('tags'), + parameters('solutionVersionTag'))]\",\"defaultResourceGroupObject\":{\"tags\":{},\"create\":true,\"alertsScope\":{\"subscriptionId\":\"\",\"resourceGroup\":\"\",\"logAnalyticsWorkspace\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"actionGroups\":[],\"alertRules\":{\"memoryThrashing\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Memory Thrashing has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"memoryThrashingByServerName\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services service logs by server name has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"value_s\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"totalConnectionFailures\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Total Connection Failures has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":15,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":5,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"commandPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Command Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"processingPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Processing Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":2,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"}}}},\"resources\":[{\"condition\":\"[union(variables('defaultResourceGroupObject'), + parameters('resourceGroups')[copyIndex()]).create]\",\"copy\":{\"name\":\"resourceGroupsRes\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2021-04-01\",\"name\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"location\":\"[parameters('resourceGroups')[copyIndex()].location]\",\"tags\":\"[union(variables('allTags'), + union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\",\"properties\":{}},{\"copy\":{\"name\":\"analysisServiceMonResources\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceMonResources-{0}', + copyIndex())]\",\"resourceGroup\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[union(variables('defaultResourceGroupObject'), + parameters('resourceGroups')[copyIndex()])]\"},\"tags\":{\"value\":\"[union(variables('allTags'), + union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"13027831339953017732\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"defaultActionGroupObject\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceAlerts-{0}', + if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name)))]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[parameters('analysisServiceMonitoring')]\"},\"actionGroups\":{\"copy\":[{\"name\":\"value\",\"count\":\"[length(parameters('analysisServiceMonitoring').actionGroups)]\",\"input\":\"[union(variables('defaultActionGroupObject'), + parameters('analysisServiceMonitoring').actionGroups[copyIndex('value')])]\"}]},\"location\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + resourceGroup().location, reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), + 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + '2021-06-01', 'full').location)]\"},\"logAnalyticsWorkspaceResourceId\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + '', extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), + 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name))]\"},\"tags\":{\"value\":\"[parameters('tags')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"1278265623681629574\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"actionGroups\":{\"type\":\"array\"},\"location\":{\"type\":\"string\"},\"logAnalyticsWorkspaceResourceId\":{\"type\":\"string\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"alertRules\":{\"memoryThrashing\":{\"id\":\"2c995c3f-8e42-4eaf-82c2-80b9d443b2dd\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description), + 'This metric shows the average percentage of memory being thrashed from the + RAM of your resource, relative to the total size of RAM in the resource. Note + that this metric is relevant only for Import mode datasets, because they''re + hosting data in memory. This metric does not monitor datasets that are using + DirectQuery or live connection to Analysis Services. When the memory thrashing + keeps exceeding the given threshold, it''s worth investigating the problem + more deeply first, as scaling up is not always the solution for it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"Resource\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"memoryThrashingByServerName\":{\"id\":\"5b9e5597-32c6-4f1a-a984-52aa690ccf5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query), + 'AzureDiagnostics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and OperationName == ''LogMetric''\\r\\n and Category == ''Service''\\r\\n + \ and name_s == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description), + 'This metric shows the average percentage of memory being thrashed from the + RAM of your resource, relative to the total size of RAM in the resource, by + server name. Note that this metric is relevant only for Import mode datasets, + because they''re hosting data in memory. This metric does not monitor datasets + that are using DirectQuery or live connection to Analysis Services. When the + memory thrashing keeps exceeding the given threshold, it''s worth investigating + the problem more deeply first, as scaling up is not always the solution for + it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"_SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"ServerName_s\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"totalConnectionFailures\":{\"id\":\"f9125df9-eb5d-4967-8517-52c68f6f9dd2\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''TotalConnectionFailures''', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description), + 'The average count of failed connection attempts. Set the threshold to an + appropriate value after monitoring and discovering the normal average value + of this metric.', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"commandPoolJobQueueLength\":{\"id\":\"86b2903c-67b2-42a7-8e20-2ba68053cd5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''CommandPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description), + 'Monitors CPU thread utilization related to processing commands. Technically + there are several other types of commands, but when it comes to performance, + ''processing'' is the only one of concern. (the other ''types'' of commands + are things like DDL-ish to add/alter a partition). This particular counter + shows when a (processing) command is waiting on a thread to be allocated from + the command pool\u2026 in other words, if you see a value > 1 here for an + extended period of time, you have a bottleneck. When there is it is very likely + due to Azure AS becomes a junk yard for ''auto-upgraded'' Power BI solutions + w/ auto-refresh capabilities.', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"processingPoolJobQueueLength\":{\"id\":\"a7d45337-19cb-4cb2-b1d9-380bf5cf8970\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''ProcessingPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description), + 'Monitors for Processing Pool Job Queue Length. The processing thread pool + allocates threads for processing the data structures that make up a tabular + model. Same as CommandPoolJobQueueLength a value > 1 for and extended period + of time indicates a bottleneck. This is a much more common place to find a + bottleneck especially in larger models that leverage partitions and parallel + processing.', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]}},\"defaultDimension\":[{\"name\":\"_ResourceId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"resources\":[{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id), + variables('alertRules').memoryThrashing.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.displayName]\",\"description\":\"[variables('alertRules').memoryThrashing.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashing.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').memoryThrashing.dimensions), + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id), + variables('alertRules').memoryThrashingByServerName.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.displayName]\",\"description\":\"[variables('alertRules').memoryThrashingByServerName.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashingByServerName.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').memoryThrashingByServerName.dimensions), + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id), + variables('alertRules').commandPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').commandPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').commandPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').commandPoolJobQueueLength.dimensions), + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id), + variables('alertRules').processingPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').processingPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').processingPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').processingPoolJobQueueLength.dimensions), + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}}]}}}]}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + parameters('resourceGroups')[copyIndex()].name)]\"]}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"tsunkaraneni@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-16T23:17:33.6981155Z\",\"lastModifiedBy\":\"tsunkaraneni@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-16T23:31:28.1053874Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ghImplicit\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp/snapshots/2021-11-17-20-18-26-378e6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:17:25.3276637Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:18:26.5874089Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource + group 'resource-group' could not be found.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:58:13.256519Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:44:40.7588571Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create_checje\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg/snapshots/2021-11-17-21-03-16-860a6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T21:02:09.9177231Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T21:03:16.4615691Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc/snapshots/2021-11-18-20-42-37-e61e7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T20:41:35.3698362Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:42:37.6788971Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription53xmqc\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp/snapshots/2021-11-22-16-13-15-0eef8\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:15.1673603Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:15.1673603Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-hp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt/snapshots/2021-11-18-21-02-19-64f5e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:01:12.9792533Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:02:19.3094872Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g/snapshots/2021-11-18-21-09-35-16ebd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:08:34.3282811Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:09:35.8321305Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g/snapshots/2021-11-19-15-47-39-bcc03\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-19T15:46:36.9976152Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-19T15:47:38.9223058Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2/snapshots/2021-11-22-16-13-37-7052c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:37.2232093Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:37.2232093Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-2\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountType\":{\"type\":\"string\",\"defaultValue\":\"Standard_LRS\",\"allowedValues\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_ZRS\",\"Premium_LRS\"],\"metadata\":{\"description\":\"Storage + Account type\"}},\"location\":{\"type\":\"string\",\"defaultValue\":\"westus\",\"metadata\":{\"description\":\"Location + for all resources.\"}}},\"variables\":{\"storageAccountName\":\"deploymentscopetest\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"apiVersion\":\"2019-06-01\",\"name\":\"[variables('storageAccountName')]\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"[parameters('storageAccountType')]\"},\"kind\":\"StorageV2\",\"properties\":{}}],\"outputs\":{\"storageAccountName\":{\"type\":\"string\",\"value\":\"[variables('storageAccountName')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3bjqIwAIDhd%2bFi7xAKqGgy2VQUUQ4rIjrjDSlQtKJth1YOTubddzb7X%2f%2fJ96VQ3MuA0Foo8y%2fltEoOaaLMlauUXMw17YEouuAHpnKEXs8Gjwr20MQzF0VDuCSMCg2BvEITc6xWRl6pllEB1Z7kY9W27GIytarCNIDGG9aSEjdCC0nRMMEqOdpjwZ5NgYVWYn5nwz8lkaioxW%2fEidr%2b3D%2fAm6EbQNXHqg5U3uCW4O6XqAk%2fsBrTN88SG%2fi%2fFfTA7nBqnXhxsIOp9DC4iltA4k7tH8AYyyI1SLoSO4jTfTIE%2bmWCNhkGsyHOurZowy7suqav%2bvLdysraD5K9O2RlNe1jt%2fFm0YyD4Q7dmxpsI5cjPPifA%2fbJcfk8hSfT%2faQC1JN73zZlsp3JBdfXdS8cfVncljAWi8t%2bLZyUrN%2bvJ0%2fqOb6fUfiRPK3j2Urogu4gdAgcTBvSF%2b9gZvn4BQ8hEkx%2bCAeLzTZ6bX0L2ZcgZ7V9qfRzEFp2nUnX4872T%2bbuSzNOVRKgs7z5yb01l1Eya01KMDWnCyMZoiOrYQyh8v39Fw%3d%3d\"}" + headers: + cache-control: + - no-cache + content-length: + - '233907' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 9285882f-3119-46bd-b4ca-c021218c42e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3bjqIwAIDhd%2BFi7xAKqGgy2VQUUQ4rIjrjDSlQtKJth1YOTubddzb7X%2F%2FJ96VQ3MuA0Foo8y%2FltEoOaaLMlauUXMw17YEouuAHpnKEXs8Gjwr20MQzF0VDuCSMCg2BvEITc6xWRl6pllEB1Z7kY9W27GIytarCNIDGG9aSEjdCC0nRMMEqOdpjwZ5NgYVWYn5nwz8lkaioxW%2FEidr%2B3D%2FAm6EbQNXHqg5U3uCW4O6XqAk%2FsBrTN88SG%2Fi%2FFfTA7nBqnXhxsIOp9DC4iltA4k7tH8AYyyI1SLoSO4jTfTIE%2BmWCNhkGsyHOurZowy7suqav%2BvLdysraD5K9O2RlNe1jt%2FFm0YyD4Q7dmxpsI5cjPPifA%2FbJcfk8hSfT%2FaQC1JN73zZlsp3JBdfXdS8cfVncljAWi8t%2BLZyUrN%2BvJ0%2FqOb6fUfiRPK3j2Urogu4gdAgcTBvSF%2B9gZvn4BQ8hEkx%2BCAeLzTZ6bX0L2ZcgZ7V9qfRzEFp2nUnX4872T%2BbuSzNOVRKgs7z5yb01l1Eya01KMDWnCyMZoiOrYQyh8v39Fw%3D%3D + response: + body: + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2021-12-10-18-49-05-e0ea7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2021-12-10-18-49-05-e0ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-09T19:25:48.8480893Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-10T18:49:05.606183Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:07:53.584508Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-53-e4298","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:52.745197Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:07:52.745197Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiond5twailuflbkr4eytq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiond5twailuflbkr4eytq"}]}' + headers: + cache-control: + - no-cache + content-length: + - '75819' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 197b932c-286b-4481-9ea8-f034d9048cde + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:58.149367Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:58.149367Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/79286036-ac2b-461a-81d9-fe223b058aa7?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1676' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/79286036-ac2b-461a-81d9-fe223b058aa7?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/79286036-ac2b-461a-81d9-fe223b058aa7\",\r\n + \ \"name\": \"79286036-ac2b-461a-81d9-fe223b058aa7\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-58-a8617\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-18-07-58-a8617\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:58.149367Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:58.149367Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2074' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-58-a8617\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-18-07-58-a8617\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:58.149367Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:58.149367Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2074' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + response: + body: + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable + to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 + 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). + Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', + request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''foo'' + at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', + request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', + request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The + ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription + for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. + The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","location":"West + US 2","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap/snapshots/2021-09-15-17-56-23-97152","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1/snapshots/2021-09-15-23-48-00-f5e95","updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}},"managedResources":[],"provisioningState":"succeededWithFailures","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One + or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown + error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"[parameters(''rgName'')]","type":"Microsoft.Resources/resourceGroups","apiVersion":"2018-05-01","location":"[parameters(''rgLocation'')]","properties":{}},{"name":"nestedDeployment","type":"Microsoft.Resources/deployments","resourceGroup":"[parameters(''rgName'')]","apiVersion":"2020-06-01","dependsOn":["[parameters(''rgName'')]"],"properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinnewrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentTwo","type":"Microsoft.Resources/deployments","resourceGroup":"filiz-test","apiVersion":"2020-06-01","properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinexistingrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', + ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', + ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', + ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-template-created'' is in deprovisioning state + and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot + perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', + ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', + ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', + ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', + uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', + ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' + does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn + how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JdFJj6JAAAXg%2f2Iyc6sWkLWTzsQFxQ0RQcALKahiUwqoAgQ7%2fd%2fHyby840u%2bw%2fueEDy0h5zc2eTze%2bLpF8e9TD4nWdvW7HM6LSGBKS4xaT%2fgq6P4I67KKesiFtO8bvOKsCnkowTKMwkkQpQAUUh4oMqRBFRRjWVFTOKZwE9rWvU5wpRNj3lMK1Yl7YeNWdXRGLMpwvWjGv8plxbGd%2fYH1jno3%2bs38CVwAg84CXA8qCnuc%2fz8ze557VR3TL4MkW3n%2f6PPDcF2hBCeF6t1L7ZaPY%2fT8667xn3RCs1ttTWy1u1s10JLd9We102o6VVeaIrJPWAF0FNRkBla2CoJtkY37GY3xdFfl2Y8v%2foB7EdOZflsN%2fKadPduwO9ovW8k91bv%2b33pbkLCUe2VDs54Q%2bUxkyy%2fSfDag%2b66cV%2fyDofbt7VxnUzNwt2mCg5Y1ZihNUAX6n64hVv51S%2bOfmifxE2UHuQWjr29OyYlPulBlh6KZZHrpzi%2fehddhV1wLkJTSAm%2fOtxTzs3akw2950YK0FpoDC5SbLoP3JPmsJKQQstqXlNWK1tjwayOzUAVhH7he8xRr4uyCd3guZQy5pE6QinqNp7ISb5zpYgzoGwRh%2fJLKit6HLjqRU3vycMh%2fjF6ICYUIj3pvOJktcZybhkYko28QQIDoWi%2fMvh17gUPBM3MUHMq9QVpzGJtjZ6eaAMOniDIfKvyB1%2bl2FeAOsdzc5zZYK6%2fX%2f01Q%2b9Ofn7%2bAg%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '241515' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - d63396a9-e09d-4bc2-adb4-c228d82ef7d2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JdFJj6JAAAXg%2F2Iyc6sWkLWTzsQFxQ0RQcALKahiUwqoAgQ7%2Fd%2FHyby840u%2Bw%2FueEDy0h5zc2eTze%2BLpF8e9TD4nWdvW7HM6LSGBKS4xaT%2Fgq6P4I67KKesiFtO8bvOKsCnkowTKMwkkQpQAUUh4oMqRBFRRjWVFTOKZwE9rWvU5wpRNj3lMK1Yl7YeNWdXRGLMpwvWjGv8plxbGd%2FYH1jno3%2Bs38CVwAg84CXA8qCnuc%2Fz8ze557VR3TL4MkW3n%2F6PPDcF2hBCeF6t1L7ZaPY%2FT8667xn3RCs1ttTWy1u1s10JLd9We102o6VVeaIrJPWAF0FNRkBla2CoJtkY37GY3xdFfl2Y8v%2FoB7EdOZflsN%2FKadPduwO9ovW8k91bv%2B33pbkLCUe2VDs54Q%2BUxkyy%2FSfDag%2B66cV%2FyDofbt7VxnUzNwt2mCg5Y1ZihNUAX6n64hVv51S%2BOfmifxE2UHuQWjr29OyYlPulBlh6KZZHrpzi%2FehddhV1wLkJTSAm%2FOtxTzs3akw2950YK0FpoDC5SbLoP3JPmsJKQQstqXlNWK1tjwayOzUAVhH7he8xRr4uyCd3guZQy5pE6QinqNp7ISb5zpYgzoGwRh%2FJLKit6HLjqRU3vycMh%2FjF6ICYUIj3pvOJktcZybhkYko28QQIDoWi%2FMvh17gUPBM3MUHMq9QVpzGJtjZ6eaAMOniDIfKvyB1%2Bl2FeAOsdzc5zZYK6%2FX%2F01Q%2B9Ofn7%2BAg%3D%3D + response: + body: + string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D\"},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:50:04.0885604Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:50:04.0885604Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf_pu\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf/snapshots/2021-09-17-19-51-01-adde5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:51:00.3893514Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:51:00.3893514Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf-pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf/snapshots/2021-09-17-19-53-29-35b3d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:53:28.4521693Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:53:28.4521693Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu/snapshots/2021-09-17-19-56-23-1b2bc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D\"},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:54:42.7520085Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:56:22.212836Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pu\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"parameters\":{\"adVnetName\":{\"value\":\"ad-vnet\"},\"adVnetSubscriptionId\":{\"value\":\"ec0f79d3-16f0-4892-8165-f569a92c8273\"},\"dnsServerPrivateIp\":{\"value\":\"10.0.0.4\"},\"adminUsername\":{\"value\":\"bmoore\"},\"adSubnetName\":{\"value\":\"ad-vnet-subnet\"},\"adDomainName\":{\"value\":\"corp.mydomain.com\"},\"adVnetRG\":{\"value\":\"aad-stack\"},\"adminPassword\":{\"reference\":{\"keyVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo\"},\"secretName\":\"adminPass\"}}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"dnsLabelPrefix\":{\"type\":\"string\",\"defaultValue\":\"[concat('rds-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"Unique + public DNS prefix for the deployment. The fqdn will look something like '.westus.cloudapp.azure.com'. + Up to 62 chars, digits or dashes, lowercase, should start with a letter: must + conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result + the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb\"}},\"adDomainName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + name of the AD domain. For example contoso.com\"}},\"adVnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + vnet name of AD domain. For example johnvnet1\"}},\"adVnetRG\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + Resource Group containing the existing Virtual Network resource\"}},\"adVnetSubscriptionId\":{\"type\":\"string\",\"defaultValue\":\"[subscription().subscriptionId]\",\"metadata\":{\"description\":\"The + subscription containing the existing Virtual Network resource\"}},\"adSubnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + subnet name of AD domain\"}},\"dnsServerPrivateIp\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + private IP address of the ad dns server\"}},\"adminUsername\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. + For example johnadmin\"}},\"adminPassword\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The + password for the administrator account of the new VM and the domain\"}},\"imageSKU\":{\"type\":\"string\",\"allowedValues\":[\"2012-R2-Datacenter\",\"2016-Datacenter\",\"2019-Datacenter\",\"2022-datacenter\"],\"metadata\":{\"description\":\"Windows + server SKU\"},\"defaultValue\":\"2019-Datacenter\"},\"numberOfRdshInstances\":{\"type\":\"int\",\"defaultValue\":1,\"metadata\":{\"description\":\"Number + of RemoteDesktopSessionHosts\"}},\"rdshVmSize\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + size of the RDSH VMs\"},\"defaultValue\":\"Standard_D4s_v3\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\",\"metadata\":{\"description\":\"Location + for all resources.\"}},\"_artifactsLocation\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + base URI where artifacts required by this template are located. When the template + is deployed using the accompanying scripts, a private location in the subscription + will be used and this value will be automatically generated.\"},\"defaultValue\":\"[deployment().properties.templateLink.uri]\"},\"_artifactsLocationSasToken\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The + sasToken required to access _artifactsLocation. When the template is deployed + using the accompanying scripts, a sasToken will be automatically generated.\"},\"defaultValue\":\"\"},\"gatewayIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('gwd-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name + for the gateway, must be globally unique.\"}},\"connBrokerIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('cbd-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name + for the connection broker, must be globally unique.\"}},\"rdshNamingPrefix\":{\"type\":\"string\",\"defaultValue\":\"rdsh-\",\"maxLength\":16,\"metadata\":{\"description\":\"Naming + prefix for the RDS Host VMs and resources\"}}},\"variables\":{\"imagePublisher\":\"MicrosoftWindowsServer\",\"imageOffer\":\"WindowsServer\",\"subnet-id\":\"[resourceId(parameters('adVnetSubscriptionId'), + parameters('adVnetRG'),'Microsoft.Network/virtualNetworks/subnets', parameters('adVnetName'), + parameters('adSubnetName'))]\",\"publicIpAddressName\":\"publicIp\",\"gatewayPublicIpAddressName\":\"gatewayPublicIp\",\"brokerPublicIpAddressName\":\"brokerPublicIp\"},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('publicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('dnsLabelPrefix')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('gatewayPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('gatewayIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('brokerPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('connBrokerIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"gw-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"cb-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + 'availabilityset')]\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/loadBalancers\",\"name\":\"loadBalancer\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('publicIpAddressName'))]\"],\"properties\":{\"frontendIPConfigurations\":[{\"name\":\"LBFE\",\"properties\":{\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('publicIpAddressName'))]\"}}}],\"backendAddressPools\":[{\"name\":\"LBBAP\"}],\"loadBalancingRules\":[{\"name\":\"LBRule01\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', + 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools/', + 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Tcp\",\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', + 'loadbalancer', 'tcpProbe')]\"}}},{\"name\":\"LBRule02\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', + 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools', + 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Udp\",\"frontendPort\":3391,\"backendPort\":3391,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', + 'loadbalancer', 'tcpProbe')]\"}}}],\"probes\":[{\"name\":\"tcpProbe\",\"properties\":{\"protocol\":\"Tcp\",\"port\":443,\"intervalInSeconds\":5,\"numberOfProbes\":2}},{\"name\":\"tcpProbe01\",\"properties\":{\"protocol\":\"Tcp\",\"port\":3391,\"intervalInSeconds\":5,\"numberOfProbes\":2}}],\"inboundNatRules\":[{\"name\":\"rdp\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations','loadBalancer','LBFE')]\"},\"protocol\":\"Tcp\",\"frontendPort\":3389,\"backendPort\":3389,\"enableFloatingIP\":false}}]}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"gw-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses',variables('gatewayPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools','loadBalancer', + 'LBBAP')]\"}],\"loadBalancerInboundNatRules\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/inboundNatRules','loadBalancer', + 'rdp')]\"}]}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"cb-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('brokerPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex(), '-nic')]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-nic-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"gw-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + 'gw-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', + 'gw-nic')]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + 'gw-availabilityset')]\"},\"osProfile\":{\"computerName\":\"gateway\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"gw_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','gw-nic')]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"extensions\",\"name\":\"gateway\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + 'gw-vm')]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\Gateway\",\"properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex())]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-vm-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\",\"[resourceId('Microsoft.Network/networkInterfaces', + concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\"},\"osProfile\":{\"computerName\":\"[concat(parameters('rdshNamingPrefix'), + copyIndex())]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyIndex(),'-OSDisk')]\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces', + concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex(),'/sessionhost')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + concat(parameters('rdshNamingPrefix'), copyindex()))]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\SessionHost\",\"Properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"cb-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + 'cb-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', + 'cb-nic')]\",\"rdsh-vm-loop\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + 'cb-availabilityset')]\"},\"osProfile\":{\"computerName\":\"broker\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"cb_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','cb-nic')]\"}]}}},{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"cb-vm/rdsdeployment\",\"apiVersion\":\"2020-06-01\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + 'cb-vm')]\",\"[resourceId('Microsoft.Compute/virtualMachines/extensions', + 'gw-vm', 'gateway')]\",\"rdsh-vm-loop\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"configurationFunction\":\"Configuration.ps1\\\\RDSDeployment\",\"properties\":{\"adminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:adminPassword\"},\"connectionBroker\":\"[concat('broker.',parameters('adDomainName'))]\",\"domainName\":\"[parameters('adDomainName')]\",\"externalfqdn\":\"[reference(variables('gatewayPublicIpAddressName')).dnsSettings.fqdn]\",\"numberOfRdshInstances\":\"[parameters('numberOfRdshInstances')]\",\"sessionHostNamingPrefix\":\"[parameters('rdshNamingPrefix')]\",\"webAccessServer\":\"[concat('gateway.',parameters('adDomainName'))]\"}},\"protectedSettings\":{\"Items\":{\"adminPassword\":\"[parameters('adminPassword')]\"}}}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplate\",\"message\":\"Deployment + template validation failed: 'The template resource 'dnsLabelPrefix' at line + '8' and column '27' is not valid: The template function 'RESOURCEGROUP' is + not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.'.\",\"details\":[],\"additionalInfo\":[{\"type\":\"TemplateViolation\",\"info\":{\"lineNumber\":8,\"linePosition\":27,\"path\":\"properties.template.parameters.dnsLabelPrefix\"}}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T22:00:21.3463894Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T22:00:21.3463894Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"filiz-test-stack9\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"AuthorizationFailed\",\"message\":\"The + client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' + does not have authorization to perform action 'Microsoft.Resources/deployments/write' + over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope + is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The + template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:37:19.2142448Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:37:19.2142448Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create/snapshots/2021-11-17-20-45-56-90d18\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T14:25:40.0202065Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:45:56.782397Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The + template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', + format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', + variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + 'appPlanDeploy'), '2020-06-01').outputs.planId.value]\"},\"namePrefix\":{\"value\":\"[variables('websites')[copyIndex()].name]\"},\"dockerImage\":{\"value\":\"nginxdemos/hello\"},\"dockerImageTag\":{\"value\":\"[variables('websites')[copyIndex()].tag]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"17373956428318857886\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\"},\"dockerImage\":{\"type\":\"string\"},\"dockerImageTag\":{\"type\":\"string\"},\"appPlanId\":{\"type\":\"string\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/sites\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}site', + parameters('namePrefix'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"siteConfig\":{\"appSettings\":[{\"name\":\"DOCKER_REGISTRY_SERVER_URL\",\"value\":\"https://index.docker.io\"},{\"name\":\"DOCKER_REGISTRY_SERVER_USERNAME\",\"value\":\"\"},{\"name\":\"DOCKER_REGISTRY_SERVER_PASSWORD\",\"value\":\"\"},{\"name\":\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\"value\":\"false\"}],\"linuxFxVersion\":\"[format('DOCKER|{0}:{1}', + parameters('dockerImage'), parameters('dockerImageTag'))]\"},\"serverFarmId\":\"[parameters('appPlanId')]\"}}],\"outputs\":{\"siteUrl\":{\"type\":\"string\",\"value\":\"[reference(resourceId('Microsoft.Web/sites', + format('{0}site', parameters('namePrefix')))).hostNames[0]]\"}}}},\"dependsOn\":[\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"},{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:36:24.6329286Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:36:24.6329286Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps8692\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4/snapshots/2021-11-15-15-07-37-06804\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T15:06:34.4666682Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T15:07:36.8624014Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc/snapshots/2021-11-15-20-20-18-81368\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:19:17.0338745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:20:18.1175672Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa/snapshots/2021-11-15-20-42-21-f515c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:41:20.4753415Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:42:21.4238094Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl/snapshots/2021-11-15-21-12-24-ad962\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T21:11:23.4123304Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T21:12:24.6476543Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9\",\"parameters\":{\"resourceGroups\":{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun\",\"name\":\"tarun\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"15509277032350500834\"}},\"parameters\":{\"resourceGroups\":{\"type\":\"array\",\"metadata\":{\"description\":\"Resource + Groups definition to deploy resources to.\"}},\"deploymentLocation\":{\"type\":\"string\",\"defaultValue\":\"[deployment().location]\",\"metadata\":{\"description\":\"The + location of the deployment.\"}},\"tags\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"Specify + tags that should be assigned to the deployed resources. Tags are needed for + proper usage and billing handling.\"}},\"solutionVersionTag\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"The + version of this solution in the form of tag. This parameter is specified usually + by lz-deployment-script (deploy.ps1).\"}}},\"functions\":[],\"variables\":{\"allTags\":\"[union(parameters('tags'), + parameters('solutionVersionTag'))]\",\"defaultResourceGroupObject\":{\"tags\":{},\"create\":true,\"alertsScope\":{\"subscriptionId\":\"\",\"resourceGroup\":\"\",\"logAnalyticsWorkspace\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"actionGroups\":[],\"alertRules\":{\"memoryThrashing\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Memory Thrashing has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"memoryThrashingByServerName\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services service logs by server name has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"value_s\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"totalConnectionFailures\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Total Connection Failures has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":15,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":5,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"commandPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Command Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"processingPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Processing Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":2,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"}}}},\"resources\":[{\"condition\":\"[union(variables('defaultResourceGroupObject'), + parameters('resourceGroups')[copyIndex()]).create]\",\"copy\":{\"name\":\"resourceGroupsRes\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2021-04-01\",\"name\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"location\":\"[parameters('resourceGroups')[copyIndex()].location]\",\"tags\":\"[union(variables('allTags'), + union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\",\"properties\":{}},{\"copy\":{\"name\":\"analysisServiceMonResources\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceMonResources-{0}', + copyIndex())]\",\"resourceGroup\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[union(variables('defaultResourceGroupObject'), + parameters('resourceGroups')[copyIndex()])]\"},\"tags\":{\"value\":\"[union(variables('allTags'), + union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"13027831339953017732\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"defaultActionGroupObject\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceAlerts-{0}', + if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name)))]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[parameters('analysisServiceMonitoring')]\"},\"actionGroups\":{\"copy\":[{\"name\":\"value\",\"count\":\"[length(parameters('analysisServiceMonitoring').actionGroups)]\",\"input\":\"[union(variables('defaultActionGroupObject'), + parameters('analysisServiceMonitoring').actionGroups[copyIndex('value')])]\"}]},\"location\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + resourceGroup().location, reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), + 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + '2021-06-01', 'full').location)]\"},\"logAnalyticsWorkspaceResourceId\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + '', extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), + 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name))]\"},\"tags\":{\"value\":\"[parameters('tags')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"1278265623681629574\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"actionGroups\":{\"type\":\"array\"},\"location\":{\"type\":\"string\"},\"logAnalyticsWorkspaceResourceId\":{\"type\":\"string\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"alertRules\":{\"memoryThrashing\":{\"id\":\"2c995c3f-8e42-4eaf-82c2-80b9d443b2dd\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description), + 'This metric shows the average percentage of memory being thrashed from the + RAM of your resource, relative to the total size of RAM in the resource. Note + that this metric is relevant only for Import mode datasets, because they''re + hosting data in memory. This metric does not monitor datasets that are using + DirectQuery or live connection to Analysis Services. When the memory thrashing + keeps exceeding the given threshold, it''s worth investigating the problem + more deeply first, as scaling up is not always the solution for it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"Resource\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"memoryThrashingByServerName\":{\"id\":\"5b9e5597-32c6-4f1a-a984-52aa690ccf5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query), + 'AzureDiagnostics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and OperationName == ''LogMetric''\\r\\n and Category == ''Service''\\r\\n + \ and name_s == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description), + 'This metric shows the average percentage of memory being thrashed from the + RAM of your resource, relative to the total size of RAM in the resource, by + server name. Note that this metric is relevant only for Import mode datasets, + because they''re hosting data in memory. This metric does not monitor datasets + that are using DirectQuery or live connection to Analysis Services. When the + memory thrashing keeps exceeding the given threshold, it''s worth investigating + the problem more deeply first, as scaling up is not always the solution for + it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"_SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"ServerName_s\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"totalConnectionFailures\":{\"id\":\"f9125df9-eb5d-4967-8517-52c68f6f9dd2\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''TotalConnectionFailures''', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description), + 'The average count of failed connection attempts. Set the threshold to an + appropriate value after monitoring and discovering the normal average value + of this metric.', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"commandPoolJobQueueLength\":{\"id\":\"86b2903c-67b2-42a7-8e20-2ba68053cd5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''CommandPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description), + 'Monitors CPU thread utilization related to processing commands. Technically + there are several other types of commands, but when it comes to performance, + ''processing'' is the only one of concern. (the other ''types'' of commands + are things like DDL-ish to add/alter a partition). This particular counter + shows when a (processing) command is waiting on a thread to be allocated from + the command pool\u2026 in other words, if you see a value > 1 here for an + extended period of time, you have a bottleneck. When there is it is very likely + due to Azure AS becomes a junk yard for ''auto-upgraded'' Power BI solutions + w/ auto-refresh capabilities.', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"processingPoolJobQueueLength\":{\"id\":\"a7d45337-19cb-4cb2-b1d9-380bf5cf8970\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''ProcessingPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description), + 'Monitors for Processing Pool Job Queue Length. The processing thread pool + allocates threads for processing the data structures that make up a tabular + model. Same as CommandPoolJobQueueLength a value > 1 for and extended period + of time indicates a bottleneck. This is a much more common place to find a + bottleneck especially in larger models that leverage partitions and parallel + processing.', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]}},\"defaultDimension\":[{\"name\":\"_ResourceId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"resources\":[{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id), + variables('alertRules').memoryThrashing.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.displayName]\",\"description\":\"[variables('alertRules').memoryThrashing.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashing.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').memoryThrashing.dimensions), + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id), + variables('alertRules').memoryThrashingByServerName.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.displayName]\",\"description\":\"[variables('alertRules').memoryThrashingByServerName.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashingByServerName.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').memoryThrashingByServerName.dimensions), + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id), + variables('alertRules').commandPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').commandPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').commandPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').commandPoolJobQueueLength.dimensions), + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id), + variables('alertRules').processingPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').processingPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').processingPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').processingPoolJobQueueLength.dimensions), + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}}]}}}]}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + parameters('resourceGroups')[copyIndex()].name)]\"]}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"tsunkaraneni@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-16T23:17:33.6981155Z\",\"lastModifiedBy\":\"tsunkaraneni@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-16T23:31:28.1053874Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ghImplicit\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp/snapshots/2021-11-17-20-18-26-378e6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:17:25.3276637Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:18:26.5874089Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource + group 'resource-group' could not be found.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:58:13.256519Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:44:40.7588571Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create_checje\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg/snapshots/2021-11-17-21-03-16-860a6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T21:02:09.9177231Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T21:03:16.4615691Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc/snapshots/2021-11-18-20-42-37-e61e7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T20:41:35.3698362Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:42:37.6788971Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription53xmqc\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp/snapshots/2021-11-22-16-13-15-0eef8\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:15.1673603Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:15.1673603Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-hp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt/snapshots/2021-11-18-21-02-19-64f5e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:01:12.9792533Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:02:19.3094872Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g/snapshots/2021-11-18-21-09-35-16ebd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:08:34.3282811Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:09:35.8321305Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g/snapshots/2021-11-19-15-47-39-bcc03\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-19T15:46:36.9976152Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-19T15:47:38.9223058Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2/snapshots/2021-11-22-16-13-37-7052c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:37.2232093Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:37.2232093Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-2\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountType\":{\"type\":\"string\",\"defaultValue\":\"Standard_LRS\",\"allowedValues\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_ZRS\",\"Premium_LRS\"],\"metadata\":{\"description\":\"Storage + Account type\"}},\"location\":{\"type\":\"string\",\"defaultValue\":\"westus\",\"metadata\":{\"description\":\"Location + for all resources.\"}}},\"variables\":{\"storageAccountName\":\"deploymentscopetest\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"apiVersion\":\"2019-06-01\",\"name\":\"[variables('storageAccountName')]\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"[parameters('storageAccountType')]\"},\"kind\":\"StorageV2\",\"properties\":{}}],\"outputs\":{\"storageAccountName\":{\"type\":\"string\",\"value\":\"[variables('storageAccountName')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3bjqIwAIDhd%2fFi7yrlIKLJZAMiCiNnkJUbA7WwlSkgLXiYzLvPbPa%2f%2fpPvc9biBz%2bQtmGz9ecs28ZJGs%2fWs7%2bc92wtCLRoixpT3PJ58RoHPEcdFdhYMjSQnpOuZUIhllWhygtQSWUFFKkSgaaWC6ApGlKXSoVkSRT6oZvIBQ9McAkaOtZVfB5h1o0Dwky44P6je%2f5TYl6ghv0uegKmn%2fsHeJOgJAK4AFAE%2fYAngu%2b%2fWEP6pGtw%2b7ZXmK3%2fb6vvxeApDaZrmJoF6GnfJDd%2fG4d3SLL0mvIm0hzvPd2H2oFY5hQacuqo5UVehmd7SY%2f0tCtOojIp%2fqBVvrq3ep3k53FaKd3GuwIKUnUR65vXGRF6iJvVx%2fFYr47pbYcYYqMt%2bvnSg4c2GC6xs%2bJGD3fNg22g6UaP2s7su21mxvNxcO6DKal8Cpm38x0ZvTMtj%2bqkrXUj2uQl0JMcqnoFrSCvHeplaeZmRpC5Ls2bP8jDocXhe3YPFNeiGD8rcSPbNBhv%2fhUaVeQxzz%2fym5qr5nhGMBHBVAayZL1CrdZDXZ99fX0D\"}" + headers: + cache-control: + - no-cache + content-length: + - '233901' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 60d5c6dd-a206-41a8-a3ac-d6708fca62e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3bjqIwAIDhd%2FFi7yrlIKLJZAMiCiNnkJUbA7WwlSkgLXiYzLvPbPa%2F%2FpPvc9biBz%2BQtmGz9ecs28ZJGs%2FWs7%2Bc92wtCLRoixpT3PJ58RoHPEcdFdhYMjSQnpOuZUIhllWhygtQSWUFFKkSgaaWC6ApGlKXSoVkSRT6oZvIBQ9McAkaOtZVfB5h1o0Dwky44P6je%2F5TYl6ghv0uegKmn%2FsHeJOgJAK4AFAE%2FYAngu%2B%2FWEP6pGtw%2B7ZXmK3%2Fb6vvxeApDaZrmJoF6GnfJDd%2FG4d3SLL0mvIm0hzvPd2H2oFY5hQacuqo5UVehmd7SY%2F0tCtOojIp%2FqBVvrq3ep3k53FaKd3GuwIKUnUR65vXGRF6iJvVx%2FFYr47pbYcYYqMt%2BvnSg4c2GC6xs%2BJGD3fNg22g6UaP2s7su21mxvNxcO6DKal8Cpm38x0ZvTMtj%2BqkrXUj2uQl0JMcqnoFrSCvHeplaeZmRpC5Ls2bP8jDocXhe3YPFNeiGD8rcSPbNBhv%2FhUaVeQxzz%2Fym5qr5nhGMBHBVAayZL1CrdZDXZ99fX0D + response: + body: + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2021-12-10-18-49-05-e0ea7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2021-12-10-18-49-05-e0ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-09T19:25:48.8480893Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-10T18:49:05.606183Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"}]}' + headers: + cache-control: + - no-cache + content-length: + - '74824' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 79f1770f-3db6-4814-9256-3d2d02b70a1b + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml new file mode 100644 index 00000000000..0749add1116 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -0,0 +1,411 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:42.5947596Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:42.5947596Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ff3cef2-a22a-4aaa-aae5-376b29b6f1e2?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ff3cef2-a22a-4aaa-aae5-376b29b6f1e2?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ff3cef2-a22a-4aaa-aae5-376b29b6f1e2\",\r\n + \ \"name\": \"6ff3cef2-a22a-4aaa-aae5-376b29b6f1e2\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-42-0a6bf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2021-12-15-18-06-42-0a6bf\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:42.5947596Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:42.5947596Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:06:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-42-0a6bf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2021-12-15-18-06-42-0a6bf\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:06:42.5947596Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:06:42.5947596Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": + \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2481' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2021-12-15-18-06-42-0a6bf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2021-12-15-18-06-42-0a6bf\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:06:42.5947596Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:06:42.5947596Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml new file mode 100644 index 00000000000..38886e98407 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml @@ -0,0 +1,481 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:02.9274731Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:02.9274731Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eca88751-c6b2-486a-b17c-96a867007b96?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eca88751-c6b2-486a-b17c-96a867007b96?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eca88751-c6b2-486a-b17c-96a867007b96\",\r\n + \ \"name\": \"eca88751-c6b2-486a-b17c-96a867007b96\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-07-02-521ce\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-18-07-02-521ce\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:02.9274731Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:02.9274731Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group list + Connection: + - keep-alive + ParameterSetName: + - --stack-name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-18-07-02-521ce\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:07:02.9274731Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:07:02.9274731Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-07-02-521ce\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-02-521ce\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group list + Connection: + - keep-alive + ParameterSetName: + - --stack + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-18-07-02-521ce\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:07:02.9274731Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:07:02.9274731Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-07-02-521ce\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-02-521ce\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-18-07-02-521ce\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-18-07-02-521ce\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:02.9274731Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:02.9274731Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml new file mode 100644 index 00000000000..a0adbc7541c --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml @@ -0,0 +1,487 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-list-deployment-stack-snapshot-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:06.2062915Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:06.2062915Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff8f16e8-860d-4525-9764-49f7bff8c319?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff8f16e8-860d-4525-9764-49f7bff8c319?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff8f16e8-860d-4525-9764-49f7bff8c319\",\r\n + \ \"name\": \"ff8f16e8-860d-4525-9764-49f7bff8c319\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-06-2e1e4\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-18-07-06-2e1e4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:06.2062915Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:06.2062915Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub list + Connection: + - keep-alive + ParameterSetName: + - --stack-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-18-07-06-2e1e4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:07:06.2062915Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:07:06.2062915Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-06-2e1e4\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-06-2e1e4\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub list + Connection: + - keep-alive + ParameterSetName: + - --stack + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-18-07-06-2e1e4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"foo\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n },\r\n \"bar\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": + \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n + \ \"createdAt\": \"2021-12-15T18:07:06.2062915Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2021-12-15T18:07:06.2062915Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-06-2e1e4\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-06-2e1e4\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-18-07-06-2e1e4\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-18-07-06-2e1e4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:06.2062915Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:06.2062915Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml new file mode 100644 index 00000000000..e80972e1f93 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -0,0 +1,1242 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-list-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:27.9428794Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:27.9428794Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/073050c4-329f-49db-99ea-3470a242119e?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/073050c4-329f-49db-99ea-3470a242119e?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/073050c4-329f-49db-99ea-3470a242119e\",\r\n + \ \"name\": \"073050c4-329f-49db-99ea-3470a242119e\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-28-6da59\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-15-18-07-28-6da59\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:27.9428794Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:27.9428794Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + response: + body: + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable + to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 + 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). + Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', + request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''foo'' + at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', + request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', + request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West + US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The + ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription + for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. + The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","location":"West + US 2","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap/snapshots/2021-09-15-17-56-23-97152","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1/snapshots/2021-09-15-23-48-00-f5e95","updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}},"managedResources":[],"provisioningState":"succeededWithFailures","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One + or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown + error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"[parameters(''rgName'')]","type":"Microsoft.Resources/resourceGroups","apiVersion":"2018-05-01","location":"[parameters(''rgLocation'')]","properties":{}},{"name":"nestedDeployment","type":"Microsoft.Resources/deployments","resourceGroup":"[parameters(''rgName'')]","apiVersion":"2020-06-01","dependsOn":["[parameters(''rgName'')]"],"properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinnewrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentTwo","type":"Microsoft.Resources/deployments","resourceGroup":"filiz-test","apiVersion":"2020-06-01","properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinexistingrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', + ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', + ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', + ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-template-created'' is in deprovisioning state + and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot + perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', + ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', + ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', + ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', + ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', + ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', + ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', + uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', + ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' + does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn + how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHJjqJAAED%2fxWTmVi0Ui9BJZ%2bKC2iL7KhfCUihbgVQJaKf%2ffXoy7%2fySd3hfC4xmei5xTRbvX4tAcVzPWbwvbpT25H25bBOcXFGLMH1LXo8BvWVduySPlGRD2dOyw2SZsGmRiJwACpgWgIcFCyQxFYDES5m44ouMg%2byyH7qxzNFAllqZDR3pCvpmI9I9hgyRZY76pnv%2bqzg0yWryJ%2blLMP7YP4EPyEAWMAJgWNAPaCzR9JvUZe92NcIfR558rv%2bjrI%2fQdmGcWJvdfuSp3K%2bzq7Xpz8ejuKKktrZ7Md3vGntXWc2aCzdiBWxV6QDi0Am2JiY7cyUMkHPl%2b6oBtxDCyfDsE%2bvUrUvFQuKvj%2fO4qXKd5j18BPL8MPhwm8hoj5NeL%2bjcnGRnvM%2fRJ631zdN4tTqWoGUJvK8zqhzb%2fpb3ZmNfctJVBZX5skwX%2b2Dl38tMCbP6Dvn9E8x5OgWPtXjo1dLcnDS9Nozj1bHF2UCTvHudmvY6mm0zKJeIiS6u6GxtVWPNm%2btlWG%2fr8NxGPSCqxA5Opci7QL40aYqtNF%2fDeZ7cRMmZUPd0TW%2bkz%2ftqm29dieWk7jjC6C508LASxLS1a90IGDEdoiJAeGAOrH03ntOhVU2%2b0E44yiLfOQjB60AQm0vt2ct1LGDPrLax6lOIzafmucOkMVfNee1fgq3iStVM5hKzlpvb0u1Mc6CYZnoqzLi9ISGNqXgO2ZjEVeCndJw2P1t%2fcfni%2b%2fsv"}' + headers: + cache-control: + - no-cache + content-length: + - '241499' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - ad9bb914-a4db-401f-bf7e-cf03b05afd69 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHJjqJAAED%2FxWTmVi0Ui9BJZ%2BKC2iL7KhfCUihbgVQJaKf%2FfXoy7%2FySd3hfC4xmei5xTRbvX4tAcVzPWbwvbpT25H25bBOcXFGLMH1LXo8BvWVduySPlGRD2dOyw2SZsGmRiJwACpgWgIcFCyQxFYDES5m44ouMg%2ByyH7qxzNFAllqZDR3pCvpmI9I9hgyRZY76pnv%2Bqzg0yWryJ%2BlLMP7YP4EPyEAWMAJgWNAPaCzR9JvUZe92NcIfR558rv%2BjrI%2FQdmGcWJvdfuSp3K%2Bzq7Xpz8ejuKKktrZ7Md3vGntXWc2aCzdiBWxV6QDi0Am2JiY7cyUMkHPl%2B6oBtxDCyfDsE%2BvUrUvFQuKvj%2FO4qXKd5j18BPL8MPhwm8hoj5NeL%2BjcnGRnvM%2FRJ631zdN4tTqWoGUJvK8zqhzb%2Fpb3ZmNfctJVBZX5skwX%2B2Dl38tMCbP6Dvn9E8x5OgWPtXjo1dLcnDS9Nozj1bHF2UCTvHudmvY6mm0zKJeIiS6u6GxtVWPNm%2BtlWG%2Fr8NxGPSCqxA5Opci7QL40aYqtNF%2FDeZ7cRMmZUPd0TW%2Bkz%2Ftqm29dieWk7jjC6C508LASxLS1a90IGDEdoiJAeGAOrH03ntOhVU2%2B0E44yiLfOQjB60AQm0vt2ct1LGDPrLax6lOIzafmucOkMVfNee1fgq3iStVM5hKzlpvb0u1Mc6CYZnoqzLi9ISGNqXgO2ZjEVeCndJw2P1t%2Fcfni%2B%2Fsv + response: + body: + string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D\"},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:50:04.0885604Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:50:04.0885604Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf_pu\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf/snapshots/2021-09-17-19-51-01-adde5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:51:00.3893514Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:51:00.3893514Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf-pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf/snapshots/2021-09-17-19-53-29-35b3d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:53:28.4521693Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:53:28.4521693Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu/snapshots/2021-09-17-19-56-23-1b2bc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john + doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D\"},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:54:42.7520085Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:56:22.212836Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pu\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"parameters\":{\"adVnetName\":{\"value\":\"ad-vnet\"},\"adVnetSubscriptionId\":{\"value\":\"ec0f79d3-16f0-4892-8165-f569a92c8273\"},\"dnsServerPrivateIp\":{\"value\":\"10.0.0.4\"},\"adminUsername\":{\"value\":\"bmoore\"},\"adSubnetName\":{\"value\":\"ad-vnet-subnet\"},\"adDomainName\":{\"value\":\"corp.mydomain.com\"},\"adVnetRG\":{\"value\":\"aad-stack\"},\"adminPassword\":{\"reference\":{\"keyVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo\"},\"secretName\":\"adminPass\"}}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"dnsLabelPrefix\":{\"type\":\"string\",\"defaultValue\":\"[concat('rds-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"Unique + public DNS prefix for the deployment. The fqdn will look something like '.westus.cloudapp.azure.com'. + Up to 62 chars, digits or dashes, lowercase, should start with a letter: must + conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result + the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb\"}},\"adDomainName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + name of the AD domain. For example contoso.com\"}},\"adVnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + vnet name of AD domain. For example johnvnet1\"}},\"adVnetRG\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + Resource Group containing the existing Virtual Network resource\"}},\"adVnetSubscriptionId\":{\"type\":\"string\",\"defaultValue\":\"[subscription().subscriptionId]\",\"metadata\":{\"description\":\"The + subscription containing the existing Virtual Network resource\"}},\"adSubnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + subnet name of AD domain\"}},\"dnsServerPrivateIp\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + private IP address of the ad dns server\"}},\"adminUsername\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. + For example johnadmin\"}},\"adminPassword\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The + password for the administrator account of the new VM and the domain\"}},\"imageSKU\":{\"type\":\"string\",\"allowedValues\":[\"2012-R2-Datacenter\",\"2016-Datacenter\",\"2019-Datacenter\",\"2022-datacenter\"],\"metadata\":{\"description\":\"Windows + server SKU\"},\"defaultValue\":\"2019-Datacenter\"},\"numberOfRdshInstances\":{\"type\":\"int\",\"defaultValue\":1,\"metadata\":{\"description\":\"Number + of RemoteDesktopSessionHosts\"}},\"rdshVmSize\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + size of the RDSH VMs\"},\"defaultValue\":\"Standard_D4s_v3\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\",\"metadata\":{\"description\":\"Location + for all resources.\"}},\"_artifactsLocation\":{\"type\":\"string\",\"metadata\":{\"description\":\"The + base URI where artifacts required by this template are located. When the template + is deployed using the accompanying scripts, a private location in the subscription + will be used and this value will be automatically generated.\"},\"defaultValue\":\"[deployment().properties.templateLink.uri]\"},\"_artifactsLocationSasToken\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The + sasToken required to access _artifactsLocation. When the template is deployed + using the accompanying scripts, a sasToken will be automatically generated.\"},\"defaultValue\":\"\"},\"gatewayIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('gwd-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name + for the gateway, must be globally unique.\"}},\"connBrokerIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('cbd-', + uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name + for the connection broker, must be globally unique.\"}},\"rdshNamingPrefix\":{\"type\":\"string\",\"defaultValue\":\"rdsh-\",\"maxLength\":16,\"metadata\":{\"description\":\"Naming + prefix for the RDS Host VMs and resources\"}}},\"variables\":{\"imagePublisher\":\"MicrosoftWindowsServer\",\"imageOffer\":\"WindowsServer\",\"subnet-id\":\"[resourceId(parameters('adVnetSubscriptionId'), + parameters('adVnetRG'),'Microsoft.Network/virtualNetworks/subnets', parameters('adVnetName'), + parameters('adSubnetName'))]\",\"publicIpAddressName\":\"publicIp\",\"gatewayPublicIpAddressName\":\"gatewayPublicIp\",\"brokerPublicIpAddressName\":\"brokerPublicIp\"},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('publicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('dnsLabelPrefix')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('gatewayPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('gatewayIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('brokerPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('connBrokerIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"gw-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"cb-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + 'availabilityset')]\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/loadBalancers\",\"name\":\"loadBalancer\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('publicIpAddressName'))]\"],\"properties\":{\"frontendIPConfigurations\":[{\"name\":\"LBFE\",\"properties\":{\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('publicIpAddressName'))]\"}}}],\"backendAddressPools\":[{\"name\":\"LBBAP\"}],\"loadBalancingRules\":[{\"name\":\"LBRule01\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', + 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools/', + 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Tcp\",\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', + 'loadbalancer', 'tcpProbe')]\"}}},{\"name\":\"LBRule02\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', + 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools', + 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Udp\",\"frontendPort\":3391,\"backendPort\":3391,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', + 'loadbalancer', 'tcpProbe')]\"}}}],\"probes\":[{\"name\":\"tcpProbe\",\"properties\":{\"protocol\":\"Tcp\",\"port\":443,\"intervalInSeconds\":5,\"numberOfProbes\":2}},{\"name\":\"tcpProbe01\",\"properties\":{\"protocol\":\"Tcp\",\"port\":3391,\"intervalInSeconds\":5,\"numberOfProbes\":2}}],\"inboundNatRules\":[{\"name\":\"rdp\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations','loadBalancer','LBFE')]\"},\"protocol\":\"Tcp\",\"frontendPort\":3389,\"backendPort\":3389,\"enableFloatingIP\":false}}]}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"gw-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses',variables('gatewayPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools','loadBalancer', + 'LBBAP')]\"}],\"loadBalancerInboundNatRules\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/inboundNatRules','loadBalancer', + 'rdp')]\"}]}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"cb-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', + variables('brokerPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex(), '-nic')]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-nic-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', + 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"gw-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + 'gw-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', + 'gw-nic')]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + 'gw-availabilityset')]\"},\"osProfile\":{\"computerName\":\"gateway\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"gw_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','gw-nic')]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"extensions\",\"name\":\"gateway\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + 'gw-vm')]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\Gateway\",\"properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex())]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-vm-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\",\"[resourceId('Microsoft.Network/networkInterfaces', + concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\"},\"osProfile\":{\"computerName\":\"[concat(parameters('rdshNamingPrefix'), + copyIndex())]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyIndex(),'-OSDisk')]\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces', + concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('rdshNamingPrefix'), + copyindex(),'/sessionhost')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + concat(parameters('rdshNamingPrefix'), copyindex()))]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\SessionHost\",\"Properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"cb-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', + 'cb-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', + 'cb-nic')]\",\"rdsh-vm-loop\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', + 'cb-availabilityset')]\"},\"osProfile\":{\"computerName\":\"broker\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"cb_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','cb-nic')]\"}]}}},{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"cb-vm/rdsdeployment\",\"apiVersion\":\"2020-06-01\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', + 'cb-vm')]\",\"[resourceId('Microsoft.Compute/virtualMachines/extensions', + 'gw-vm', 'gateway')]\",\"rdsh-vm-loop\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', + parameters('_artifactsLocationSasToken')))]\",\"configurationFunction\":\"Configuration.ps1\\\\RDSDeployment\",\"properties\":{\"adminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:adminPassword\"},\"connectionBroker\":\"[concat('broker.',parameters('adDomainName'))]\",\"domainName\":\"[parameters('adDomainName')]\",\"externalfqdn\":\"[reference(variables('gatewayPublicIpAddressName')).dnsSettings.fqdn]\",\"numberOfRdshInstances\":\"[parameters('numberOfRdshInstances')]\",\"sessionHostNamingPrefix\":\"[parameters('rdshNamingPrefix')]\",\"webAccessServer\":\"[concat('gateway.',parameters('adDomainName'))]\"}},\"protectedSettings\":{\"Items\":{\"adminPassword\":\"[parameters('adminPassword')]\"}}}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplate\",\"message\":\"Deployment + template validation failed: 'The template resource 'dnsLabelPrefix' at line + '8' and column '27' is not valid: The template function 'RESOURCEGROUP' is + not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.'.\",\"details\":[],\"additionalInfo\":[{\"type\":\"TemplateViolation\",\"info\":{\"lineNumber\":8,\"linePosition\":27,\"path\":\"properties.template.parameters.dnsLabelPrefix\"}}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T22:00:21.3463894Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T22:00:21.3463894Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"filiz-test-stack9\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"AuthorizationFailed\",\"message\":\"The + client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' + does not have authorization to perform action 'Microsoft.Resources/deployments/write' + over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope + is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The + template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:37:19.2142448Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:37:19.2142448Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create/snapshots/2021-11-17-20-45-56-90d18\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T14:25:40.0202065Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:45:56.782397Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The + template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', + format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', + variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + 'appPlanDeploy'), '2020-06-01').outputs.planId.value]\"},\"namePrefix\":{\"value\":\"[variables('websites')[copyIndex()].name]\"},\"dockerImage\":{\"value\":\"nginxdemos/hello\"},\"dockerImageTag\":{\"value\":\"[variables('websites')[copyIndex()].tag]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"17373956428318857886\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\"},\"dockerImage\":{\"type\":\"string\"},\"dockerImageTag\":{\"type\":\"string\"},\"appPlanId\":{\"type\":\"string\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/sites\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}site', + parameters('namePrefix'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"siteConfig\":{\"appSettings\":[{\"name\":\"DOCKER_REGISTRY_SERVER_URL\",\"value\":\"https://index.docker.io\"},{\"name\":\"DOCKER_REGISTRY_SERVER_USERNAME\",\"value\":\"\"},{\"name\":\"DOCKER_REGISTRY_SERVER_PASSWORD\",\"value\":\"\"},{\"name\":\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\"value\":\"false\"}],\"linuxFxVersion\":\"[format('DOCKER|{0}:{1}', + parameters('dockerImage'), parameters('dockerImageTag'))]\"},\"serverFarmId\":\"[parameters('appPlanId')]\"}}],\"outputs\":{\"siteUrl\":{\"type\":\"string\",\"value\":\"[reference(resourceId('Microsoft.Web/sites', + format('{0}site', parameters('namePrefix')))).hostNames[0]]\"}}}},\"dependsOn\":[\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', + format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"},{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West + US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:36:24.6329286Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:36:24.6329286Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps8692\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4/snapshots/2021-11-15-15-07-37-06804\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T15:06:34.4666682Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T15:07:36.8624014Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc/snapshots/2021-11-15-20-20-18-81368\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:19:17.0338745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:20:18.1175672Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa/snapshots/2021-11-15-20-42-21-f515c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:41:20.4753415Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:42:21.4238094Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl/snapshots/2021-11-15-21-12-24-ad962\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T21:11:23.4123304Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T21:12:24.6476543Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9\",\"parameters\":{\"resourceGroups\":{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun\",\"name\":\"tarun\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"15509277032350500834\"}},\"parameters\":{\"resourceGroups\":{\"type\":\"array\",\"metadata\":{\"description\":\"Resource + Groups definition to deploy resources to.\"}},\"deploymentLocation\":{\"type\":\"string\",\"defaultValue\":\"[deployment().location]\",\"metadata\":{\"description\":\"The + location of the deployment.\"}},\"tags\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"Specify + tags that should be assigned to the deployed resources. Tags are needed for + proper usage and billing handling.\"}},\"solutionVersionTag\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"The + version of this solution in the form of tag. This parameter is specified usually + by lz-deployment-script (deploy.ps1).\"}}},\"functions\":[],\"variables\":{\"allTags\":\"[union(parameters('tags'), + parameters('solutionVersionTag'))]\",\"defaultResourceGroupObject\":{\"tags\":{},\"create\":true,\"alertsScope\":{\"subscriptionId\":\"\",\"resourceGroup\":\"\",\"logAnalyticsWorkspace\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"actionGroups\":[],\"alertRules\":{\"memoryThrashing\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Memory Thrashing has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"memoryThrashingByServerName\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services service logs by server name has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"value_s\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"totalConnectionFailures\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Total Connection Failures has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":15,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":5,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"commandPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Command Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"processingPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure + Analysis Services Processing Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":2,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"}}}},\"resources\":[{\"condition\":\"[union(variables('defaultResourceGroupObject'), + parameters('resourceGroups')[copyIndex()]).create]\",\"copy\":{\"name\":\"resourceGroupsRes\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2021-04-01\",\"name\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"location\":\"[parameters('resourceGroups')[copyIndex()].location]\",\"tags\":\"[union(variables('allTags'), + union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\",\"properties\":{}},{\"copy\":{\"name\":\"analysisServiceMonResources\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceMonResources-{0}', + copyIndex())]\",\"resourceGroup\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[union(variables('defaultResourceGroupObject'), + parameters('resourceGroups')[copyIndex()])]\"},\"tags\":{\"value\":\"[union(variables('allTags'), + union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"13027831339953017732\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"defaultActionGroupObject\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceAlerts-{0}', + if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + uniqueString(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name)))]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[parameters('analysisServiceMonitoring')]\"},\"actionGroups\":{\"copy\":[{\"name\":\"value\",\"count\":\"[length(parameters('analysisServiceMonitoring').actionGroups)]\",\"input\":\"[union(variables('defaultActionGroupObject'), + parameters('analysisServiceMonitoring').actionGroups[copyIndex('value')])]\"}]},\"location\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + resourceGroup().location, reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), + 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + '2021-06-01', 'full').location)]\"},\"logAnalyticsWorkspaceResourceId\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), + '', extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, + parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), + 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name))]\"},\"tags\":{\"value\":\"[parameters('tags')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"1278265623681629574\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"actionGroups\":{\"type\":\"array\"},\"location\":{\"type\":\"string\"},\"logAnalyticsWorkspaceResourceId\":{\"type\":\"string\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"alertRules\":{\"memoryThrashing\":{\"id\":\"2c995c3f-8e42-4eaf-82c2-80b9d443b2dd\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description), + 'This metric shows the average percentage of memory being thrashed from the + RAM of your resource, relative to the total size of RAM in the resource. Note + that this metric is relevant only for Import mode datasets, because they''re + hosting data in memory. This metric does not monitor datasets that are using + DirectQuery or live connection to Analysis Services. When the memory thrashing + keeps exceeding the given threshold, it''s worth investigating the problem + more deeply first, as scaling up is not always the solution for it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"Resource\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"memoryThrashingByServerName\":{\"id\":\"5b9e5597-32c6-4f1a-a984-52aa690ccf5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query), + 'AzureDiagnostics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and OperationName == ''LogMetric''\\r\\n and Category == ''Service''\\r\\n + \ and name_s == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description), + 'This metric shows the average percentage of memory being thrashed from the + RAM of your resource, relative to the total size of RAM in the resource, by + server name. Note that this metric is relevant only for Import mode datasets, + because they''re hosting data in memory. This metric does not monitor datasets + that are using DirectQuery or live connection to Analysis Services. When the + memory thrashing keeps exceeding the given threshold, it''s worth investigating + the problem more deeply first, as scaling up is not always the solution for + it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"_SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"ServerName_s\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"totalConnectionFailures\":{\"id\":\"f9125df9-eb5d-4967-8517-52c68f6f9dd2\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''TotalConnectionFailures''', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description), + 'The average count of failed connection attempts. Set the threshold to an + appropriate value after monitoring and discovering the normal average value + of this metric.', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"commandPoolJobQueueLength\":{\"id\":\"86b2903c-67b2-42a7-8e20-2ba68053cd5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''CommandPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description), + 'Monitors CPU thread utilization related to processing commands. Technically + there are several other types of commands, but when it comes to performance, + ''processing'' is the only one of concern. (the other ''types'' of commands + are things like DDL-ish to add/alter a partition). This particular counter + shows when a (processing) command is waiting on a thread to be allocated from + the command pool\u2026 in other words, if you see a value > 1 here for an + extended period of time, you have a bottleneck. When there is it is very likely + due to Azure AS becomes a junk yard for ''auto-upgraded'' Power BI solutions + w/ auto-refresh capabilities.', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"processingPoolJobQueueLength\":{\"id\":\"a7d45337-19cb-4cb2-b1d9-380bf5cf8970\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query), + 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n + \ and MetricName == ''ProcessingPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description), + 'Monitors for Processing Pool Job Queue Length. The processing thread pool + allocates threads for processing the data structures that make up a tabular + model. Same as CommandPoolJobQueueLength a value > 1 for and extended period + of time indicates a bottleneck. This is a much more common place to find a + bottleneck especially in larger models that leverage partitions and parallel + processing.', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]}},\"defaultDimension\":[{\"name\":\"_ResourceId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"resources\":[{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id), + variables('alertRules').memoryThrashing.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.displayName]\",\"description\":\"[variables('alertRules').memoryThrashing.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashing.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').memoryThrashing.dimensions), + parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id), + variables('alertRules').memoryThrashingByServerName.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.displayName]\",\"description\":\"[variables('alertRules').memoryThrashingByServerName.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashingByServerName.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').memoryThrashingByServerName.dimensions), + parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id), + variables('alertRules').commandPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').commandPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').commandPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').commandPoolJobQueueLength.dimensions), + parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id), + variables('alertRules').processingPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').processingPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes, + 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), + format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), + subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, + 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), + parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').processingPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), + '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions), + union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), + variables('defaultDimension')), variables('alertRules').processingPoolJobQueueLength.dimensions), + parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', + parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), + 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}}]}}}]}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', + parameters('resourceGroups')[copyIndex()].name)]\"]}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"tsunkaraneni@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-16T23:17:33.6981155Z\",\"lastModifiedBy\":\"tsunkaraneni@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-16T23:31:28.1053874Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ghImplicit\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp/snapshots/2021-11-17-20-18-26-378e6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:17:25.3276637Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:18:26.5874089Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource + group 'resource-group' could not be found.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:58:13.256519Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:44:40.7588571Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create_checje\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg/snapshots/2021-11-17-21-03-16-860a6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T21:02:09.9177231Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T21:03:16.4615691Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc/snapshots/2021-11-18-20-42-37-e61e7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T20:41:35.3698362Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:42:37.6788971Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription53xmqc\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp/snapshots/2021-11-22-16-13-15-0eef8\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:15.1673603Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:15.1673603Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-hp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt/snapshots/2021-11-18-21-02-19-64f5e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:01:12.9792533Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:02:19.3094872Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g/snapshots/2021-11-18-21-09-35-16ebd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:08:34.3282811Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:09:35.8321305Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g/snapshots/2021-11-19-15-47-39-bcc03\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-19T15:46:36.9976152Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-19T15:47:38.9223058Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2/snapshots/2021-11-22-16-13-37-7052c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:37.2232093Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:37.2232093Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-2\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountType\":{\"type\":\"string\",\"defaultValue\":\"Standard_LRS\",\"allowedValues\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_ZRS\",\"Premium_LRS\"],\"metadata\":{\"description\":\"Storage + Account type\"}},\"location\":{\"type\":\"string\",\"defaultValue\":\"westus\",\"metadata\":{\"description\":\"Location + for all resources.\"}}},\"variables\":{\"storageAccountName\":\"deploymentscopetest\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"apiVersion\":\"2019-06-01\",\"name\":\"[variables('storageAccountName')]\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"[parameters('storageAccountType')]\"},\"kind\":\"StorageV2\",\"properties\":{}}],\"outputs\":{\"storageAccountName\":{\"type\":\"string\",\"value\":\"[variables('storageAccountName')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One + or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The + Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc1db6owAIDh%2f8LFuatAQVCT5QQFlCFOVObcjQEsWPkotnyULvvv28l5r9%2fk%2bZJqxNstrgsmLb6ks3M8RUdpId3btmELWa7iOs5Rhep2EouOoklKKpl1CUspblpMaibHapLFhjYFGUwyoMNMBTMjmYKZPksNU89SDapyQ0mPb4gyOcApJYxk7eSAGOloiph8Q01Jxn%2fKsY3Tgv2NGwz63%2fsXeIEKVIEyBYoKGop6jIY%2frMDNiRSoftnozLP%2b51gbdT9CcxUs7Zl7Zd5S79beivO1zeDtXLnHyC%2bjPgqjJPR9Z%2fMMFega25tWDPN8LjyhMMH60nTUa6nEXnQmghfgeRUzDbEs4hr98EurWk7dofssNYLHuXjid290g2uQlz292c3uU3t99JFRPNTYflD4moRrrxqctdVd7DCHl%2b3ZP7zNL%2bjD3elu97zz9fT%2bXt%2bDYLVP88H3hJ0N%2bBTUwxbknghWTCcj5njwDJ47ZlCYHRV5yfARLq%2bIMHECB5AnkOv73j1veLQ9QKcnuDL7ednEhbHs6JvGOe8Tc26JcDcmEbFCy5K%2bv38A\"}" + headers: + cache-control: + - no-cache + content-length: + - '233897' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - d0d3719a-577d-4f92-af78-475b2ab60b28 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc1db6owAIDh%2F8LFuatAQVCT5QQFlCFOVObcjQEsWPkotnyULvvv28l5r9%2Fk%2BZJqxNstrgsmLb6ks3M8RUdpId3btmELWa7iOs5Rhep2EouOoklKKpl1CUspblpMaibHapLFhjYFGUwyoMNMBTMjmYKZPksNU89SDapyQ0mPb4gyOcApJYxk7eSAGOloiph8Q01Jxn%2FKsY3Tgv2NGwz63%2FsXeIEKVIEyBYoKGop6jIY%2FrMDNiRSoftnozLP%2B51gbdT9CcxUs7Zl7Zd5S79beivO1zeDtXLnHyC%2BjPgqjJPR9Z%2FMMFega25tWDPN8LjyhMMH60nTUa6nEXnQmghfgeRUzDbEs4hr98EurWk7dofssNYLHuXjid290g2uQlz292c3uU3t99JFRPNTYflD4moRrrxqctdVd7DCHl%2B3ZP7zNL%2BjD3elu97zz9fT%2BXt%2BDYLVP88H3hJ0N%2BBTUwxbknghWTCcj5njwDJ47ZlCYHRV5yfARLq%2BIMHECB5AnkOv73j1veLQ9QKcnuDL7ednEhbHs6JvGOe8Tc26JcDcmEbFCy5K%2Bv38A + response: + body: + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2021-12-10-18-49-05-e0ea7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2021-12-10-18-49-05-e0ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-09T19:25:48.8480893Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-10T18:49:05.606183Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-07-30-9b8e2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-07-30-9b8e2","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:07:30.0637018Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-28-6da59","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-15-18-07-28-6da59","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:27.9428794Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:07:27.9428794Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionnp6zk5gtcnnixzz/snapshots/2021-12-15-18-07-32-7f83c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-18-07-32-7f83c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:31.9855495Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:07:31.9855495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionnp6zk5gtcnnixzz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionnp6zk5gtcnnixzz"}]}' + headers: + cache-control: + - no-cache + content-length: + - '78010' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 8a76f1cd-1b69-4fcc-90ee-675dcc18a74c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-28-6da59\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-15-18-07-28-6da59\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:27.9428794Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:27.9428794Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml new file mode 100644 index 00000000000..77ada4cf6f7 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -0,0 +1,471 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9986136Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9986136Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/18a36c3e-b2c0-4faf-b325-03d39fe5148d?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/18a36c3e-b2c0-4faf-b325-03d39fe5148d?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/18a36c3e-b2c0-4faf-b325-03d39fe5148d\",\r\n + \ \"name\": \"18a36c3e-b2c0-4faf-b325-03d39fe5148d\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-18-07-32-c5bfb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-18-07-32-c5bfb\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9986136Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9986136Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-18-07-32-c5bfb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-18-07-32-c5bfb\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9986136Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9986136Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group show + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-18-07-32-c5bfb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-18-07-32-c5bfb\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9986136Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9986136Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-18-07-32-c5bfb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-18-07-32-c5bfb\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:31.9986136Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:31.9986136Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:07:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml new file mode 100644 index 00000000000..df11418d803 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml @@ -0,0 +1,475 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '383' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '576' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:08:37.8494963Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:37.8494963Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f30f0ccd-c726-4b05-980e-df5d571269cf?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1664' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f30f0ccd-c726-4b05-980e-df5d571269cf?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f30f0ccd-c726-4b05-980e-df5d571269cf\",\r\n + \ \"name\": \"f30f0ccd-c726-4b05-980e-df5d571269cf\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-18-08-37-d5996\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-18-08-37-d5996\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:08:37.8494963Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:37.8494963Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group show + Connection: + - keep-alive + ParameterSetName: + - --stack-name --name --resource-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-18-08-37-d5996?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-18-08-37-d5996\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:08:37.8494963Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:37.8494963Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-18-08-37-d5996\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-08-37-d5996\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2033' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot group show + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-18-08-37-d5996?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-18-08-37-d5996\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:08:37.8494963Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:37.8494963Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-18-08-37-d5996\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-08-37-d5996\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2033' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-18-08-37-d5996\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-18-08-37-d5996\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:08:37.8494963Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:08:37.8494963Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2244' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:08:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml new file mode 100644 index 00000000000..8aea64c67f6 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml @@ -0,0 +1,481 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:52.745197Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:52.745197Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9defc38-7a77-4053-8651-9d077ce69437?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1676' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9defc38-7a77-4053-8651-9d077ce69437?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9defc38-7a77-4053-8651-9d077ce69437\",\r\n + \ \"name\": \"c9defc38-7a77-4053-8651-9d077ce69437\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-53-e4298\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-53-e4298\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:52.745197Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:52.745197Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2074' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub show + Connection: + - keep-alive + ParameterSetName: + - --name --stack-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-53-e4298?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-53-e4298\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:52.745197Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:52.745197Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-53-e4298\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-53-e4298\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1928' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack snapshot sub show + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-53-e4298?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-53-e4298\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:52.745197Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:52.745197Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-53-e4298\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": + \"2021-12-15-18-07-53-e4298\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1928' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-53-e4298\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-53-e4298\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:52.745197Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:52.745197Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2074' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:08:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml new file mode 100644 index 00000000000..a08f8048441 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -0,0 +1,479 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '208' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '673' + Content-Type: + - application/json + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": + \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:55.7553265Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:55.7553265Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f630488-80c1-4754-8899-e38233186650?api-version=2021-05-01-preview + cache-control: + - no-cache + content-length: + - '1678' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:07:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f630488-80c1-4754-8899-e38233186650?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f630488-80c1-4754-8899-e38233186650\",\r\n + \ \"name\": \"0f630488-80c1-4754-8899-e38233186650\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --update-behavior --template-file --parameters + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-56-acad5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-56-acad5\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:55.7553265Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:55.7553265Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub show + Connection: + - keep-alive + ParameterSetName: + - --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-56-acad5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-56-acad5\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:55.7553265Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:55.7553265Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub show + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-56-acad5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-56-acad5\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:55.7553265Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:55.7553265Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-18-07-56-acad5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-18-07-56-acad5\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": + \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T18:07:55.7553265Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T18:07:55.7553265Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Dec 2021 18:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.0 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 From 350a043bb1e5db614adfc1a08566ed46c53d55e1 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 21 Dec 2021 17:42:05 -0500 Subject: [PATCH 048/139] Handled index out of bounds [tested] --- .../azure/cli/command_modules/resource/custom.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 1693b5e40e2..cbdf6c72e5c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2249,6 +2249,8 @@ def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, return rcf.deployment_stacks.get_at_resource_group(resource_group, name) if id: stack_arr = id.split('/') + if len(stack_arr) < 5: + raise InvalidArgumentValueError("Please enter a valid id") return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") @@ -2270,6 +2272,8 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) if id: stack_arr = id.split('/') + if len(stack_arr) < 5: + raise InvalidArgumentValueError("Please enter a valid id") name = stack_arr[-1] stack_rg = stack_arr[-5] try: @@ -2284,6 +2288,8 @@ def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=No rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if id: snapshot_arr = id.split('/') + if len(snapshot_arr) < 3: + raise InvalidArgumentValueError("Please enter a valid id") return rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name: return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) @@ -2294,6 +2300,8 @@ def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name= rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if id: snapshot_arr = id.split('/') + if len(snapshot_arr) < 5: + raise InvalidArgumentValueError("Please enter a valid id") return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) if name and stack_name and resource_group: return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) @@ -2313,6 +2321,8 @@ def list_deployment_stack_snapshot_at_resource_group(cmd, stack_name=None, resou rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if stack: stack_arr = stack.split('/') + if len(stack_arr) < 5: + raise InvalidArgumentValueError("Please enter a valid id") return rcf.deployment_stack_snapshots.list_at_resource_group(stack_arr[4], stack_arr[-1]) if stack_name and resource_group: return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, stack_name) From 004695d13584f5ec2a080a7859f948bef50affb4 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 14 Jan 2022 13:09:35 -0500 Subject: [PATCH 049/139] Added flag for versioning --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 29e047ef21d..16aa9a60aa0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2592,7 +2592,7 @@ helps['stack sub list'] = """ type: command -short-summary: List all deployment stacks in subscription +short-summary: V4 List all deployment stacks in subscription examples: - name: List all stacks text: az stack sub list From 833ff69ae65e0b22ab4d15647b314688fcb7ba49 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 21 Jan 2022 12:51:46 -0500 Subject: [PATCH 050/139] Fixed some errors that Brian found --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 6 ++++-- src/azure-cli/azure/cli/command_modules/resource/_params.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 16aa9a60aa0..691cd48717b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2579,7 +2579,7 @@ short-summary: Create a deployment stack at subscription scope examples: - name: Create a deployment stack using template file. - text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description" + text: az stack sub create --name "StackName" c --template-file simpleTemplate.json --location "westus2" --description "description" - name: Create a deployment stack with parameter file. text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - name: Create a deployment stack with template spec @@ -2588,6 +2588,8 @@ text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" - name: Create a deployment stack at a different subscription. text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" + - name: Create a deployment stack and deploy at the resource group scope. + text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --resource-group "ResourceGroup" --description "description" """ helps['stack sub list'] = """ @@ -2631,7 +2633,7 @@ - name: Create a deployment stack using bicep file. text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" - name: Create a deployment stack at a different subscription - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" """ helps['stack group list'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 8dfbf0a0a20..01d4f047d5f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -644,7 +644,7 @@ def load_arguments(self, _): with self.argument_context('stack sub create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The resource group where the deployment stack will be created.') + c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) From 2c9a163caa18ffcd370e171f5608bd65a55d2cbe Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 21 Jan 2022 13:15:25 -0500 Subject: [PATCH 051/139] Added versioning --- .../cli/command_modules/resource/_help.py | 2 +- ...reate_deployment_stack_resource_group.yaml | 356 +++++++++--------- ..._create_deployment_stack_subscription.yaml | 286 +++++++------- ...elete_deployment_stack_resource_group.yaml | 156 ++++---- ...loyment_stack_snapshot_resource_group.yaml | 260 ++++++------- ...eployment_stack_snapshot_subscription.yaml | 304 +++++++-------- ..._delete_deployment_stack_subscription.yaml | 208 +++++----- ..._list_deployment_stack_resource_group.yaml | 76 ++-- ...loyment_stack_snapshot_resource_group.yaml | 92 ++--- ...eployment_stack_snapshot_subscription.yaml | 92 ++--- ...st_list_deployment_stack_subscription.yaml | 102 ++--- ..._show_deployment_stack_resource_group.yaml | 88 ++--- ...loyment_stack_snapshot_resource_group.yaml | 96 ++--- ...eployment_stack_snapshot_subscription.yaml | 100 ++--- ...st_show_deployment_stack_subscription.yaml | 88 ++--- 15 files changed, 1144 insertions(+), 1162 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 691cd48717b..678f2feeb33 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2594,7 +2594,7 @@ helps['stack sub list'] = """ type: command -short-summary: V4 List all deployment stacks in subscription +short-summary: V5 List all deployment stacks in subscription examples: - name: List all stacks text: az stack sub list diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index 3121dc12f1c..a03c19cfffc 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '353' + - '278' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:50 GMT + - Fri, 21 Jan 2022 17:52:48 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -69,11 +69,11 @@ interactions: cache-control: - no-cache content-length: - - '341' + - '266' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:50 GMT + - Fri, 21 Jan 2022 17:52:48 GMT expires: - '-1' pragma: @@ -105,27 +105,27 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:52.815203Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:50.0964568Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:52.815203Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:50.0964568Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '632' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:53 GMT + - Fri, 21 Jan 2022 17:52:50 GMT expires: - '-1' pragma: @@ -165,7 +165,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:55.3002462Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:51.3965262Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:55.3002462Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:51.3965262Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -193,11 +193,11 @@ interactions: cache-control: - no-cache content-length: - - '1553' + - '1478' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:55 GMT + - Fri, 21 Jan 2022 17:52:51 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -239,11 +239,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '333' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:56 GMT + - Fri, 21 Jan 2022 17:52:52 GMT expires: - '-1' pragma: @@ -281,7 +281,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -300,22 +300,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:57.0692694Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.735649Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:57.0692694Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.735649Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2530ad42-be61-42de-8f04-cacefe0e2fcf?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d73cf333-8f7b-47ce-990e-64c7f6e58323?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1605' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:57 GMT + - Fri, 21 Jan 2022 17:52:52 GMT expires: - '-1' pragma: @@ -345,13 +345,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2530ad42-be61-42de-8f04-cacefe0e2fcf?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d73cf333-8f7b-47ce-990e-64c7f6e58323?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2530ad42-be61-42de-8f04-cacefe0e2fcf\",\r\n - \ \"name\": \"2530ad42-be61-42de-8f04-cacefe0e2fcf\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d73cf333-8f7b-47ce-990e-64c7f6e58323\",\r\n + \ \"name\": \"d73cf333-8f7b-47ce-990e-64c7f6e58323\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:14 GMT + - Fri, 21 Jan 2022 17:53:09 GMT expires: - '-1' pragma: @@ -392,13 +392,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-19-15-57-35a27\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-19-15-57-35a27\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-52-d1b82\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-52-52-d1b82\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -412,20 +412,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:57.0692694Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.735649Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:57.0692694Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.735649Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2092' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:14 GMT + - Fri, 21 Jan 2022 17:53:09 GMT expires: - '-1' pragma: @@ -457,13 +457,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-19-15-57-35a27\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-19-15-57-35a27\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-52-d1b82\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-52-52-d1b82\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -477,20 +477,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:57.0692694Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.735649Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:57.0692694Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.735649Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2092' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:14 GMT + - Fri, 21 Jan 2022 17:53:10 GMT expires: - '-1' pragma: @@ -524,7 +524,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -536,7 +536,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:14 GMT + - Fri, 21 Jan 2022 17:53:10 GMT expires: - '-1' pragma: @@ -566,7 +566,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -578,11 +578,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '333' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:16 GMT + - Fri, 21 Jan 2022 17:53:11 GMT expires: - '-1' pragma: @@ -609,13 +609,13 @@ interactions: Connection: - keep-alive Content-Length: - - '340' + - '265' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -624,22 +624,22 @@ interactions: \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:16.3501486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:11.6273956Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:16.3501486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:11.6273956Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24b3983f-8651-4dc8-a904-f829daa71402?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ad8d7309-1d76-4e95-beb1-3fbd6867947d?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1126' + - '994' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:16 GMT + - Fri, 21 Jan 2022 17:53:11 GMT expires: - '-1' pragma: @@ -669,13 +669,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24b3983f-8651-4dc8-a904-f829daa71402?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ad8d7309-1d76-4e95-beb1-3fbd6867947d?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24b3983f-8651-4dc8-a904-f829daa71402\",\r\n - \ \"name\": \"24b3983f-8651-4dc8-a904-f829daa71402\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ad8d7309-1d76-4e95-beb1-3fbd6867947d\",\r\n + \ \"name\": \"ad8d7309-1d76-4e95-beb1-3fbd6867947d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -684,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:33 GMT + - Fri, 21 Jan 2022 17:53:28 GMT expires: - '-1' pragma: @@ -716,30 +716,30 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-16-354e8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-19-16-16-354e8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-11-e361a\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-11-e361a\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:16.3501486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:11.6273956Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:16.3501486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:11.6273956Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1706' + - '1481' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:33 GMT + - Fri, 21 Jan 2022 17:53:28 GMT expires: - '-1' pragma: @@ -771,30 +771,30 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-16-354e8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-19-16-16-354e8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-11-e361a\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-11-e361a\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:16.3501486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:11.6273956Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:16.3501486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:11.6273956Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1706' + - '1481' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:34 GMT + - Fri, 21 Jan 2022 17:53:28 GMT expires: - '-1' pragma: @@ -828,7 +828,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -840,7 +840,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:34 GMT + - Fri, 21 Jan 2022 17:53:29 GMT expires: - '-1' pragma: @@ -870,7 +870,7 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -882,11 +882,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '333' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:35 GMT + - Fri, 21 Jan 2022 17:53:30 GMT expires: - '-1' pragma: @@ -924,9 +924,9 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:37 GMT + - Fri, 21 Jan 2022 17:53:30 GMT expires: - - Wed, 15 Dec 2021 19:16:37 GMT + - Fri, 21 Jan 2022 17:53:30 GMT location: - https://api.github.com/repos/Azure/bicep/releases/latest pragma: @@ -957,71 +957,53 @@ interactions: uri: https://api.github.com/repos/Azure/bicep/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/51445655","assets_url":"https://api.github.com/repos/Azure/bicep/releases/51445655/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/51445655/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1008","id":51445655,"author":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DEP-X","tag_name":"v0.4.1008","target_commitish":"main","name":"v0.4.1008","draft":false,"prerelease":false,"created_at":"2021-10-15T16:45:35Z","published_at":"2021-10-15T20:17:50Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097065","id":47097065,"node_id":"RA_kwDOD7S9ks4CzqTp","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20998825,"download_count":9,"created_at":"2021-10-15T20:10:07Z","updated_at":"2021-10-15T20:10:08Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.CommandLine.linux-x64.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097073","id":47097073,"node_id":"RA_kwDOD7S9ks4CzqTx","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21231132,"download_count":5,"created_at":"2021-10-15T20:10:18Z","updated_at":"2021-10-15T20:10:20Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.CommandLine.osx-x64.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097053","id":47097053,"node_id":"RA_kwDOD7S9ks4CzqTd","name":"Azure.Bicep.CommandLine.win-x64.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21234954,"download_count":80,"created_at":"2021-10-15T20:09:42Z","updated_at":"2021-10-15T20:09:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.CommandLine.win-x64.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097008","id":47097008,"node_id":"RA_kwDOD7S9ks4CzqSw","name":"Azure.Bicep.MSBuild.0.4.1008.nupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":38151,"download_count":5,"created_at":"2021-10-15T20:09:10Z","updated_at":"2021-10-15T20:09:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.MSBuild.0.4.1008.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097023","id":47097023,"node_id":"RA_kwDOD7S9ks4CzqS_","name":"Azure.Bicep.MSBuild.0.4.1008.snupkg","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6647,"download_count":3,"created_at":"2021-10-15T20:09:12Z","updated_at":"2021-10-15T20:09:12Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/Azure.Bicep.MSBuild.0.4.1008.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097025","id":47097025,"node_id":"RA_kwDOD7S9ks4CzqTB","name":"bicep-langserver.zip","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":10621973,"download_count":67,"created_at":"2021-10-15T20:09:16Z","updated_at":"2021-10-15T20:09:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096921","id":47096921,"node_id":"RA_kwDOD7S9ks4CzqRZ","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":46899162,"download_count":12019,"created_at":"2021-10-15T20:07:52Z","updated_at":"2021-10-15T20:07:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096863","id":47096863,"node_id":"RA_kwDOD7S9ks4CzqQf","name":"bicep-linux-x64","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":47082977,"download_count":145105,"created_at":"2021-10-15T20:07:15Z","updated_at":"2021-10-15T20:07:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096967","id":47096967,"node_id":"RA_kwDOD7S9ks4CzqSH","name":"bicep-osx-x64","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":47862047,"download_count":4157,"created_at":"2021-10-15T20:08:22Z","updated_at":"2021-10-15T20:08:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47096996","id":47096996,"node_id":"RA_kwDOD7S9ks4CzqSk","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":18126312,"download_count":2974,"created_at":"2021-10-15T20:09:01Z","updated_at":"2021-10-15T20:09:02Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097006","id":47097006,"node_id":"RA_kwDOD7S9ks4CzqSu","name":"bicep-win-x64.exe","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":45876272,"download_count":62824,"created_at":"2021-10-15T20:09:06Z","updated_at":"2021-10-15T20:09:08Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/47097041","id":47097041,"node_id":"RA_kwDOD7S9ks4CzqTR","name":"vscode-bicep.vsix","label":"","uploader":{"login":"anthony-c-martin","id":38542602,"node_id":"MDQ6VXNlcjM4NTQyNjAy","avatar_url":"https://avatars.githubusercontent.com/u/38542602?v=4","gravatar_id":"","url":"https://api.github.com/users/anthony-c-martin","html_url":"https://github.com/anthony-c-martin","followers_url":"https://api.github.com/users/anthony-c-martin/followers","following_url":"https://api.github.com/users/anthony-c-martin/following{/other_user}","gists_url":"https://api.github.com/users/anthony-c-martin/gists{/gist_id}","starred_url":"https://api.github.com/users/anthony-c-martin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anthony-c-martin/subscriptions","organizations_url":"https://api.github.com/users/anthony-c-martin/orgs","repos_url":"https://api.github.com/users/anthony-c-martin/repos","events_url":"https://api.github.com/users/anthony-c-martin/events{/privacy}","received_events_url":"https://api.github.com/users/anthony-c-martin/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":26071148,"download_count":186,"created_at":"2021-10-15T20:09:30Z","updated_at":"2021-10-15T20:09:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1008/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1008","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1008","body":"\r\n**UPDATE** - (10/15/21 2:31PM PT):\r\nWe forgot to account for Az CLI and Azure PowerShell - updates that need to be made in order to expose the new `publish` and `restore` - commands. As a workaround, you will need to run these commands directly with - the bicep CLI. If you are installing the bicep CLI automatically via Az CLI, - then the binary is most likely located at either `%USERPROFILE%\\.azure\\bin` - on windows or `$HOME/.azure/bin` on macOS or Linux. You can then add this - directory to your PATH and run `bicep publish file.bicep --target ''br:foo.azurecr.io/myModule:v1.0''`. - Apologies for this oversight.\r\n\r\n## Highlights\r\n\r\nBicep team:\r\n* - Private Module registry support\r\n - Documentation:\r\n * [Create a private - registry](https://docs.microsoft.com/azure/azure-resource-manager/bicep/private-module-registry)\r\n * - [Reference modules in a registry](https://docs.microsoft.com/azure/azure-resource-manager/bicep/modules#file-in-registry)\r\n * - [`publish`](https://docs.microsoft.com/azure/azure-resource-manager/bicep/bicep-cli#publish) - and [`restore`](https://docs.microsoft.com/azure/azure-resource-manager/bicep/bicep-cli#restore) - commands\r\n * [Adding registry aliases via bicepconfig.json](https://docs.microsoft.com/azure/azure-resource-manager/bicep/bicep-config#aliases-for-module-registry)\r\n - - **Note:** This does **not** include support for a planned *public* registry - which will be released with Bicep v0.5 (ETA early November)\r\n* Implement - TemplateSpec module references (#4269)\r\n - Template specs can be used as - a source for modules (documentation available soon)\r\n - Overview of template - spec references from our recent [community call](https://youtu.be/TrAxi-cj1JM?t=791)\r\n - - Example: `module tsDeploy ts:<>/<>/<> - = {...}` \r\n - Example with alias: `module tsDeploy ts/myAlias:<>:<> - = {...}`\r\n* Add `items()` function to Bicep in order to convert a dictionary - to an array (#4456)\r\n - Documentation available soon\r\n - [Community - call walkthrough](https://youtu.be/TrAxi-cj1JM?t=1235)\r\n* Add support for - `tenant()` & `managementGroup()` functions for retrieving scope metadata (#4478)\r\n - - Documentation available soon\r\n - [Community call walkthrough](https://youtu.be/TrAxi-cj1JM?t=1176)\r\n* - Expanded hover support\r\n - Can now add `@description` decorators to variables, - resources, modules, outputs which will be displayed on hover (#4091)\r\n* - Add lightbulb option to disable linter rule (#4493)\r\n* Add \"build\" command - to tab context menu (#4155)\r\n* rule: adminUsername-should-not-be-literal - (#4702)\r\n* Support symbolic management group references to be used as scopes - (#4476)\r\n - If you have a symbolic reference to a management group, you - can now pass that as a scope for an management group scoped module\r\n\r\n## - Bug fixes and features\r\n\r\nBicep team:\r\n* removed warning about allowed - scopes for scope functions (#4784)\r\n* Fix for exception compiling `listKeys()` - on resource array access (#4282)\r\n* Add errors for 2 unsupported decompiler - features (#4375)\r\n* Fix integer-key property access expression generation - (#4385)\r\n* Add decompilation support for null(), true() & false() (#4273)\r\n* - Allow use of `existing` parent resource scope if it is a valid deployment - scope (#4394)\r\n* Fix cycle detection with resource access syntax (#4684)\r\n* - Display function overload description on hover (#4669)\r\n* Avoid optimizing - empty string interpolation expression (#4683)\r\n* Fix unhandled exception - and stack overflow for resource parent property assignments (#4384)\r\n* Change - array merging behavior to \"replace\" for Bicep configs (#4767)\r\n* module - path completions do not show up url encoded (#4708)\r\n* Ensure snippets and - other completions use \\n (#4180)\r\n* Watch for creation/deletion/modification - of local bicepconfig.json file (#4038)\r\n* Fix exception thrown in CLI when - bicepconfig.json is invalid (#4348)\r\n\r\n@CoachAlexis\r\n* Add icons (#4344)\r\n\r\n@JimPaine\r\n* - Simplification of expressions on decompile (#4482)\r\n\r\n@miqm\r\n* In-lining - Resources and Modules when assigned to a variable (#4069)\r\n* Fix using existing - resource of a discriminated type based on a property other than name (#4407)\r\n* - Fixed generating scope for looped modules and nested resources (#4639)\r\n\r\n@pakrym\r\n* - Sort required properties first in completion (#4562)\r\n* Add = to completion - (#4599)\r\n* Add a codefix for BCP035 (#4570)\r\n\r\n## Docs, examples, snippet - updates\r\n\r\nBicep team: \r\n\r\n@DamianFlynn\r\n* Bump Homebrew to the - current release (#4560)\r\n\r\n@egullbrandsson\r\n* Snippet res-rg - removed - single quotes (#4275)\r\n\r\n@mgreenegit\r\n* guest config snippets (#4243)\r\n* - better version example; only reinforce identity for extension (#4309)\r\n* - Readme - Build badge should link to build results (#4431)\r\n\r\n@rajyraman\r\n* - Logic App Workflow and Integration Account Snippet (#3919)\r\n\r\n@StefanIvemo\r\n* - Updated readme with links to learn path and docs.microsoft.com (#4036)\r\n* - [Snippet] Added ExpressRoute Gateway snippet (#3920)\r\n* [Snippet] Added - Route Server snippet (#3976)\r\n* Fixed bug in `res-container-registry` snippet - (#4597)\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/51445655/reactions","total_count":11,"+1":0,"-1":0,"laugh":0,"hooray":6,"confused":0,"heart":0,"rocket":5,"eyes":0},"mentions_count":9}' + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861","assets_url":"https://api.github.com/repos/Azure/bicep/releases/55233861/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/55233861/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1124","id":55233861,"author":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DSs1F","tag_name":"v0.4.1124","target_commitish":"main","name":"v0.4.1124","draft":false,"prerelease":false,"created_at":"2021-12-13T19:47:29Z","published_at":"2021-12-15T20:05:49Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707348","id":51707348,"node_id":"RA_kwDOD7S9ks4DFP3U","name":"Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16725301,"download_count":4,"created_at":"2021-12-14T02:17:48Z","updated_at":"2021-12-14T02:17:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707343","id":51707343,"node_id":"RA_kwDOD7S9ks4DFP3P","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17200818,"download_count":3,"created_at":"2021-12-14T02:17:35Z","updated_at":"2021-12-14T02:17:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707361","id":51707361,"node_id":"RA_kwDOD7S9ks4DFP3h","name":"Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16614333,"download_count":4,"created_at":"2021-12-14T02:18:13Z","updated_at":"2021-12-14T02:18:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707354","id":51707354,"node_id":"RA_kwDOD7S9ks4DFP3a","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17110967,"download_count":5,"created_at":"2021-12-14T02:18:00Z","updated_at":"2021-12-14T02:18:01Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707337","id":51707337,"node_id":"RA_kwDOD7S9ks4DFP3J","name":"Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16866771,"download_count":4,"created_at":"2021-12-14T02:17:24Z","updated_at":"2021-12-14T02:17:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707332","id":51707332,"node_id":"RA_kwDOD7S9ks4DFP3E","name":"Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17147957,"download_count":7,"created_at":"2021-12-14T02:17:13Z","updated_at":"2021-12-14T02:17:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707286","id":51707286,"node_id":"RA_kwDOD7S9ks4DFP2W","name":"Azure.Bicep.MSBuild.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":39343,"download_count":6,"created_at":"2021-12-14T02:16:24Z","updated_at":"2021-12-14T02:16:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707287","id":51707287,"node_id":"RA_kwDOD7S9ks4DFP2X","name":"Azure.Bicep.MSBuild.0.4.1124.snupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6735,"download_count":5,"created_at":"2021-12-14T02:16:26Z","updated_at":"2021-12-14T02:16:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707288","id":51707288,"node_id":"RA_kwDOD7S9ks4DFP2Y","name":"bicep-langserver.zip","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":11060401,"download_count":10,"created_at":"2021-12-14T02:16:29Z","updated_at":"2021-12-14T02:16:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707229","id":51707229,"node_id":"RA_kwDOD7S9ks4DFP1d","name":"bicep-linux-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37102900,"download_count":19,"created_at":"2021-12-14T02:14:51Z","updated_at":"2021-12-14T02:14:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707235","id":51707235,"node_id":"RA_kwDOD7S9ks4DFP1j","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37701518,"download_count":4547,"created_at":"2021-12-14T02:15:05Z","updated_at":"2021-12-14T02:15:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707224","id":51707224,"node_id":"RA_kwDOD7S9ks4DFP1Y","name":"bicep-linux-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37806767,"download_count":60971,"created_at":"2021-12-14T02:14:34Z","updated_at":"2021-12-14T02:14:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707263","id":51707263,"node_id":"RA_kwDOD7S9ks4DFP1_","name":"bicep-osx-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":36940300,"download_count":5,"created_at":"2021-12-14T02:15:47Z","updated_at":"2021-12-14T02:15:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707257","id":51707257,"node_id":"RA_kwDOD7S9ks4DFP15","name":"bicep-osx-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37857926,"download_count":2354,"created_at":"2021-12-14T02:15:31Z","updated_at":"2021-12-14T02:15:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707280","id":51707280,"node_id":"RA_kwDOD7S9ks4DFP2Q","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":15038120,"download_count":1548,"created_at":"2021-12-14T02:16:13Z","updated_at":"2021-12-14T02:16:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707302","id":51707302,"node_id":"RA_kwDOD7S9ks4DFP2m","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":37100456,"download_count":11,"created_at":"2021-12-14T02:16:42Z","updated_at":"2021-12-14T02:16:50Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707284","id":51707284,"node_id":"RA_kwDOD7S9ks4DFP2U","name":"bicep-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":36662032,"download_count":38282,"created_at":"2021-12-14T02:16:21Z","updated_at":"2021-12-14T02:16:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707321","id":51707321,"node_id":"RA_kwDOD7S9ks4DFP25","name":"vscode-bicep.vsix","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":40760109,"download_count":170,"created_at":"2021-12-14T02:17:03Z","updated_at":"2021-12-14T02:17:05Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1124","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1124","body":"## + Highlights\r\n\r\nBicep team:\r\n\r\n* \"Insert Resource\" command implementation + (#4945)\r\n* Implement type completions & validation for resource `list*()` + functions (#5145). You will now get completions for cases like:\r\n \r\n ```bicep\r\n resource + stg ''Microsoft.Storage/storageAccounts@2019-04-01'' = { ... }\r\n\r\n var + keys = stg.\r\n ```\r\n\r\n* Updated to .net 6 (#4936)\r\n* Add ability to + suppress next line diagnostics inline (#5107). For example:\r\n \r\n ```bicep\r\n #disable-next-line + BCP081\r\n resource stg ''Microsoft.Storage/storageAccounts@2024-01-01'' + existing = {\r\n name: ''foo''\r\n }\r\n ```\r\n* Visualizer improvements + (#5158)\r\n* New linter rules\r\n * no-unnecessary-dependson (#4838)\r\n * + linter: use-protectedsettings-for-commandtoexecute-secrets (#4925)\r\n * + linter rule: outputs-should-not-contain-secrets (#4716)\r\n * Linter rule + to use stable VM image (#4883)\r\n* Added descriptions for function completions. + (#5398)\r\n* removing docs from github repo (#4978)\r\n * All docs now available + at https://aka.ms/bicep\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n\r\n* + Update error message for `if()` & add `if-else` snippet (#5302)\r\n* Improve + parser handling of single-line array/object (#4956)\r\n* Migrate brew to https://github.com/Azure/homebrew-bicep + (#5039)\r\n* Fix highlight.js finding keywords in strings (#5128)\r\n* Add + other useful CLI utils to devcontainer (#5137)\r\n* Remove \"preview\" flag + from VSCode extension (#5140)\r\n* Flow declared type information to function + arguments (#5188)\r\n* Speed up playground (#5300)\r\n* bicep restore now + logs restore failure diagnostics (#4985)\r\n* support digests in `br` module + references (#5024)\r\n* Updated to c# 10 (#5198)\r\n* added win-arm64, linux-arm64, + and osx-arm64 targets (#5346)\r\n* Fix an issue where module references are + not refreshed when cloud config changes (#4916)\r\n* Allow publishing modules + with aliases (#4926)\r\n* Implement go2def for module references with aliases + (#4934)\r\n* Add telemetry for all registered commands (#5218)\r\n* RG().location/et + al => location param in snippets (#5226)\r\n* Added support for description + upon completions (#4999)\r\n* Improve `string` + `string` error message (#5075)\r\n* + Cleaned up description decorator logic to allow loops (#5160)\r\n* Improve + test execution time (#4889)\r\n* Remove light bulb that allows disabling linter + rules in the bicep.config (#5314)\r\n* Update disable next line string in + light bulb (#5332)\r\n* Add telemetry for linter rule changes in bicepconfig.json + (#5312)\r\n* Log telemetry about linter state on bicep file open (#5352)\r\n* + Updated linter related telemetry event names (#5369)\r\n* Log telemetry on + bicep file open (#5373)\r\n\r\n\r\n@polatengin\r\n* adding devcontainer support + (#4974)\r\n\r\n@GKotfis\r\n* Increase exposure of ''Open Visualizer'' command + in context menus (#4977)\r\n\r\n@wedoazure\r\n* updated Networking visualizer + icons (#5130)\r\n* Updated Compute and Web visualizer icons (#5168)\r\n* database, + security, storage visualizer icons (#5203)\r\n* updated ai, analytics, containers, + devops and identity Visualizer icons (#5240)\r\n\r\n@miqm\r\n* Allow using + parameter as value for a discriminator property (#4887)\r\n\r\n@stan-sz\r\n* + Update required SDK (#5274)\r\n* Update the PackageProjectUrl (#5235)\r\n* + Bicep nuget packages fixes (#5254)\r\n* Fix access to the same test file (#5329)\r\n\r\n## + Docs and snippet updates\r\n\r\n@johndowns\r\n* Update Cosmos DB snippets + (#5038)\r\n\r\n@johnnyreilly\r\n* fix: correct \"as\" typo to \"at\" (#5182)\r\n\r\n@StefanIvemo\r\n* + Added --no-restore to CLI help (#5385)\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861/reactions","total_count":5,"+1":0,"-1":0,"laugh":0,"hooray":3,"confused":0,"heart":0,"rocket":2,"eyes":0},"mentions_count":8}' headers: accept-ranges: - bytes @@ -1030,22 +1012,22 @@ interactions: access-control-expose-headers: - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, + X-GitHub-Request-Id, Deprecation, Sunset cache-control: - public, max-age=60, s-maxage=60 content-length: - - '24810' + - '30225' content-security-policy: - default-src 'none' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:18 GMT + - Fri, 21 Jan 2022 17:53:17 GMT etag: - - W/"7abf5099b937dcaced22a52fcd08311ef83ae65e997f11deba4064768eb29022" + - W/"8529e967a553548ddcdb16f2308d3d26508fd1518215400c835f6c4186a155d4" last-modified: - - Fri, 15 Oct 2021 21:38:40 GMT + - Wed, 15 Dec 2021 20:05:49 GMT referrer-policy: - origin-when-cross-origin, strict-origin-when-cross-origin server: @@ -1061,13 +1043,13 @@ interactions: x-github-media-type: - github.v3; format=json x-github-request-id: - - EA8E:7EB6:371BA:7E175:61BA3F15 + - ED6E:58E9:461063:83FDC6:61EAF31B x-ratelimit-limit: - '60' x-ratelimit-remaining: - '59' x-ratelimit-reset: - - '1639599397' + - '1642791211' x-ratelimit-resource: - core x-ratelimit-used: @@ -1104,7 +1086,7 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -1126,22 +1108,22 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:38.9207376Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:32.2053987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:38.9207376Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:32.2053987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9577e0db-55ca-486f-ba16-6f20f5e5200c?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22246ce2-ffab-4f56-bd05-e86db3872302?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1956' + - '1899' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:38 GMT + - Fri, 21 Jan 2022 17:53:32 GMT expires: - '-1' pragma: @@ -1153,7 +1135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1171,13 +1153,13 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9577e0db-55ca-486f-ba16-6f20f5e5200c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22246ce2-ffab-4f56-bd05-e86db3872302?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9577e0db-55ca-486f-ba16-6f20f5e5200c\",\r\n - \ \"name\": \"9577e0db-55ca-486f-ba16-6f20f5e5200c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22246ce2-ffab-4f56-bd05-e86db3872302\",\r\n + \ \"name\": \"22246ce2-ffab-4f56-bd05-e86db3872302\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1186,7 +1168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:55 GMT + - Fri, 21 Jan 2022 17:53:49 GMT expires: - '-1' pragma: @@ -1218,13 +1200,13 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-39-f792c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-19-16-39-f792c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-32-87327\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-32-87327\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n @@ -1243,20 +1225,20 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:38.9207376Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:32.2053987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:38.9207376Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:32.2053987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2780' + - '2587' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:55 GMT + - Fri, 21 Jan 2022 17:53:49 GMT expires: - '-1' pragma: @@ -1288,13 +1270,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-39-f792c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2021-12-15-19-16-39-f792c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-32-87327\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-32-87327\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n @@ -1313,20 +1295,20 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:38.9207376Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:32.2053987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:38.9207376Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:32.2053987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2780' + - '2587' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:56 GMT + - Fri, 21 Jan 2022 17:53:49 GMT expires: - '-1' pragma: @@ -1360,7 +1342,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -1372,7 +1354,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:56 GMT + - Fri, 21 Jan 2022 17:53:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index c5beac4adb2..a031c9fb2e8 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '353' + - '278' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:49 GMT + - Fri, 21 Jan 2022 17:52:47 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -69,11 +69,11 @@ interactions: cache-control: - no-cache content-length: - - '341' + - '266' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:49 GMT + - Fri, 21 Jan 2022 17:52:48 GMT expires: - '-1' pragma: @@ -105,27 +105,27 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:53.0383284Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:50.2040983Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:53.0383284Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:50.2040983Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '739' + - '632' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:53 GMT + - Fri, 21 Jan 2022 17:52:49 GMT expires: - '-1' pragma: @@ -165,7 +165,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:54.8983382Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:51.4841065Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:54.8983382Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:51.4841065Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -193,11 +193,11 @@ interactions: cache-control: - no-cache content-length: - - '1553' + - '1478' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:54 GMT + - Fri, 21 Jan 2022 17:52:51 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -238,11 +238,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '199' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:55 GMT + - Fri, 21 Jan 2022 17:52:52 GMT expires: - '-1' pragma: @@ -280,7 +280,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -300,22 +300,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:56.2276736Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.7892557Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:56.2276736Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.7892557Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0ad6c086-942b-4352-ad78-d5c21adb4a0f?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f2f45c0-5976-4b99-aefc-910ba869b538?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1660' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:56 GMT + - Fri, 21 Jan 2022 17:52:53 GMT expires: - '-1' pragma: @@ -345,13 +345,13 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0ad6c086-942b-4352-ad78-d5c21adb4a0f?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f2f45c0-5976-4b99-aefc-910ba869b538?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0ad6c086-942b-4352-ad78-d5c21adb4a0f\",\r\n - \ \"name\": \"0ad6c086-942b-4352-ad78-d5c21adb4a0f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f2f45c0-5976-4b99-aefc-910ba869b538\",\r\n + \ \"name\": \"3f2f45c0-5976-4b99-aefc-910ba869b538\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:13 GMT + - Fri, 21 Jan 2022 17:53:10 GMT expires: - '-1' pragma: @@ -392,14 +392,14 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-15-56-5dc46\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-15-56-5dc46\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-52-53-57a27\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-52-53-57a27\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -414,20 +414,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:56.2276736Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.7892557Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:56.2276736Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.7892557Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:13 GMT + - Fri, 21 Jan 2022 17:53:10 GMT expires: - '-1' pragma: @@ -459,14 +459,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-15-56-5dc46\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-15-56-5dc46\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-52-53-57a27\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-52-53-57a27\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -481,20 +481,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:56.2276736Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.7892557Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:56.2276736Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.7892557Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:15 GMT + - Fri, 21 Jan 2022 17:53:11 GMT expires: - '-1' pragma: @@ -528,7 +528,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -540,7 +540,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:16 GMT + - Fri, 21 Jan 2022 17:53:12 GMT expires: - '-1' pragma: @@ -570,7 +570,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -581,11 +581,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '199' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:16 GMT + - Fri, 21 Jan 2022 17:53:12 GMT expires: - '-1' pragma: @@ -612,13 +612,13 @@ interactions: Connection: - keep-alive Content-Length: - - '437' + - '362' Content-Type: - application/json ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -628,22 +628,22 @@ interactions: \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:17.2261805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:13.388484Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:17.2261805Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:13.388484Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc372f1d-c00d-44d5-b992-9269d274cfcb?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/98de4447-0086-4a95-812b-4bdb8cf94424?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1140' + - '1045' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:17 GMT + - Fri, 21 Jan 2022 17:53:13 GMT expires: - '-1' pragma: @@ -673,13 +673,13 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc372f1d-c00d-44d5-b992-9269d274cfcb?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/98de4447-0086-4a95-812b-4bdb8cf94424?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc372f1d-c00d-44d5-b992-9269d274cfcb\",\r\n - \ \"name\": \"bc372f1d-c00d-44d5-b992-9269d274cfcb\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/98de4447-0086-4a95-812b-4bdb8cf94424\",\r\n + \ \"name\": \"98de4447-0086-4a95-812b-4bdb8cf94424\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -688,7 +688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:34 GMT + - Fri, 21 Jan 2022 17:53:31 GMT expires: - '-1' pragma: @@ -720,32 +720,32 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-16-17-93e82\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-16-17-93e82\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-14-d2945\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-14-d2945\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:17.2261805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:13.388484Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:17.2261805Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:13.388484Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1538' + - '1434' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:35 GMT + - Fri, 21 Jan 2022 17:53:31 GMT expires: - '-1' pragma: @@ -777,32 +777,32 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-16-17-93e82\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-16-17-93e82\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-14-d2945\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-14-d2945\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:17.2261805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:13.388484Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:17.2261805Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:13.388484Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1538' + - '1434' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:36 GMT + - Fri, 21 Jan 2022 17:53:31 GMT expires: - '-1' pragma: @@ -836,7 +836,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -848,7 +848,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:36 GMT + - Fri, 21 Jan 2022 17:53:32 GMT expires: - '-1' pragma: @@ -878,7 +878,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -889,11 +889,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '199' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:38 GMT + - Fri, 21 Jan 2022 17:53:33 GMT expires: - '-1' pragma: @@ -925,13 +925,13 @@ interactions: Connection: - keep-alive Content-Length: - - '764' + - '721' Content-Type: - application/json ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -951,22 +951,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:38.4028655Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:33.6310856Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:38.4028655Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:33.6310856Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/451da3c9-bbc9-4cec-bcad-b711a8895700?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b59e1520-3172-47f3-82a3-d6504d882722?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1769' + - '1708' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:38 GMT + - Fri, 21 Jan 2022 17:53:34 GMT expires: - '-1' pragma: @@ -978,7 +978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -996,13 +996,13 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/451da3c9-bbc9-4cec-bcad-b711a8895700?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b59e1520-3172-47f3-82a3-d6504d882722?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/451da3c9-bbc9-4cec-bcad-b711a8895700\",\r\n - \ \"name\": \"451da3c9-bbc9-4cec-bcad-b711a8895700\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b59e1520-3172-47f3-82a3-d6504d882722\",\r\n + \ \"name\": \"b59e1520-3172-47f3-82a3-d6504d882722\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1011,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:56 GMT + - Fri, 21 Jan 2022 17:53:51 GMT expires: - '-1' pragma: @@ -1043,14 +1043,14 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-16-38-6284b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-16-38-6284b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-34-eeebd\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-34-eeebd\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1065,20 +1065,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:38.4028655Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:33.6310856Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:38.4028655Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:33.6310856Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2258' + - '2145' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:56 GMT + - Fri, 21 Jan 2022 17:53:51 GMT expires: - '-1' pragma: @@ -1110,14 +1110,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-16-38-6284b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-16-38-6284b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-34-eeebd\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-34-eeebd\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1132,20 +1132,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:38.4028655Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:33.6310856Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:38.4028655Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:33.6310856Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2258' + - '2145' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:57 GMT + - Fri, 21 Jan 2022 17:53:52 GMT expires: - '-1' pragma: @@ -1179,7 +1179,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1191,7 +1191,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:57 GMT + - Fri, 21 Jan 2022 17:53:53 GMT expires: - '-1' pragma: @@ -1221,7 +1221,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1232,11 +1232,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '199' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:58 GMT + - Fri, 21 Jan 2022 17:53:53 GMT expires: - '-1' pragma: @@ -1271,13 +1271,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1015' + - '972' Content-Type: - application/json ParameterSetName: - --name --location --template-file --parameters -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1300,22 +1300,22 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3843071Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:55.1697007Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3843071Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:55.1697007Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/556c024b-159b-42dc-97ab-ffa49346c8cf?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9958b8d4-cf23-43e1-a475-3457174e8d33?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '2061' + - '2000' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:02 GMT + - Fri, 21 Jan 2022 17:53:55 GMT expires: - '-1' pragma: @@ -1345,13 +1345,13 @@ interactions: ParameterSetName: - --name --location --template-file --parameters -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/556c024b-159b-42dc-97ab-ffa49346c8cf?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9958b8d4-cf23-43e1-a475-3457174e8d33?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/556c024b-159b-42dc-97ab-ffa49346c8cf\",\r\n - \ \"name\": \"556c024b-159b-42dc-97ab-ffa49346c8cf\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9958b8d4-cf23-43e1-a475-3457174e8d33\",\r\n + \ \"name\": \"9958b8d4-cf23-43e1-a475-3457174e8d33\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1360,7 +1360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:19 GMT + - Fri, 21 Jan 2022 17:54:12 GMT expires: - '-1' pragma: @@ -1392,14 +1392,14 @@ interactions: ParameterSetName: - --name --location --template-file --parameters -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-17-02-01f50\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-17-02-01f50\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-55-9bf78\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-55-9bf78\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": @@ -1419,20 +1419,20 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3843071Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:55.1697007Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3843071Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:55.1697007Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2794' + - '2638' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:19 GMT + - Fri, 21 Jan 2022 17:54:12 GMT expires: - '-1' pragma: @@ -1464,14 +1464,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2021-12-15-19-17-02-01f50\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-12-15-19-17-02-01f50\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-55-9bf78\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-55-9bf78\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": @@ -1491,20 +1491,20 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3843071Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:55.1697007Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3843071Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:55.1697007Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2794' + - '2638' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:20 GMT + - Fri, 21 Jan 2022 17:54:13 GMT expires: - '-1' pragma: @@ -1538,7 +1538,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1550,7 +1550,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:20 GMT + - Fri, 21 Jan 2022 17:54:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index fb3eca51a4b..3297e463ce6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '333' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:50 GMT + - Fri, 21 Jan 2022 17:52:48 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.4017345Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.4017345Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3627975-6c8a-4b44-9ce8-eeddb36b8fd7?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1607' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:50 GMT + - Fri, 21 Jan 2022 17:52:48 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3627975-6c8a-4b44-9ce8-eeddb36b8fd7?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3627975-6c8a-4b44-9ce8-eeddb36b8fd7\",\r\n - \ \"name\": \"f3627975-6c8a-4b44-9ce8-eeddb36b8fd7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9\",\r\n + \ \"name\": \"3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:07 GMT + - Fri, 21 Jan 2022 17:53:05 GMT expires: - '-1' pragma: @@ -178,13 +178,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-19-15-51-33bb7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-19-15-51-33bb7\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-48-4f13d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-52-48-4f13d\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,20 +198,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.4017345Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.4017345Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2094' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:08 GMT + - Fri, 21 Jan 2022 17:53:05 GMT expires: - '-1' pragma: @@ -243,13 +243,13 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-19-15-51-33bb7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-19-15-51-33bb7\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-48-4f13d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-52-48-4f13d\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,20 +263,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.4017345Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.4017345Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2094' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:10 GMT + - Fri, 21 Jan 2022 17:53:06 GMT expires: - '-1' pragma: @@ -308,13 +308,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-19-15-51-33bb7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-19-15-51-33bb7\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-48-4f13d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-52-48-4f13d\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -328,20 +328,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.4017345Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.4017345Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2094' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:10 GMT + - Fri, 21 Jan 2022 17:53:06 GMT expires: - '-1' pragma: @@ -375,7 +375,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -387,7 +387,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:10 GMT + - Fri, 21 Jan 2022 17:53:06 GMT expires: - '-1' pragma: @@ -417,7 +417,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -431,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:11 GMT + - Fri, 21 Jan 2022 17:53:07 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -475,11 +475,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '333' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:12 GMT + - Fri, 21 Jan 2022 17:53:07 GMT expires: - '-1' pragma: @@ -517,7 +517,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -536,22 +536,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:12.4809647Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:12.4809647Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25f7fe1c-e286-4a40-91bf-ba81ca81cf23?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1607' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:12 GMT + - Fri, 21 Jan 2022 17:53:08 GMT expires: - '-1' pragma: @@ -581,13 +581,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25f7fe1c-e286-4a40-91bf-ba81ca81cf23?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25f7fe1c-e286-4a40-91bf-ba81ca81cf23\",\r\n - \ \"name\": \"25f7fe1c-e286-4a40-91bf-ba81ca81cf23\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26\",\r\n + \ \"name\": \"76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -596,7 +596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:29 GMT + - Fri, 21 Jan 2022 17:53:25 GMT expires: - '-1' pragma: @@ -628,13 +628,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-12-0c08c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-19-16-12-0c08c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-08-5a678\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-53-08-5a678\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -648,20 +648,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:12.4809647Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:12.4809647Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2094' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:29 GMT + - Fri, 21 Jan 2022 17:53:25 GMT expires: - '-1' pragma: @@ -693,13 +693,13 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-12-0c08c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-19-16-12-0c08c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-08-5a678\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-53-08-5a678\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -713,20 +713,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:12.4809647Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:12.4809647Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2094' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:30 GMT + - Fri, 21 Jan 2022 17:53:26 GMT expires: - '-1' pragma: @@ -758,13 +758,13 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-12-0c08c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2021-12-15-19-16-12-0c08c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-08-5a678\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-53-08-5a678\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -778,20 +778,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:12.4809647Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:12.4809647Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2094' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:31 GMT + - Fri, 21 Jan 2022 17:53:26 GMT expires: - '-1' pragma: @@ -825,7 +825,7 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -837,7 +837,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:31 GMT + - Fri, 21 Jan 2022 17:53:27 GMT expires: - '-1' pragma: @@ -867,7 +867,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -881,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:32 GMT + - Fri, 21 Jan 2022 17:53:27 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml index c048da591d7..2586f61a43d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '342' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:51 GMT + - Fri, 21 Jan 2022 17:52:47 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.7051717Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/306536fa-4c19-487a-aec4-22bb4019a704?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0034143-a938-4064-beb7-55cc9b219a55?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1625' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:15:51 GMT + - Fri, 21 Jan 2022 17:52:47 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/306536fa-4c19-487a-aec4-22bb4019a704?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0034143-a938-4064-beb7-55cc9b219a55?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/306536fa-4c19-487a-aec4-22bb4019a704\",\r\n - \ \"name\": \"306536fa-4c19-487a-aec4-22bb4019a704\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0034143-a938-4064-beb7-55cc9b219a55\",\r\n + \ \"name\": \"e0034143-a938-4064-beb7-55cc9b219a55\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:08 GMT + - Fri, 21 Jan 2022 17:53:04 GMT expires: - '-1' pragma: @@ -178,13 +178,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-15-51-caf0d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,20 +198,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.7051717Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2121' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:09 GMT + - Fri, 21 Jan 2022 17:53:04 GMT expires: - '-1' pragma: @@ -243,13 +243,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-15-51-caf0d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,20 +263,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.7051717Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2121' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:09 GMT + - Fri, 21 Jan 2022 17:53:06 GMT expires: - '-1' pragma: @@ -318,7 +318,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -337,22 +337,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:10.6258857Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d95af30-5050-4fe0-9940-a9cb0755ff44?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ef10ceb-a7a5-4325-a362-3be8b07b795e?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1625' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:10 GMT + - Fri, 21 Jan 2022 17:53:06 GMT expires: - '-1' pragma: @@ -386,13 +386,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d95af30-5050-4fe0-9940-a9cb0755ff44?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ef10ceb-a7a5-4325-a362-3be8b07b795e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d95af30-5050-4fe0-9940-a9cb0755ff44\",\r\n - \ \"name\": \"6d95af30-5050-4fe0-9940-a9cb0755ff44\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ef10ceb-a7a5-4325-a362-3be8b07b795e\",\r\n + \ \"name\": \"5ef10ceb-a7a5-4325-a362-3be8b07b795e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:27 GMT + - Fri, 21 Jan 2022 17:53:23 GMT expires: - '-1' pragma: @@ -433,13 +433,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-10-64930\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -453,20 +453,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:10.6258857Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2121' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:27 GMT + - Fri, 21 Jan 2022 17:53:23 GMT expires: - '-1' pragma: @@ -498,14 +498,14 @@ interactions: ParameterSetName: - --name --stack-name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-15-51-caf0d\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -519,21 +519,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.7051717Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-15-51-caf0d\"\r\n}" + \"2022-01-21-17-52-48-93fc1\"\r\n}" headers: cache-control: - no-cache content-length: - - '2033' + - '1949' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:28 GMT + - Fri, 21 Jan 2022 17:53:24 GMT expires: - '-1' pragma: @@ -565,14 +565,14 @@ interactions: ParameterSetName: - --name --stack-name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-15-51-caf0d\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -586,21 +586,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:15:51.7051717Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-15-51-caf0d\"\r\n}" + \"2022-01-21-17-52-48-93fc1\"\r\n}" headers: cache-control: - no-cache content-length: - - '2033' + - '1949' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:29 GMT + - Fri, 21 Jan 2022 17:53:24 GMT expires: - '-1' pragma: @@ -634,9 +634,9 @@ interactions: ParameterSetName: - --name --stack-name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-15-51-caf0d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1?api-version=2021-05-01-preview response: body: string: '' @@ -646,7 +646,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:30 GMT + - Fri, 21 Jan 2022 17:53:24 GMT expires: - '-1' pragma: @@ -676,7 +676,7 @@ interactions: ParameterSetName: - --stack-name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -684,7 +684,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-10-64930\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -700,21 +700,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:10.6258857Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:06.6227308Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:10.6258857Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-16-10-64930\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-53-06-4c742\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2278' + - '2194' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:30 GMT + - Fri, 21 Jan 2022 17:53:25 GMT expires: - '-1' pragma: @@ -746,13 +746,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-10-64930\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -766,20 +766,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:10.6258857Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2121' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:31 GMT + - Fri, 21 Jan 2022 17:53:25 GMT expires: - '-1' pragma: @@ -821,7 +821,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -840,22 +840,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:31.9614793Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:26.4251475Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/740ed42c-4025-4b38-9d33-54ea9596897d?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82647ce9-d662-41a2-8cc6-e468eb524db0?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1625' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:32 GMT + - Fri, 21 Jan 2022 17:53:25 GMT expires: - '-1' pragma: @@ -889,13 +889,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/740ed42c-4025-4b38-9d33-54ea9596897d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82647ce9-d662-41a2-8cc6-e468eb524db0?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/740ed42c-4025-4b38-9d33-54ea9596897d\",\r\n - \ \"name\": \"740ed42c-4025-4b38-9d33-54ea9596897d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82647ce9-d662-41a2-8cc6-e468eb524db0\",\r\n + \ \"name\": \"82647ce9-d662-41a2-8cc6-e468eb524db0\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:49 GMT + - Fri, 21 Jan 2022 17:53:42 GMT expires: - '-1' pragma: @@ -936,13 +936,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-32-23358\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-32-23358\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-26-bd5bf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-26-bd5bf\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -956,20 +956,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:15:51.7051717Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:31.9614793Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:26.4251475Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2121' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:49 GMT + - Fri, 21 Jan 2022 17:53:43 GMT expires: - '-1' pragma: @@ -1001,14 +1001,14 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-10-64930\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -1022,21 +1022,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:10.6258857Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:06.6227308Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:10.6258857Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-16-10-64930\"\r\n}" + \"2022-01-21-17-53-06-4c742\"\r\n}" headers: cache-control: - no-cache content-length: - - '2033' + - '1949' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:49 GMT + - Fri, 21 Jan 2022 17:53:43 GMT expires: - '-1' pragma: @@ -1068,14 +1068,14 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-10-64930\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -1089,21 +1089,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:10.6258857Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:06.6227308Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:10.6258857Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-16-10-64930\"\r\n}" + \"2022-01-21-17-53-06-4c742\"\r\n}" headers: cache-control: - no-cache content-length: - - '2033' + - '1949' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:50 GMT + - Fri, 21 Jan 2022 17:53:44 GMT expires: - '-1' pragma: @@ -1137,9 +1137,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-10-64930?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742?api-version=2021-05-01-preview response: body: string: '' @@ -1149,7 +1149,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:50 GMT + - Fri, 21 Jan 2022 17:53:44 GMT expires: - '-1' pragma: @@ -1161,7 +1161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -1179,7 +1179,7 @@ interactions: ParameterSetName: - --stack-name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -1187,7 +1187,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-16-32-23358\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-26-bd5bf\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -1203,21 +1203,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:31.9614793Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:26.4251475Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:31.9614793Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-32-23358\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:26.4251475Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-26-bd5bf\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-16-32-23358\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-53-26-bd5bf\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2278' + - '2194' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:51 GMT + - Fri, 21 Jan 2022 17:53:44 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml index 99d236828a7..f6319cf9b34 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:00 GMT + - Fri, 21 Jan 2022 17:53:51 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3010016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/de636bba-6463-40b5-b0ad-0a915d08330f?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ebfaee6e-7a16-4e0c-a687-d935d4797f0b?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:01 GMT + - Fri, 21 Jan 2022 17:53:52 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/de636bba-6463-40b5-b0ad-0a915d08330f?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ebfaee6e-7a16-4e0c-a687-d935d4797f0b?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/de636bba-6463-40b5-b0ad-0a915d08330f\",\r\n - \ \"name\": \"de636bba-6463-40b5-b0ad-0a915d08330f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ebfaee6e-7a16-4e0c-a687-d935d4797f0b\",\r\n + \ \"name\": \"ebfaee6e-7a16-4e0c-a687-d935d4797f0b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:18 GMT + - Fri, 21 Jan 2022 17:54:09 GMT expires: - '-1' pragma: @@ -178,14 +178,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-01-1802c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3010016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:18 GMT + - Fri, 21 Jan 2022 17:54:09 GMT expires: - '-1' pragma: @@ -245,14 +245,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-01-1802c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3010016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:20 GMT + - Fri, 21 Jan 2022 17:54:10 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -342,22 +342,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:20.8678891Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1539882f-6c23-4145-af11-dcb3226f3b9b?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab17d578-e4c3-404a-8642-77057a001b46?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1677' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:20 GMT + - Fri, 21 Jan 2022 17:54:11 GMT expires: - '-1' pragma: @@ -373,7 +373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -391,13 +391,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1539882f-6c23-4145-af11-dcb3226f3b9b?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab17d578-e4c3-404a-8642-77057a001b46?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1539882f-6c23-4145-af11-dcb3226f3b9b\",\r\n - \ \"name\": \"1539882f-6c23-4145-af11-dcb3226f3b9b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab17d578-e4c3-404a-8642-77057a001b46\",\r\n + \ \"name\": \"ab17d578-e4c3-404a-8642-77057a001b46\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:38 GMT + - Fri, 21 Jan 2022 17:54:28 GMT expires: - '-1' pragma: @@ -438,14 +438,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-21-594b1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-21-594b1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -460,20 +460,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:20.8678891Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2075' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:38 GMT + - Fri, 21 Jan 2022 17:54:28 GMT expires: - '-1' pragma: @@ -505,14 +505,14 @@ interactions: ParameterSetName: - --name --stack-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-01-1802c\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -527,12 +527,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3010016Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-01-1802c\"\r\n}" + \"2022-01-21-17-53-53-8e79e\"\r\n}" headers: cache-control: - no-cache @@ -541,7 +541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:39 GMT + - Fri, 21 Jan 2022 17:54:30 GMT expires: - '-1' pragma: @@ -573,14 +573,14 @@ interactions: ParameterSetName: - --name --stack-name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-01-1802c\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -595,12 +595,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:01.3010016Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-01-1802c\"\r\n}" + \"2022-01-21-17-53-53-8e79e\"\r\n}" headers: cache-control: - no-cache @@ -609,7 +609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:39 GMT + - Fri, 21 Jan 2022 17:54:30 GMT expires: - '-1' pragma: @@ -643,9 +643,9 @@ interactions: ParameterSetName: - --name --stack-name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-01-1802c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e?api-version=2021-05-01-preview response: body: string: '' @@ -655,7 +655,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:40 GMT + - Fri, 21 Jan 2022 17:54:31 GMT expires: - '-1' pragma: @@ -685,7 +685,7 @@ interactions: ParameterSetName: - --stack-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -693,7 +693,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-21-594b1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -710,21 +710,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:17:20.8678891Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:54:11.758217Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:17:20.8678891Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-21-594b1\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-21-594b1\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-54-11-497ac\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2179' + - '2177' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:41 GMT + - Fri, 21 Jan 2022 17:54:31 GMT expires: - '-1' pragma: @@ -756,14 +756,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-21-594b1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-21-594b1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -778,20 +778,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:20.8678891Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2075' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:54:32 GMT expires: - '-1' pragma: @@ -833,7 +833,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -853,14 +853,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:43.0432286Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa9951f2-6449-4db6-88d6-458eeb46acc5?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cacbe4c1-ddf7-4406-b694-28e84411b5be?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -868,7 +868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:54:32 GMT expires: - '-1' pragma: @@ -884,7 +884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -902,13 +902,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa9951f2-6449-4db6-88d6-458eeb46acc5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cacbe4c1-ddf7-4406-b694-28e84411b5be?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa9951f2-6449-4db6-88d6-458eeb46acc5\",\r\n - \ \"name\": \"aa9951f2-6449-4db6-88d6-458eeb46acc5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cacbe4c1-ddf7-4406-b694-28e84411b5be\",\r\n + \ \"name\": \"cacbe4c1-ddf7-4406-b694-28e84411b5be\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -917,7 +917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:00 GMT + - Fri, 21 Jan 2022 17:54:49 GMT expires: - '-1' pragma: @@ -949,14 +949,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-43-4e8c3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -971,9 +971,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:43.0432286Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -984,7 +984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:00 GMT + - Fri, 21 Jan 2022 17:54:50 GMT expires: - '-1' pragma: @@ -1016,14 +1016,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-43-4e8c3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1038,9 +1038,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:43.0432286Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:01 GMT + - Fri, 21 Jan 2022 17:54:51 GMT expires: - '-1' pragma: @@ -1093,7 +1093,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -1113,14 +1113,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:02.1098855Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:52.1105374Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5cbe871c-bd1d-4f68-b1a1-d463788db684?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efe167b4-7485-412e-85d6-8d3f898762b3?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1128,7 +1128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:01 GMT + - Fri, 21 Jan 2022 17:54:51 GMT expires: - '-1' pragma: @@ -1144,7 +1144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1162,13 +1162,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5cbe871c-bd1d-4f68-b1a1-d463788db684?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efe167b4-7485-412e-85d6-8d3f898762b3?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5cbe871c-bd1d-4f68-b1a1-d463788db684\",\r\n - \ \"name\": \"5cbe871c-bd1d-4f68-b1a1-d463788db684\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efe167b4-7485-412e-85d6-8d3f898762b3\",\r\n + \ \"name\": \"efe167b4-7485-412e-85d6-8d3f898762b3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1177,7 +1177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:18 GMT + - Fri, 21 Jan 2022 17:55:08 GMT expires: - '-1' pragma: @@ -1209,14 +1209,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-18-02-c11d3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-52-14e95\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1231,9 +1231,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:01.3010016Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:02.1098855Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:52.1105374Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -1244,7 +1244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:19 GMT + - Fri, 21 Jan 2022 17:55:09 GMT expires: - '-1' pragma: @@ -1276,14 +1276,14 @@ interactions: ParameterSetName: - --name --stack-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-43-4e8c3\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1298,12 +1298,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:43.0432286Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.9743841Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:43.0432286Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-43-4e8c3\"\r\n}" + \"2022-01-21-17-54-33-0a0b5\"\r\n}" headers: cache-control: - no-cache @@ -1312,7 +1312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:20 GMT + - Fri, 21 Jan 2022 17:55:11 GMT expires: - '-1' pragma: @@ -1344,14 +1344,14 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-43-4e8c3\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1366,12 +1366,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:43.0432286Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.9743841Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:43.0432286Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-43-4e8c3\"\r\n}" + \"2022-01-21-17-54-33-0a0b5\"\r\n}" headers: cache-control: - no-cache @@ -1380,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:21 GMT + - Fri, 21 Jan 2022 17:55:11 GMT expires: - '-1' pragma: @@ -1414,9 +1414,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-43-4e8c3?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5?api-version=2021-05-01-preview response: body: string: '' @@ -1426,7 +1426,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:18:21 GMT + - Fri, 21 Jan 2022 17:55:12 GMT expires: - '-1' pragma: @@ -1456,7 +1456,7 @@ interactions: ParameterSetName: - --stack-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -1464,7 +1464,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-21-594b1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -1481,15 +1481,15 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:17:20.8678891Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:54:11.758217Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:17:20.8678891Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-21-594b1\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-21-594b1\"\r\n },\r\n {\r\n \"properties\": + \"2022-01-21-17-54-11-497ac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \ \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -1506,21 +1506,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:18:02.1098855Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:54:52.1105374Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:18:02.1098855Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-18-02-c11d3\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:54:52.1105374Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-52-14e95\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-18-02-c11d3\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-54-52-14e95\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4336' + - '4334' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:22 GMT + - Fri, 21 Jan 2022 17:55:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index ab80dcf5ce5..804de4d2b09 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -24,11 +24,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '199' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:23 GMT + - Fri, 21 Jan 2022 17:54:16 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:24.0636562Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:24.0636562Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9f8a2ae9-02f9-4a48-b60a-fc39aa83e4db?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/828df04c-afdb-40fc-8dce-96889b0e4fde?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1660' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:23 GMT + - Fri, 21 Jan 2022 17:54:17 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9f8a2ae9-02f9-4a48-b60a-fc39aa83e4db?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/828df04c-afdb-40fc-8dce-96889b0e4fde?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9f8a2ae9-02f9-4a48-b60a-fc39aa83e4db\",\r\n - \ \"name\": \"9f8a2ae9-02f9-4a48-b60a-fc39aa83e4db\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/828df04c-afdb-40fc-8dce-96889b0e4fde\",\r\n + \ \"name\": \"828df04c-afdb-40fc-8dce-96889b0e4fde\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:40 GMT + - Fri, 21 Jan 2022 17:54:34 GMT expires: - '-1' pragma: @@ -178,14 +178,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-24-a4623\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-19-17-24-a4623\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-17-0d701\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,20 +200,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:24.0636562Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:24.0636562Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:41 GMT + - Fri, 21 Jan 2022 17:54:34 GMT expires: - '-1' pragma: @@ -245,14 +245,14 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-24-a4623\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-19-17-24-a4623\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-17-0d701\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,20 +267,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:24.0636562Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:24.0636562Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:54:35 GMT expires: - '-1' pragma: @@ -312,14 +312,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-24-a4623\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-19-17-24-a4623\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-17-0d701\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -334,20 +334,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:24.0636562Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:24.0636562Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:43 GMT + - Fri, 21 Jan 2022 17:54:36 GMT expires: - '-1' pragma: @@ -381,7 +381,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -393,7 +393,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:43 GMT + - Fri, 21 Jan 2022 17:54:37 GMT expires: - '-1' pragma: @@ -405,7 +405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -421,7 +421,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -864,16 +864,16 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZLLjqJAAEX%2fxcXsquUp0ElngigiIAI%2bQDamgCqhkSqgAJXO%2fPs4mbs8OcnZ3J8ZQc%2feLUnFZp8%2fs2h9OJ4Os89Z0fcN%2b5zPa0jgDdWI9B9wGjr0kdF6zoaUZV3Z9CUlbA75FMOFKAMspBhIAuaBukhloEpqtlAknIkCP286OpY56th8V2YdZRT3HyFidOgyxOY5au709a9y6GFWsd%2bwKcH4tt%2bBL4ETeMDJgONB06GxRI9frCqbI60Q%2bbIkttX%2fb61bQngUrjBYrsxR6rVGzx%2b3FYz2%2flNI812xdh%2bCETutVRfOErQGH6vlKQmBNkiHPsO7S4SFKe5HogSYtDaOU6aFNTm1r9C9To%2fTXdYSc4ilrhP37FsavYSs%2bQPNn87oNNQDvpwuvIovXwlu0CqAoyTkbm4XsR0IYXoFa85qpoo7uSNYdYaZ1FZfI0UTyFlXtkBex71q38faFW9NtuTslOegcbgodpa5YTU9S2MqJGs4Ot1SR1663z4mOj27x7f5Ci4t3hB6dy6rbNgb09lmG5VrX8S07SbfRVcWU3%2bwCJQuy9EYFLtovDrS1O1CcbAR7HixbK0RXKBJhbMoOWkRVt4%2bUkVIkkxAROE2Wtii18uqbV%2fCu%2b0by%2bfDRoncZQtaV%2fP23AL6R7vHmyU4iTHbY5bQ6%2fGWyPrlXG%2bjujxXVuLTIw6%2fMy3s7yvZLERRCt4n8W4aWJjqqeNT7upPTxc8vtudr%2bqBrs%2f%2b%2fPkL"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHHbuJAAED%2fBWn3NsFlMDhStHLDFYgLxb4glxk8uOJxAUf5981q3%2flJ7%2fC%2bFjV69g6pC7p4%2f1qcNT84%2bov3Rd73LX1fLqu4jm%2boQnX%2fFs9Dh97SplrSIaFpR9qeNDVdxmyCY4FfAcwlGEAOs2AjJCuwgZtUWEOc8hy7bLtmJBnq6HJH0q6hDe7fPESboUsRXWaoLZvXv4rfx2lB%2f8QtAeOP%2fRP44BiOBcwKMCxoOzQSNP2mBWmDpkD1hwGpKf1HkwzWC06fyk5WRQcwnsoquV%2bFm9GYc7O4B015y1RIYKgwmeGxmseDNQkhmn09GQ123MzRWvSguBdPLw1WTRntzrUAOAwHa84cRyiDbl%2bvz8xJTwPmWNdDZGf7rq%2fMdi5Sr7CI04uZrXJK0Q2dsS8lFV%2fhQ5oNxggf6lXmTN3SD6vJUHtGgPlWE3xuYx7Lyd8yoYi0QG1RYZ22lqVo7r6F0i0JrrZJC7VHoZyrCps%2f2YdsWH5gIzdXza1iRhGIZjk6pKiYgrVjWe549rDpKzENZunBRg81uekUak4U7leldXnQcr5Vs2YB90AmbAY9qO6VrvbH8%2f4Ibd7QpxjbuXixfWYEeHRle0tYl%2fQvX4QYhuFzKsrJqdKwXOd3%2fKQM5zgoPMnCxOcyX6lb%2fyDbkWmMbkDmaRW4kcjYQB6dFm8uF0cZ3OemEnUtcbak3knrbudkjcM%2f4oS%2fRQSj5tKkKyT4aLy2KhKvYBDszzugo38x8O4lKT%2b7f%2fHZ4vv7Lw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '241503' + - '241521' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:45 GMT + - Fri, 21 Jan 2022 17:54:38 GMT expires: - '-1' pragma: @@ -885,7 +885,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 7c8cd533-bf84-4d64-a7b2-537d680b4e58 + - 23be5d23-fbae-493e-ad52-11164a4de747 status: code: 200 message: OK @@ -901,9 +901,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZLLjqJAAEX%2FxcXsquUp0ElngigiIAI%2BQDamgCqhkSqgAJXO%2FPs4mbs8OcnZ3J8ZQc%2FeLUnFZp8%2Fs2h9OJ4Os89Z0fcN%2B5zPa0jgDdWI9B9wGjr0kdF6zoaUZV3Z9CUlbA75FMOFKAMspBhIAuaBukhloEpqtlAknIkCP286OpY56th8V2YdZRT3HyFidOgyxOY5au709a9y6GFWsd%2BwKcH4tt%2BBL4ETeMDJgONB06GxRI9frCqbI60Q%2BbIkttX%2Fb61bQngUrjBYrsxR6rVGzx%2B3FYz2%2FlNI812xdh%2BCETutVRfOErQGH6vlKQmBNkiHPsO7S4SFKe5HogSYtDaOU6aFNTm1r9C9To%2FTXdYSc4ilrhP37FsavYSs%2BQPNn87oNNQDvpwuvIovXwlu0CqAoyTkbm4XsR0IYXoFa85qpoo7uSNYdYaZ1FZfI0UTyFlXtkBex71q38faFW9NtuTslOegcbgodpa5YTU9S2MqJGs4Ot1SR1663z4mOj27x7f5Ci4t3hB6dy6rbNgb09lmG5VrX8S07SbfRVcWU3%2BwCJQuy9EYFLtovDrS1O1CcbAR7HixbK0RXKBJhbMoOWkRVt4%2BUkVIkkxAROE2Wtii18uqbV%2FCu%2B0by%2BfDRoncZQtaV%2FP23AL6R7vHmyU4iTHbY5bQ6%2FGWyPrlXG%2BjujxXVuLTIw6%2FMy3s7yvZLERRCt4n8W4aWJjqqeNT7upPTxc8vtudr%2BqBrs%2F%2B%2FPkL + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHHbuJAAED%2FBWn3NsFlMDhStHLDFYgLxb4glxk8uOJxAUf5981q3%2FlJ7%2FC%2BFjV69g6pC7p4%2F1qcNT84%2Bov3Rd73LX1fLqu4jm%2BoQnX%2FFs9Dh97SplrSIaFpR9qeNDVdxmyCY4FfAcwlGEAOs2AjJCuwgZtUWEOc8hy7bLtmJBnq6HJH0q6hDe7fPESboUsRXWaoLZvXv4rfx2lB%2F8QtAeOP%2FRP44BiOBcwKMCxoOzQSNP2mBWmDpkD1hwGpKf1HkwzWC06fyk5WRQcwnsoquV%2BFm9GYc7O4B015y1RIYKgwmeGxmseDNQkhmn09GQ123MzRWvSguBdPLw1WTRntzrUAOAwHa84cRyiDbl%2Bvz8xJTwPmWNdDZGf7rq%2FMdi5Sr7CI04uZrXJK0Q2dsS8lFV%2FhQ5oNxggf6lXmTN3SD6vJUHtGgPlWE3xuYx7Lyd8yoYi0QG1RYZ22lqVo7r6F0i0JrrZJC7VHoZyrCps%2F2YdsWH5gIzdXza1iRhGIZjk6pKiYgrVjWe549rDpKzENZunBRg81uekUak4U7leldXnQcr5Vs2YB90AmbAY9qO6VrvbH8%2F4Ibd7QpxjbuXixfWYEeHRle0tYl%2FQvX4QYhuFzKsrJqdKwXOd3%2FKQM5zgoPMnCxOcyX6lb%2FyDbkWmMbkDmaRW4kcjYQB6dFm8uF0cZ3OemEnUtcbak3knrbudkjcM%2F4oS%2FRQSj5tKkKyT4aLy2KhKvYBDszzugo38x8O4lKT%2B7f%2FHZ4vv7Lw%3D%3D response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -1238,16 +1238,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7LjqJAAAD%2fhcPeWuQpmkw2MKDiiPL0wYU00GCL0NgNIk7m38fN1rmSqm%2buQc9ui5uKcYtv7mgFYRRwC%2b7SdS1b8HwNG1iiGjXdBL56iiYZqXnWpyyjuO0waRgPhbSAqqSAQkwLIIuFADQ1VYAma5k6k4tMEgW%2bpeSBc0QZ7%2bCMEkaKbuIjRnqaIcbnqL2R8V8l6GBWsb%2bwxeDxtt%2bBD3EqCmCqgKkAWooeGA1%2fWIXbkFSo%2bVjLzNb%2fY%2blrwR1FajqGqS1BfV5b4X1vBd4wxcfoGnWHemyqjZeZurg9gqe%2bnnu3dpegLtTKXkFxGTdxkdY2TdzZ3d%2fB0L57apqgrQB8oJRo30d3IzNHeoPj3fWdAzkdHPVQfW1AbMQFzU3FXUob%2bojU6ipAUyrPoTjYXjc6jvH5XF%2f087DXgjH7Gub9Np1uTf%2bKc8lI3c%2fz2VrJxhB59TEpLTHflztw3bwcgylkxM%2fLYK%2bepTVz6tmFjuWNXQPRSAzCXuF7zSoKGyPtFCVLP5e8AOAtjB%2f4dEvTfgXLWSG51vxENUMIiKzoRPd0nfv5%2bQU%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLrqJAAAX%2fxWRmhzwFNLmZgCCg%2bEBQ0Y1pmgYaELAbRLi5%2fz5O5ixqVUkl53tSoXfr4qqgk8X35GL6wcmfLCZZ2zZ0wbIPUIEUPVDVTsHYETSF9YOlXUQhwU2L64qygI8SIIszJhGihJGEhGdUOZoxqqRCWZESKAo825D6hWNEKLvFkNS0TtrpEdG6IxBRNkZNWQ%2f%2fKn4LYEH%2fgAYzr4%2f9CXwJnMAz3IzheKYh6IVR%2f5sWuAnqAlVftkQd7f9Mzea98NIZnm6oLoNydNRJYO%2b9TKkCX1YFtLKja%2bEk2bbBuCdzzWydRGzDhNPFUACWEJfl%2bE7eu0gW05mxdIUeJwMak9O5C%2b0epMTbaFbeiVAim6yUz2BVWpqP3BtzFQI%2fVMM6jpQh3%2bXuB1t%2fblwP6i1diball7XRpq2my1nXuSv3orR7Zrd8c8PbnS%2fXYebAjQU1NDiWQw75atCKYYdv3uGWcqVFFXzc4tRRTtXrFPsbLuxv4t0qAKb7UvP74kLXY7nV1%2fqziJHURIF5hd74PDKSCc%2fqk8frXADpmWJXdl8zWx65EXppZ9j3kmQovEva8ylrnJnqnyt%2fifHk5%2bcv\"}" headers: cache-control: - no-cache content-length: - - '233909' + - '233935' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:45 GMT + - Fri, 21 Jan 2022 17:54:38 GMT expires: - '-1' pragma: @@ -1259,7 +1259,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 4bbea32f-4224-49c2-bf2c-c6dbb12da056 + - b15fe68a-9425-4185-80a3-0417b1d01f19 status: code: 200 message: OK @@ -1275,22 +1275,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7LjqJAAAD%2FhcPeWuQpmkw2MKDiiPL0wYU00GCL0NgNIk7m38fN1rmSqm%2BuQc9ui5uKcYtv7mgFYRRwC%2B7SdS1b8HwNG1iiGjXdBL56iiYZqXnWpyyjuO0waRgPhbSAqqSAQkwLIIuFADQ1VYAma5k6k4tMEgW%2BpeSBc0QZ7%2BCMEkaKbuIjRnqaIcbnqL2R8V8l6GBWsb%2BwxeDxtt%2BBD3EqCmCqgKkAWooeGA1%2FWIXbkFSo%2BVjLzNb%2FY%2BlrwR1FajqGqS1BfV5b4X1vBd4wxcfoGnWHemyqjZeZurg9gqe%2Bnnu3dpegLtTKXkFxGTdxkdY2TdzZ3d%2FB0L57apqgrQB8oJRo30d3IzNHeoPj3fWdAzkdHPVQfW1AbMQFzU3FXUob%2BojU6ipAUyrPoTjYXjc6jvH5XF%2F087DXgjH7Gub9Np1uTf%2BKc8lI3c%2Fz2VrJxhB59TEpLTHflztw3bwcgylkxM%2FLYK%2BepTVz6tmFjuWNXQPRSAzCXuF7zSoKGyPtFCVLP5e8AOAtjB%2F4dEvTfgXLWSG51vxENUMIiKzoRPd0nfv5%2BQU%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLrqJAAAX%2FxWRmhzwFNLmZgCCg%2BEBQ0Y1pmgYaELAbRLi5%2Fz5O5ixqVUkl53tSoXfr4qqgk8X35GL6wcmfLCZZ2zZ0wbIPUIEUPVDVTsHYETSF9YOlXUQhwU2L64qygI8SIIszJhGihJGEhGdUOZoxqqRCWZESKAo825D6hWNEKLvFkNS0TtrpEdG6IxBRNkZNWQ%2F%2FKn4LYEH%2FgAYzr4%2F9CXwJnMAz3IzheKYh6IVR%2F5sWuAnqAlVftkQd7f9Mzea98NIZnm6oLoNydNRJYO%2B9TKkCX1YFtLKja%2BEk2bbBuCdzzWydRGzDhNPFUACWEJfl%2BE7eu0gW05mxdIUeJwMak9O5C%2B0epMTbaFbeiVAim6yUz2BVWpqP3BtzFQI%2FVMM6jpQh3%2BXuB1t%2FblwP6i1diball7XRpq2my1nXuSv3orR7Zrd8c8PbnS%2FXYebAjQU1NDiWQw75atCKYYdv3uGWcqVFFXzc4tRRTtXrFPsbLuxv4t0qAKb7UvP74kLXY7nV1%2FqziJHURIF5hd74PDKSCc%2Fqk8frXADpmWJXdl8zWx65EXppZ9j3kmQovEva8ylrnJnqnyt%2FifHk5%2Bcv response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2021-12-10-18-49-05-e0ea7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2021-12-10-18-49-05-e0ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-09T19:25:48.8480893Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-10T18:49:05.606183Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-43-4e8c3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:17:43.0432286Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-42-9dc41","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:42.0938506Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:17:42.0938506Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionywd6v7zsice5pqisap","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionywd6v7zsice5pqisap"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-20-17-22-34-89b33","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2022-01-20-17-22-34-89b33","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:22:33.8932667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:22:33.8932667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:32.9743841Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptioniwmsxin6o6ml324mmf/snapshots/2022-01-21-17-54-32-0221e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:32.0693662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:32.0693662Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptioniwmsxin6o6ml324mmf","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptioniwmsxin6o6ml324mmf"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:37.0642805Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:37.0642805Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsitetupbg5emutqjzn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsitetupbg5emutqjzn"}]}' headers: cache-control: - no-cache content-length: - - '77588' + - '98125' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:46 GMT + - Fri, 21 Jan 2022 17:54:38 GMT expires: - '-1' pragma: @@ -1302,7 +1302,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 7bd4f336-6ec4-49b5-8132-96f81ab5286e + - bb54f387-7dfd-4d89-8371-61a44c57637c status: code: 200 message: OK @@ -1320,7 +1320,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1331,11 +1331,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '199' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:47 GMT + - Fri, 21 Jan 2022 17:54:38 GMT expires: - '-1' pragma: @@ -1373,7 +1373,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1393,22 +1393,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:48.2261812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:39.7723691Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:48.2261812Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:39.7723691Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/da34a563-fb3a-4862-be3f-38a173076c91?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c5d2e0d5-a43c-4099-97de-e3817055c361?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1660' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:48 GMT + - Fri, 21 Jan 2022 17:54:39 GMT expires: - '-1' pragma: @@ -1438,13 +1438,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/da34a563-fb3a-4862-be3f-38a173076c91?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c5d2e0d5-a43c-4099-97de-e3817055c361?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/da34a563-fb3a-4862-be3f-38a173076c91\",\r\n - \ \"name\": \"da34a563-fb3a-4862-be3f-38a173076c91\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c5d2e0d5-a43c-4099-97de-e3817055c361\",\r\n + \ \"name\": \"c5d2e0d5-a43c-4099-97de-e3817055c361\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1453,7 +1453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:05 GMT + - Fri, 21 Jan 2022 17:54:57 GMT expires: - '-1' pragma: @@ -1485,14 +1485,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-48-c3b28\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-19-17-48-c3b28\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-40-edcd3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-40-edcd3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1507,20 +1507,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:48.2261812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:39.7723691Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:48.2261812Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:39.7723691Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:06 GMT + - Fri, 21 Jan 2022 17:54:57 GMT expires: - '-1' pragma: @@ -1552,14 +1552,14 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-48-c3b28\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-19-17-48-c3b28\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-40-edcd3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-40-edcd3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1574,20 +1574,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:48.2261812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:39.7723691Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:48.2261812Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:39.7723691Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2049' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:06 GMT + - Fri, 21 Jan 2022 17:54:58 GMT expires: - '-1' pragma: @@ -1621,7 +1621,7 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1633,7 +1633,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:18:07 GMT + - Fri, 21 Jan 2022 17:54:58 GMT expires: - '-1' pragma: @@ -1661,7 +1661,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -2104,16 +2104,16 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHZjqJAAEX%2fxWTmrVpWgU46ExURN1wAEV5IAYUUWwFVgNrpfx8nc3MfT3Jucr8nNXqwPa4LOvn8nngr23HtyeckY6yhn9NpBWt4RxWq2Qd89R36iEk1pX1E4w43DJOaTiEfpXAmyiAVohRIQsoDdRbJQJXUeKZIaSwK%2fLTpyIAT1NHpAccdoSRlHxdESd%2fFiE4T1JTk%2bc9iMxgX9A9sMBje9FvwJXACDzgZcDxoOjRgNP6mBW4cUqD6y5ToZv4%2fq7kpXBwhhOeFbgwS05p5Mt516MVDzoQ20Ddmxtz%2b4h6Dpauzs9GG2orgXFMsrrSJlMBbIoj0oagzRwsXjqawztq4bX7D1%2bC9JjuewuWbNy3AX8vhKmO%2f3%2fdGW93FLBBuzllREzvlWsc7bY1jNrMevZYHEuPWC1Q6iTF0zzMR7Wo7DkX0nLd2H5V1P1iMHyv%2bAHZH%2beRZ%2frbS1J04Lx3Qdx7Nz7ZjynqeSZtY9e%2bDD171pvSK7LRuqpWf8AF5yeelvFkZ%2bzzivPKwpp7pJW2B9RQagYOLgusFxxO23FrMeRq7K6Eyk3Lk8Eu%2fAOOKslO2WUPzcdHr8MDHXLpPqMaPiruuFQhZyU5RanOaPriwpjRrcI7McFk7%2b%2fyQ38Ud8K2bdr0V0iwPiHZYV8A%2f8efkyMmzB75rYOGSrPX83vO3XDQQOWzv1TPT8AAV1VSRANU03FnhdRhF0qe1IALbU44JmK%2fer%2f4Sk3cnPz9%2fAQ%3d%3d"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3HbqNAAIDhd%2fFhbxPDmGIiRSvKmLI0mxZ8sTAMBlPDUAJR3n2z2v%2f8S9%2fXrsWfo1m2Fdm9fu0i5PmBt3vdFePYk9f9vkna5IEb3I4vyTYN%2bCXtmj2Z7iQdyn4su5bsE%2fqeJ9yBBTm854CBOQ2O3J0FR%2baYcjyTpwdI7%2fuhm8sMD2RvlenQkS4fXy6YdNOQYrLPcF936z%2fFG5O0Ir%2bTvgTzz%2f0DvEEK0oBiAUWDfsBziZdfpCp7v6tw%2b6YxRBf%2fh0SNvvihK1uSIpiAuii0XHhNfJy1rdCrp9%2fVj0xhSiaWqUy70OhyAHwZM%2fgQWBDnM2QjehUujGAL4YqYpquvVtRyAObMZGyZaXK1P9gtX3Ly0%2bk53fcPVu1MNPStiPVUfUWsBvFUS7xxDg9Z0XidMufsJG4a1cYfyk2CumqoDrtoyrhyTHFCnAePelAv3okKwE1vFA8jIzwZf%2bRSR1Sqe7ZxqFGUKNC1xKXokyXmaFEhg3Fy9XNRSVL5J8zV4DPaOrdyCalWAxMZniskxK1qhB9bcprFZHs8mmXhed1zs6upSXbT%2bcwjOz3A0l4Fu3UszfsgSb%2bGjuM%2bAvCuJFN4924cEETURWawcIExrTl5HhRJdcTWYc%2fbE7U58RlLjYSYV1A%2fq%2fJNV7kllsPVMF1RkNUMNpLJDSci5dBhBQfIsnClG8tBTrQqEiYBFfKUbd8WqzDn4E45NzBd8Mx%2f2IAWABSQ9nl7f2cuXXpCsfgQxd33918%3d"}' headers: cache-control: - no-cache content-length: - - '241497' + - '241507' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:09 GMT + - Fri, 21 Jan 2022 17:55:00 GMT expires: - '-1' pragma: @@ -2125,7 +2125,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 043cd723-334b-4826-9934-09ddcfe75ac8 + - 57d9fc5b-b762-4bbf-887c-4c7dc5c39f3c status: code: 200 message: OK @@ -2141,9 +2141,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHZjqJAAEX%2FxWTmrVpWgU46ExURN1wAEV5IAYUUWwFVgNrpfx8nc3MfT3Jucr8nNXqwPa4LOvn8nngr23HtyeckY6yhn9NpBWt4RxWq2Qd89R36iEk1pX1E4w43DJOaTiEfpXAmyiAVohRIQsoDdRbJQJXUeKZIaSwK%2FLTpyIAT1NHpAccdoSRlHxdESd%2FFiE4T1JTk%2Bc9iMxgX9A9sMBje9FvwJXACDzgZcDxoOjRgNP6mBW4cUqD6y5ToZv4%2Fq7kpXBwhhOeFbgwS05p5Mt516MVDzoQ20Ddmxtz%2B4h6Dpauzs9GG2orgXFMsrrSJlMBbIoj0oagzRwsXjqawztq4bX7D1%2BC9JjuewuWbNy3AX8vhKmO%2F3%2FdGW93FLBBuzllREzvlWsc7bY1jNrMevZYHEuPWC1Q6iTF0zzMR7Wo7DkX0nLd2H5V1P1iMHyv%2BAHZH%2BeRZ%2FrbS1J04Lx3Qdx7Nz7ZjynqeSZtY9e%2BDD171pvSK7LRuqpWf8AF5yeelvFkZ%2BzzivPKwpp7pJW2B9RQagYOLgusFxxO23FrMeRq7K6Eyk3Lk8Eu%2FAOOKslO2WUPzcdHr8MDHXLpPqMaPiruuFQhZyU5RanOaPriwpjRrcI7McFk7%2B%2FyQ38Ud8K2bdr0V0iwPiHZYV8A%2F8efkyMmzB75rYOGSrPX83vO3XDQQOWzv1TPT8AAV1VSRANU03FnhdRhF0qe1IALbU44JmK%2Fer%2F4Sk3cnPz9%2FAQ%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3HbqNAAIDhd%2FFhbxPDmGIiRSvKmLI0mxZ8sTAMBlPDUAJR3n2z2v%2F8S9%2FXrsWfo1m2Fdm9fu0i5PmBt3vdFePYk9f9vkna5IEb3I4vyTYN%2BCXtmj2Z7iQdyn4su5bsE%2FqeJ9yBBTm854CBOQ2O3J0FR%2BaYcjyTpwdI7%2Fuhm8sMD2RvlenQkS4fXy6YdNOQYrLPcF936z%2FFG5O0Ir%2BTvgTzz%2F0DvEEK0oBiAUWDfsBziZdfpCp7v6tw%2B6YxRBf%2Fh0SNvvihK1uSIpiAuii0XHhNfJy1rdCrp9%2FVj0xhSiaWqUy70OhyAHwZM%2FgQWBDnM2QjehUujGAL4YqYpquvVtRyAObMZGyZaXK1P9gtX3Ly0%2Bk53fcPVu1MNPStiPVUfUWsBvFUS7xxDg9Z0XidMufsJG4a1cYfyk2CumqoDrtoyrhyTHFCnAePelAv3okKwE1vFA8jIzwZf%2BRSR1Sqe7ZxqFGUKNC1xKXokyXmaFEhg3Fy9XNRSVL5J8zV4DPaOrdyCalWAxMZniskxK1qhB9bcprFZHs8mmXhed1zs6upSXbT%2BcwjOz3A0l4Fu3UszfsgSb%2BGjuM%2BAvCuJFN4924cEETURWawcIExrTl5HhRJdcTWYc%2FbE7U58RlLjYSYV1A%2Fq%2FJNV7kllsPVMF1RkNUMNpLJDSci5dBhBQfIsnClG8tBTrQqEiYBFfKUbd8WqzDn4E45NzBd8Mx%2F2IAWABSQ9nl7f2cuXXpCsfgQxd33918%3D response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -2478,16 +2478,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3bjqIwAIDhd%2bFi7yoUENFksimKgOCKgIN6Y0o5DCotQzkIk3n3nc3%2b13%2fyfQk0e7VeSR9cWH0JsRlGp1BYCR9tW%2fOVKFaY4iKrMtrO8NQ12YywSuRdwklT1m3JKBcxTHKsKXOQy0kOVDmHQNeSOdBVnWgLNSeKDMW6YX2ZZg0X9yVpGGd5OwsyzrqGZFxMs%2frJxn9K2GLy4L9xXYL%2b5%2f4B3mRJhkCaAwmCusn6Mht%2b8UdZR%2byR0Tdb5Q76n4ls6A9xsz4akf5cync%2fHOTgOTmXM54wTJPz7iAxN7YL33V2wZaH0Ddz2uZ6sV0uJmfab%2fy9Bt912gKfpkZ5YgG53a6AkI31UqLcfSc12l1uoxwEGq74%2brOjIX8e%2bzvykk8%2fksMxHTUFHmoTxIWkbUIsG6HRBa%2fCiZ3B2cSG%2b%2fJ2Q%2bNCEissrhrb9PmB69ePIqIFMoL11QNoc5U0pGgm3Q%2fWVFHXszxEG8uM%2bBh1Vu%2bu43HnXzzdLqc%2f%2ftxWj6l%2bN2lyP9mBvO3Zp2wleJTayxIp5%2f42wVe3UJboPG79Xn2gI0LC9%2fdf\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAEX%2fxWTmDZGCgCYnE0S8g2JF1BdSSsGKQqUFwZPz7%2bNkdtbjSlayv3sFacWGFjnvjb97oQMPAeyNe1chGB%2fL8gMVKCMPUog%2betcV6ePyIfM65riiTNCy4DJS4hTp6lBKQZxKGkgVydTjoWRqJtYNLcUqUGRWlQ1NSMVll%2bKq5GUq%2bnvCy7rChMsJYfey%2b1eBAuGc%2f0GMSs3H%2fgS%2bwAAo0mAoDRSJVaSh5PWb55QdypwUXwuNL63%2fc6wF8NXwOfUn9kwF4UhMEnoL8xAXM5AkWzENjUCwG7R1pwPrDdwZtjPyckPK7Et9KIqzdHbfO2%2bVLqPGgHZuWnXcbaJVPNP38xan184WVmYjYjQKzZ%2fz0%2f1Yzn00uZhikdxi7xK3qA2bplwCd7fdDiYb1YNG%2b7BOyZnZx4x310G2e1prrQ7AUUV37TIR7Xs%2fVayLQbfcjnFmdxvFUtvr0ILn%2bdVlC%2bmF4A3i9jL3%2fSB57tXngs3QWnOj9zwglD%2fYDvrZyQ1G3cPKMgWuGxx4jKZguVLWEba3QMuZ6WVbxWdDRzVBdPaWqqM1Gbi%2fOD7oUWR5XvLSp3vL%2bTz5S00%2b9H5%2b%2fgI%3d\"}" headers: cache-control: - no-cache content-length: - - '233913' + - '233951' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:10 GMT + - Fri, 21 Jan 2022 17:55:01 GMT expires: - '-1' pragma: @@ -2499,7 +2499,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 96268fcc-df29-4873-9e7f-03e5e8ca55ff + - 0cfa522b-0ed7-4782-8ce6-5cbc4a317fd0 status: code: 200 message: OK @@ -2515,22 +2515,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3bjqIwAIDhd%2BFi7yoUENFksimKgOCKgIN6Y0o5DCotQzkIk3n3nc3%2B13%2FyfQk0e7VeSR9cWH0JsRlGp1BYCR9tW%2FOVKFaY4iKrMtrO8NQ12YywSuRdwklT1m3JKBcxTHKsKXOQy0kOVDmHQNeSOdBVnWgLNSeKDMW6YX2ZZg0X9yVpGGd5OwsyzrqGZFxMs%2FrJxn9K2GLy4L9xXYL%2B5%2F4B3mRJhkCaAwmCusn6Mht%2B8UdZR%2ByR0Tdb5Q76n4ls6A9xsz4akf5cync%2FHOTgOTmXM54wTJPz7iAxN7YL33V2wZaH0Ddz2uZ6sV0uJmfab%2Fy9Bt912gKfpkZ5YgG53a6AkI31UqLcfSc12l1uoxwEGq74%2BrOjIX8e%2Bzvykk8%2FksMxHTUFHmoTxIWkbUIsG6HRBa%2FCiZ3B2cSG%2B%2FJ2Q%2BNCEissrhrb9PmB69ePIqIFMoL11QNoc5U0pGgm3Q%2FWVFHXszxEG8uM%2BBh1Vu%2Bu43HnXzzdLqc%2F%2FtxWj6l%2BN2lyP9mBvO3Zp2wleJTayxIp5%2F42wVe3UJboPG79Xn2gI0LC9%2Fdf + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAEX%2FxWTmDZGCgCYnE0S8g2JF1BdSSsGKQqUFwZPz7%2BNkdtbjSlayv3sFacWGFjnvjb97oQMPAeyNe1chGB%2FL8gMVKCMPUog%2BetcV6ePyIfM65riiTNCy4DJS4hTp6lBKQZxKGkgVydTjoWRqJtYNLcUqUGRWlQ1NSMVll%2BKq5GUq%2BnvCy7rChMsJYfey%2B1eBAuGc%2F0GMSs3H%2FgS%2BwAAo0mAoDRSJVaSh5PWb55QdypwUXwuNL63%2Fc6wF8NXwOfUn9kwF4UhMEnoL8xAXM5AkWzENjUCwG7R1pwPrDdwZtjPyckPK7Et9KIqzdHbfO2%2BVLqPGgHZuWnXcbaJVPNP38xan184WVmYjYjQKzZ%2Fz0%2F1Yzn00uZhikdxi7xK3qA2bplwCd7fdDiYb1YNG%2B7BOyZnZx4x310G2e1prrQ7AUUV37TIR7Xs%2FVayLQbfcjnFmdxvFUtvr0ILn%2BdVlC%2BmF4A3i9jL3%2FSB57tXngs3QWnOj9zwglD%2FYDvrZyQ1G3cPKMgWuGxx4jKZguVLWEba3QMuZ6WVbxWdDRzVBdPaWqqM1Gbi%2FOD7oUWR5XvLSp3vL%2BTz5S00%2B9H5%2B%2FgI%3D response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2021-12-10-18-49-05-e0ea7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2021-12-10-18-49-05-e0ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-09T19:25:48.8480893Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-10T18:49:05.606183Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-20-17-22-34-89b33","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2022-01-20-17-22-34-89b33","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:22:33.8932667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:22:33.8932667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"}]}' headers: cache-control: - no-cache content-length: - - '76417' + - '95534' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:10 GMT + - Fri, 21 Jan 2022 17:55:01 GMT expires: - '-1' pragma: @@ -2542,7 +2542,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ebd37f2c-ba12-439f-8708-774e6c45c1fa + - 671d1588-3de5-4978-88c9-ca83f20fa5e3 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index 967876c8160..1d880c67d0d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '331' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:36 GMT + - Fri, 21 Jan 2022 17:53:31 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:36.9059993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:36.9059993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47e100d-b173-48d9-a2c7-e02824c93117?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1603' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:36 GMT + - Fri, 21 Jan 2022 17:53:31 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47e100d-b173-48d9-a2c7-e02824c93117?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47e100d-b173-48d9-a2c7-e02824c93117\",\r\n - \ \"name\": \"e47e100d-b173-48d9-a2c7-e02824c93117\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da\",\r\n + \ \"name\": \"2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:54 GMT + - Fri, 21 Jan 2022 17:53:48 GMT expires: - '-1' pragma: @@ -178,13 +178,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-36-5c8e1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2021-12-15-19-16-36-5c8e1\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-31-ed476\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-17-53-31-ed476\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,20 +198,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:36.9059993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:36.9059993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:54 GMT + - Fri, 21 Jan 2022 17:53:48 GMT expires: - '-1' pragma: @@ -243,15 +243,15 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: body: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-36-5c8e1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-31-ed476\",\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2021-12-15-19-16-36-5c8e1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-17-53-31-ed476\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -267,9 +267,9 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:36.9059993Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:36.9059993Z\"\r\n },\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" @@ -277,11 +277,11 @@ interactions: cache-control: - no-cache content-length: - - '2481' + - '2325' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:54 GMT + - Fri, 21 Jan 2022 17:53:48 GMT expires: - '-1' pragma: @@ -313,13 +313,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2021-12-15-19-16-36-5c8e1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2021-12-15-19-16-36-5c8e1\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-31-ed476\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-17-53-31-ed476\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -333,20 +333,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:36.9059993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:36.9059993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:55 GMT + - Fri, 21 Jan 2022 17:53:49 GMT expires: - '-1' pragma: @@ -380,7 +380,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -392,7 +392,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:16:55 GMT + - Fri, 21 Jan 2022 17:53:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml index 7ca68683393..61f935ba9c2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '334' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:54 GMT + - Fri, 21 Jan 2022 17:53:47 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:55.4763578Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:55.4763578Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2a6ba180-6b70-4dec-b2a5-972e5be0ff62?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3b95652-ff33-4603-8aca-8c5f607d4132?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1610' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:54 GMT + - Fri, 21 Jan 2022 17:53:48 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2a6ba180-6b70-4dec-b2a5-972e5be0ff62?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3b95652-ff33-4603-8aca-8c5f607d4132?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2a6ba180-6b70-4dec-b2a5-972e5be0ff62\",\r\n - \ \"name\": \"2a6ba180-6b70-4dec-b2a5-972e5be0ff62\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3b95652-ff33-4603-8aca-8c5f607d4132\",\r\n + \ \"name\": \"b3b95652-ff33-4603-8aca-8c5f607d4132\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:11 GMT + - Fri, 21 Jan 2022 17:54:05 GMT expires: - '-1' pragma: @@ -178,13 +178,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-55-06242\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-19-16-55-06242\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,20 +198,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:55.4763578Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:55.4763578Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2097' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:12 GMT + - Fri, 21 Jan 2022 17:54:05 GMT expires: - '-1' pragma: @@ -243,7 +243,7 @@ interactions: ParameterSetName: - --stack-name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -251,7 +251,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-19-16-55-06242\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -267,21 +267,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:55.4763578Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:55.4763578Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-55-06242\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-16-55-06242\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-53-48-9dde8\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2278' + - '2185' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:13 GMT + - Fri, 21 Jan 2022 17:54:05 GMT expires: - '-1' pragma: @@ -313,7 +313,7 @@ interactions: ParameterSetName: - --stack User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -321,7 +321,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-19-16-55-06242\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -337,21 +337,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:55.4763578Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:55.4763578Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-55-06242\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-16-55-06242\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-53-48-9dde8\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2278' + - '2185' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:14 GMT + - Fri, 21 Jan 2022 17:54:06 GMT expires: - '-1' pragma: @@ -383,13 +383,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2021-12-15-19-16-55-06242\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2021-12-15-19-16-55-06242\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -403,20 +403,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:55.4763578Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:55.4763578Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2097' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:14 GMT + - Fri, 21 Jan 2022 17:54:07 GMT expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -462,7 +462,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:14 GMT + - Fri, 21 Jan 2022 17:54:07 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml index 85af5e6c731..663df5715c9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -24,11 +24,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '206' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:58 GMT + - Fri, 21 Jan 2022 17:53:51 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:59.4644282Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:59.4644282Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cf54105f-3255-498e-8f63-7b72e83a3d90?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1ba518a-fdf5-4938-adb3-380b24eb48fc?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1674' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:16:59 GMT + - Fri, 21 Jan 2022 17:53:52 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cf54105f-3255-498e-8f63-7b72e83a3d90?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1ba518a-fdf5-4938-adb3-380b24eb48fc?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cf54105f-3255-498e-8f63-7b72e83a3d90\",\r\n - \ \"name\": \"cf54105f-3255-498e-8f63-7b72e83a3d90\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1ba518a-fdf5-4938-adb3-380b24eb48fc\",\r\n + \ \"name\": \"b1ba518a-fdf5-4938-adb3-380b24eb48fc\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:16 GMT + - Fri, 21 Jan 2022 17:54:10 GMT expires: - '-1' pragma: @@ -178,14 +178,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-00-178ed\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-19-17-00-178ed\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,20 +200,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:59.4644282Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:59.4644282Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2070' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:16 GMT + - Fri, 21 Jan 2022 17:54:10 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: ParameterSetName: - --stack-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -253,7 +253,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-19-17-00-178ed\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -270,21 +270,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:59.4644282Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:59.4644282Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-00-178ed\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-00-178ed\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-53-53-3590d\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2179' + - '2177' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:19 GMT + - Fri, 21 Jan 2022 17:54:11 GMT expires: - '-1' pragma: @@ -316,7 +316,7 @@ interactions: ParameterSetName: - --stack User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -324,7 +324,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-19-17-00-178ed\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -341,21 +341,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2021-12-15T19:16:59.4644282Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2021-12-15T19:16:59.4644282Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-00-178ed\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-00-178ed\"\r\n }\r\n ]\r\n}" + \"2022-01-21-17-53-53-3590d\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2179' + - '2177' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:19 GMT + - Fri, 21 Jan 2022 17:54:12 GMT expires: - '-1' pragma: @@ -387,14 +387,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2021-12-15-19-17-00-178ed\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-12-15-19-17-00-178ed\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -409,20 +409,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:16:59.4644282Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:16:59.4644282Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2070' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:20 GMT + - Fri, 21 Jan 2022 17:54:12 GMT expires: - '-1' pragma: @@ -456,7 +456,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -468,7 +468,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:21 GMT + - Fri, 21 Jan 2022 17:54:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index 0444f6cc8f0..31e36e84410 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -24,11 +24,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '197' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:18 GMT + - Fri, 21 Jan 2022 17:54:09 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:18.245014Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:09.8081834Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:18.245014Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:09.8081834Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3744723a-67b3-48de-a1a8-b30c447a581e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/343f71f9-8404-47f4-93cd-9d706d08b450?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1676' + - '1656' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:18 GMT + - Fri, 21 Jan 2022 17:54:10 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3744723a-67b3-48de-a1a8-b30c447a581e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/343f71f9-8404-47f4-93cd-9d706d08b450?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3744723a-67b3-48de-a1a8-b30c447a581e\",\r\n - \ \"name\": \"3744723a-67b3-48de-a1a8-b30c447a581e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/343f71f9-8404-47f4-93cd-9d706d08b450\",\r\n + \ \"name\": \"343f71f9-8404-47f4-93cd-9d706d08b450\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:36 GMT + - Fri, 21 Jan 2022 17:54:27 GMT expires: - '-1' pragma: @@ -178,14 +178,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-18-9b8af\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-15-19-17-18-9b8af\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-10-8c712\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-17-54-10-8c712\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,20 +200,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:18.245014Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:09.8081834Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:18.245014Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:09.8081834Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2074' + - '2043' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:36 GMT + - Fri, 21 Jan 2022 17:54:27 GMT expires: - '-1' pragma: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -686,16 +686,16 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHLjqJAAEX%2fxWRmVy1voZPOxOYhKgoigrIhxUsRiiqrAJFO%2f%2fv0ZG7O8iRncb9mbTF2TtXWbPb%2bNYvMY3A6zt5nt64j7H0%2bR7CF1wIVbfcGp54WbxlGc9anLKMV6Srcsjnk0xIqogxKIS2BJJQ8UJVUBqqkZspCKjNR4OeE4qHKC8rmuyqjmOGye%2fMLhnuaFWyeF6TBr3%2bVYwezmv2BpALDj%2f0T%2bBA4gQecDDgeEFoMVfH8zeqKBLgu2g9bYuvl%2f5lLW%2fAD0YO7T8MapE4jy%2fx5NWAhlXqQ7neNqb%2fSxjYVL%2fzcWuChkwSsYsMhsaKZ5M4LBk%2fJ4tx5geKJgWZ7tBNyfA8eYbxthhFsFU5llbhRRU1GUQzOqJ4qSE6u1IQNx60Smxs0p%2barV1ySwjjAQVJyJ9%2fczpuD4KeJap1s4tTciQ7gk%2bpWjHRhuo5gETyq3DxniALVeiWjlT7DfsVpWNHIererR%2fckSUW8sdOlZU%2fSPkP%2bWcfCJcrCWzuSqyiv1%2bZ6CkEYHrZMsOMMnpBewn18jxpkHqcVgHsvuh%2fSaOXpi8tt0FnqE9oVes%2be4vNh7H0Vj3elRdrFtajgAwku7kHd7SMmnjuC5dwZuG3XsfxVGciZXrkauml2c300QefGEhp0rsuEoxeM1xJZ%2fNm%2bXvpyd8JeeT1uLscQ4bDWo0SV9nJjUsUZkOz1eDgQ97bQPZHWvd0%2bUSKHag62LVGTZGkSw%2fCy5fLfvb%2fE%2fIfZ9%2fdf"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JbptAAIDhd%2fGht4kBjzFEiir2bYzDYjtwsVhmDGE1g4EQ5d3bqv%2f5l77vTYuXEZVtRTev35urFoTnYPO6Kcaxp6%2fbbZO0yR03uB1fkvU54Jesa7b0mdJsKPux7Fq6TdiUJPxuDwiXEgA5wgKBT%2fdAgELGHyDJdhy77YduKnM80O2xzIaOdmR88THtnkOG6TbHfd19%2fVOCMckq%2bjvpSzD9vf8CbxzDsYDZA4YF%2fYCnEs%2b%2faFX2YVfh9s2E1JL%2bp0km64eXd%2bUoqyICjK%2byShE0kTCZa2FVn2FX33MVljBSmNz0Wc3fgUMZQbwGRjqZ7CSs8UH0oeiKly8NNl0dH68tDzgCn%2faaI8TX4eC2hytzMbKQObftM3Zydxgbq1%2brzK%2fsEo1i7qicUg3PwXRrSSU3%2bJBWkzGjh3qTOcuwjdN%2bNtWR4WGha3zACda5ngOdiUSshWqPK%2fui27aieW4PpXsa3hyLVuqII7lQFbZY2Ids2kHoYK9QLV2x4hjEqxyfMlzN4QHZtjddfWIFSkLDVXqw8UNN7waFGoojd1%2fbHw9ar%2fdm1WzgncqZWOEIms%2fGUMfz1T1DZ2cac0KcQvxwAmYCZPJkRy9Zrxy%2fAhESGEXLXNUzarKoPhSfZKEMhxCOLjI%2f7wp516h6cJKd2DInLyzXeR96scg4QJ5QT4SPD6Q8vUVoRENLkV62s4YUgGodi2ZIju8oQIsphsORC97Zm3sm3DRxu%2bUiEn25SX7X5tV8l%2b6StPn5%2bQM%3d"}' headers: cache-control: - no-cache content-length: - - '241517' + - '241521' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:37 GMT + - Fri, 21 Jan 2022 17:54:28 GMT expires: - '-1' pragma: @@ -707,7 +707,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - f372742a-a900-4ce9-8a76-88738584c64e + - 598eb98c-3ec2-4a72-b309-2f3bf40da282 status: code: 200 message: OK @@ -723,9 +723,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHLjqJAAEX%2FxWRmVy1voZPOxOYhKgoigrIhxUsRiiqrAJFO%2F%2Fv0ZG7O8iRncb9mbTF2TtXWbPb%2BNYvMY3A6zt5nt64j7H0%2BR7CF1wIVbfcGp54WbxlGc9anLKMV6Srcsjnk0xIqogxKIS2BJJQ8UJVUBqqkZspCKjNR4OeE4qHKC8rmuyqjmOGye%2FMLhnuaFWyeF6TBr3%2BVYwezmv2BpALDj%2F0T%2BBA4gQecDDgeEFoMVfH8zeqKBLgu2g9bYuvl%2F5lLW%2FAD0YO7T8MapE4jy%2Fx5NWAhlXqQ7neNqb%2FSxjYVL%2FzcWuChkwSsYsMhsaKZ5M4LBk%2FJ4tx5geKJgWZ7tBNyfA8eYbxthhFsFU5llbhRRU1GUQzOqJ4qSE6u1IQNx60Smxs0p%2BarV1ySwjjAQVJyJ9%2FczpuD4KeJap1s4tTciQ7gk%2BpWjHRhuo5gETyq3DxniALVeiWjlT7DfsVpWNHIererR%2FckSUW8sdOlZU%2FSPkP%2BWcfCJcrCWzuSqyiv1%2BZ6CkEYHrZMsOMMnpBewn18jxpkHqcVgHsvuh%2FSaOXpi8tt0FnqE9oVes%2Be4vNh7H0Vj3elRdrFtajgAwku7kHd7SMmnjuC5dwZuG3XsfxVGciZXrkauml2c300QefGEhp0rsuEoxeM1xJZ%2FNm%2BXvpyd8JeeT1uLscQ4bDWo0SV9nJjUsUZkOz1eDgQ97bQPZHWvd0%2BUSKHag62LVGTZGkSw%2FCy5fLfvb%2FE%2FIfZ9%2Fdf + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JbptAAIDhd%2FGht4kBjzFEiir2bYzDYjtwsVhmDGE1g4EQ5d3bqv%2F5l77vTYuXEZVtRTev35urFoTnYPO6Kcaxp6%2FbbZO0yR03uB1fkvU54Jesa7b0mdJsKPux7Fq6TdiUJPxuDwiXEgA5wgKBT%2FdAgELGHyDJdhy77YduKnM80O2xzIaOdmR88THtnkOG6TbHfd19%2FVOCMckq%2BjvpSzD9vf8CbxzDsYDZA4YF%2FYCnEs%2B%2FaFX2YVfh9s2E1JL%2Bp0km64eXd%2BUoqyICjK%2ByShE0kTCZa2FVn2FX33MVljBSmNz0Wc3fgUMZQbwGRjqZ7CSs8UH0oeiKly8NNl0dH68tDzgCn%2FaaI8TX4eC2hytzMbKQObftM3Zydxgbq1%2BrzK%2FsEo1i7qicUg3PwXRrSSU3%2BJBWkzGjh3qTOcuwjdN%2BNtWR4WGha3zACda5ngOdiUSshWqPK%2Fui27aieW4PpXsa3hyLVuqII7lQFbZY2Ids2kHoYK9QLV2x4hjEqxyfMlzN4QHZtjddfWIFSkLDVXqw8UNN7waFGoojd1%2FbHw9ar%2Fdm1WzgncqZWOEIms%2FGUMfz1T1DZ2cac0KcQvxwAmYCZPJkRy9Zrxy%2FAhESGEXLXNUzarKoPhSfZKEMhxCOLjI%2F7wp516h6cJKd2DInLyzXeR96scg4QJ5QT4SPD6Q8vUVoRENLkV62s4YUgGodi2ZIju8oQIsphsORC97Zm3sm3DRxu%2BUiEn25SX7X5tV8l%2B6StPn5%2BQM%3D response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -1060,16 +1060,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrppAAEX%2fhaR9G7nfTE4aUCtwREUQpS9mgAFHhcEZQODk%2fHttup9X1kr2F1ejod3g%2bs64%2bRd3WoXRMeTm3LVtGzbn%2bQrWsEQVqtsZnDqKZhmpeNalLKO4aTGpGQ%2fFtICarIJCSgugSIUIDC1VgaEYmaYrRSZLIt9Q0uMcUcb7OKOEkaKdHRAjHc0Q43PUPMj4rxK2MLuzX7DBoH%2fT78CHJEgiEFQgiKChqMfo9ZPdcRORO6o%2fHIW51v%2btLEfcR6d%2bEdiRsdFbB4lXdtvcyuQMJyjm6dnbHoXcW5K953oHRyvDBy7ktjDKvSZXcZWsYfLQemXXgB3Nbfxwc%2f8i%2fwEmgeINVNcYqkdrMV2KhT4difmoYmbG9%2bc6YYx1m3jnqVvh81acNCHS4PJM%2bggNm8AefMO2XuvBelrrKRiHcTBpuE3imhzUT3259xfE8BoSOG%2f5AQQJyFCyAktB87H%2feo54wtbKeZVE8oMe05vSd9ZptPdpeFIH1e3RsnORWrqjshrMOBTQlWqfDdAltv19doKtrBfCJUuf5kW7vgQHl%2fb7rh9yzn1%2f%2fwU%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAAD%2fxWT3DZHKTZOTDYgKqCgUvL2YWgoUFLAFFU7Ov6%2bbnedJJpnvQUnezZqWBR9MvweHOQwjOJgOsqap%2bVQU76hEKbmTshmivmVkiKu7yNsrx4zWDa1KLiLpmiB1rAgJuCaCDBJJ0NWrIuiyjlVNTvAYSGLNqieNCePihmJW8SpphgHhVcsw4WJM6lvV%2favABuGC%2f0E1FZ4f%2bxP4AiMgCSNFGElCzciTktdvXtA6rApSftkyd4z%2fzA1b8o%2bRYPmmpa91nO%2byWSEtNJhpd%2bvRYXA05pK0ywynuadG4FycB6qfE7CwJ1Z8U0q3X3Zd3yVv76qOU8WarcGLXjrUk2jfHu0XTpm%2fMpY50eITW2U3dY8Wt6UByToQziCER%2f1Q7ZkGLC9fd7m3gRML2dvlyYwlmrqHWe%2fY0BCqE6MKlFrNf1r%2bM8aFf%2fGXBznXjPvYcTj16CqUe2wsvNxpD9Yh2roZ28jzfF3BreRoihXBzNbBefJ24YNNajjHps2gL4cGCpBi7dvVDLzty2KuZnGb7WoXB%2bZRfmzOD%2fPYubu6vaSYJeHmPVtp3juwS13nF2dEzCJKzc%2fKX%2bN48PPzFw%3d%3d\"}" headers: cache-control: - no-cache content-length: - - '233909' + - '233941' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:38 GMT + - Fri, 21 Jan 2022 17:54:29 GMT expires: - '-1' pragma: @@ -1081,7 +1081,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 74d4d35c-2349-48e7-8935-e0d294dc0f27 + - 56c15c9f-e4b1-4cfd-bc98-20f526461e85 status: code: 200 message: OK @@ -1097,22 +1097,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrppAAEX%2FhaR9G7nfTE4aUCtwREUQpS9mgAFHhcEZQODk%2FHttup9X1kr2F1ejod3g%2Bs64%2BRd3WoXRMeTm3LVtGzbn%2BQrWsEQVqtsZnDqKZhmpeNalLKO4aTGpGQ%2FFtICarIJCSgugSIUIDC1VgaEYmaYrRSZLIt9Q0uMcUcb7OKOEkaKdHRAjHc0Q43PUPMj4rxK2MLuzX7DBoH%2FT78CHJEgiEFQgiKChqMfo9ZPdcRORO6o%2FHIW51v%2BtLEfcR6d%2BEdiRsdFbB4lXdtvcyuQMJyjm6dnbHoXcW5K953oHRyvDBy7ktjDKvSZXcZWsYfLQemXXgB3Nbfxwc%2F8i%2FwEmgeINVNcYqkdrMV2KhT4difmoYmbG9%2Bc6YYx1m3jnqVvh81acNCHS4PJM%2BggNm8AefMO2XuvBelrrKRiHcTBpuE3imhzUT3259xfE8BoSOG%2F5AQQJyFCyAktB87H%2Feo54wtbKeZVE8oMe05vSd9ZptPdpeFIH1e3RsnORWrqjshrMOBTQlWqfDdAltv19doKtrBfCJUuf5kW7vgQHl%2Fb7rh9yzn1%2F%2FwU%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAAD%2FxWT3DZHKTZOTDYgKqCgUvL2YWgoUFLAFFU7Ov6%2BbnedJJpnvQUnezZqWBR9MvweHOQwjOJgOsqap%2BVQU76hEKbmTshmivmVkiKu7yNsrx4zWDa1KLiLpmiB1rAgJuCaCDBJJ0NWrIuiyjlVNTvAYSGLNqieNCePihmJW8SpphgHhVcsw4WJM6lvV%2FavABuGC%2F0E1FZ4f%2BxP4AiMgCSNFGElCzciTktdvXtA6rApSftkyd4z%2FzA1b8o%2BRYPmmpa91nO%2ByWSEtNJhpd%2BvRYXA05pK0ywynuadG4FycB6qfE7CwJ1Z8U0q3X3Zd3yVv76qOU8WarcGLXjrUk2jfHu0XTpm%2FMpY50eITW2U3dY8Wt6UByToQziCER%2F1Q7ZkGLC9fd7m3gRML2dvlyYwlmrqHWe%2FY0BCqE6MKlFrNf1r%2BM8aFf%2FGXBznXjPvYcTj16CqUe2wsvNxpD9Yh2roZ28jzfF3BreRoihXBzNbBefJ24YNNajjHps2gL4cGCpBi7dvVDLzty2KuZnGb7WoXB%2BZRfmzOD%2FPYubu6vaSYJeHmPVtp3juwS13nF2dEzCJKzc%2FKX%2BN48PPzFw%3D%3D response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2021-12-10-18-49-05-e0ea7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2021-12-10-18-49-05-e0ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-09T19:25:48.8480893Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-10T18:49:05.606183Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-17-21-594b1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-17-21-594b1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:17:20.8678891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-18-9b8af","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-15-19-17-18-9b8af","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:18.245014Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:17:18.245014Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription66x4wcaud3j4kro/snapshots/2021-12-15-19-17-24-a4623","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-15-19-17-24-a4623","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:24.0636562Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:17:24.0636562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription66x4wcaud3j4kro","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription66x4wcaud3j4kro"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-20-17-22-34-89b33","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2022-01-20-17-22-34-89b33","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:22:33.8932667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:22:33.8932667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-11-497ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:11.758217Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-10-8c712","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-17-54-10-8c712","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:09.8081834Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:09.8081834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhzutvijzgsznkw2/snapshots/2022-01-21-17-54-17-0d701","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:17.2738011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:17.2738011Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhzutvijzgsznkw2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionhzutvijzgsznkw2"}]}' headers: cache-control: - no-cache content-length: - - '79601' + - '98686' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:38 GMT + - Fri, 21 Jan 2022 17:54:29 GMT expires: - '-1' pragma: @@ -1124,7 +1124,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 6371a193-7e0c-4b85-9e15-6fdab488a082 + - 3874c7e1-b190-4903-b6e4-85748efea2fc status: code: 200 message: OK @@ -1142,14 +1142,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-18-9b8af\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-15-19-17-18-9b8af\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-10-8c712\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-17-54-10-8c712\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1164,20 +1164,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:18.245014Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:09.8081834Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:18.245014Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:09.8081834Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2074' + - '2043' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:40 GMT + - Fri, 21 Jan 2022 17:54:31 GMT expires: - '-1' pragma: @@ -1211,7 +1211,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1223,7 +1223,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:40 GMT + - Fri, 21 Jan 2022 17:54:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index 7e3a75c15c9..395664be285 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '331' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:23 GMT + - Fri, 21 Jan 2022 17:55:14 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:23.5315688Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:23.5315688Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/002e127c-52e2-4787-b987-3b7028e865b4?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ebfa790-c14c-4307-84da-e786ce3a4ed0?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1603' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:23 GMT + - Fri, 21 Jan 2022 17:55:14 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/002e127c-52e2-4787-b987-3b7028e865b4?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ebfa790-c14c-4307-84da-e786ce3a4ed0?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/002e127c-52e2-4787-b987-3b7028e865b4\",\r\n - \ \"name\": \"002e127c-52e2-4787-b987-3b7028e865b4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ebfa790-c14c-4307-84da-e786ce3a4ed0\",\r\n + \ \"name\": \"5ebfa790-c14c-4307-84da-e786ce3a4ed0\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:40 GMT + - Fri, 21 Jan 2022 17:55:32 GMT expires: - '-1' pragma: @@ -178,13 +178,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-19-17-23-71cda\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-19-17-23-71cda\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,20 +198,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:23.5315688Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:23.5315688Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:40 GMT + - Fri, 21 Jan 2022 17:55:32 GMT expires: - '-1' pragma: @@ -243,13 +243,13 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-19-17-23-71cda\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-19-17-23-71cda\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,20 +263,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:23.5315688Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:23.5315688Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:41 GMT + - Fri, 21 Jan 2022 17:55:32 GMT expires: - '-1' pragma: @@ -308,13 +308,13 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-19-17-23-71cda\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-19-17-23-71cda\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -328,20 +328,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:23.5315688Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:23.5315688Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:55:33 GMT expires: - '-1' pragma: @@ -373,13 +373,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2021-12-15-19-17-23-71cda\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2021-12-15-19-17-23-71cda\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -393,20 +393,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:23.5315688Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:23.5315688Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:55:33 GMT expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -452,7 +452,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:55:34 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml index cf7a6b37446..549380354d2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -25,11 +25,11 @@ interactions: cache-control: - no-cache content-length: - - '383' + - '326' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:24 GMT + - Fri, 21 Jan 2022 17:54:14 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:18:25.8371531Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:25.8371531Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/45c02f79-eacb-49dc-9ee1-651a7c19c244?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2d0bf17-c207-4202-a0a0-295b26e31018?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1664' + - '1593' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:25 GMT + - Fri, 21 Jan 2022 17:54:15 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/45c02f79-eacb-49dc-9ee1-651a7c19c244?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2d0bf17-c207-4202-a0a0-295b26e31018?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/45c02f79-eacb-49dc-9ee1-651a7c19c244\",\r\n - \ \"name\": \"45c02f79-eacb-49dc-9ee1-651a7c19c244\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2d0bf17-c207-4202-a0a0-295b26e31018\",\r\n + \ \"name\": \"c2d0bf17-c207-4202-a0a0-295b26e31018\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:43 GMT + - Fri, 21 Jan 2022 17:54:31 GMT expires: - '-1' pragma: @@ -178,13 +178,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-19-18-25-6abd8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-19-18-25-6abd8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,20 +198,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:18:25.8371531Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:25.8371531Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2073' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:43 GMT + - Fri, 21 Jan 2022 17:54:32 GMT expires: - '-1' pragma: @@ -243,14 +243,14 @@ interactions: ParameterSetName: - --stack-name --name --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-19-18-25-6abd8?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-19-18-25-6abd8\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -264,21 +264,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:18:25.8371531Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:25.8371531Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-19-18-25-6abd8\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-18-25-6abd8\"\r\n}" + \"2022-01-21-17-54-15-cc798\"\r\n}" headers: cache-control: - no-cache content-length: - - '2033' + - '1933' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:44 GMT + - Fri, 21 Jan 2022 17:54:32 GMT expires: - '-1' pragma: @@ -310,14 +310,14 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-19-18-25-6abd8?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-19-18-25-6abd8\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -331,21 +331,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:18:25.8371531Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:25.8371531Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-19-18-25-6abd8\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-18-25-6abd8\"\r\n}" + \"2022-01-21-17-54-15-cc798\"\r\n}" headers: cache-control: - no-cache content-length: - - '2033' + - '1933' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:44 GMT + - Fri, 21 Jan 2022 17:54:33 GMT expires: - '-1' pragma: @@ -377,13 +377,13 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2021-12-15-19-18-25-6abd8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2021-12-15-19-18-25-6abd8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -397,20 +397,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:18:25.8371531Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:18:25.8371531Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2244' + - '2073' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:45 GMT + - Fri, 21 Jan 2022 17:54:33 GMT expires: - '-1' pragma: @@ -444,7 +444,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -456,7 +456,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:18:45 GMT + - Fri, 21 Jan 2022 17:54:33 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml index 44a622489d8..0d2c239eb47 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -24,11 +24,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '196' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:41 GMT + - Fri, 21 Jan 2022 17:54:31 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:42.0938506Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:42.0938506Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c4a0ef42-dc1c-4027-a3a5-27f943854735?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/044a011b-4f69-4f4f-b4ce-eb99cbb4f039?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1654' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:42 GMT + - Fri, 21 Jan 2022 17:54:32 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c4a0ef42-dc1c-4027-a3a5-27f943854735?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/044a011b-4f69-4f4f-b4ce-eb99cbb4f039?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c4a0ef42-dc1c-4027-a3a5-27f943854735\",\r\n - \ \"name\": \"c4a0ef42-dc1c-4027-a3a5-27f943854735\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/044a011b-4f69-4f4f-b4ce-eb99cbb4f039\",\r\n + \ \"name\": \"044a011b-4f69-4f4f-b4ce-eb99cbb4f039\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:59 GMT + - Fri, 21 Jan 2022 17:54:49 GMT expires: - '-1' pragma: @@ -178,14 +178,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-42-9dc41\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-42-9dc41\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,20 +200,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:42.0938506Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:42.0938506Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2040' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:59 GMT + - Fri, 21 Jan 2022 17:54:49 GMT expires: - '-1' pragma: @@ -245,14 +245,14 @@ interactions: ParameterSetName: - --name --stack-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-42-9dc41?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-42-9dc41\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,21 +267,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:42.0938506Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:42.0938506Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-42-9dc41\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-42-9dc41\"\r\n}" + \"2022-01-21-17-54-32-0221e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1930' + - '1918' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:00 GMT + - Fri, 21 Jan 2022 17:54:50 GMT expires: - '-1' pragma: @@ -313,14 +313,14 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-42-9dc41?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-42-9dc41\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -335,21 +335,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:42.0938506Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:42.0938506Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-42-9dc41\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2021-12-15-19-17-42-9dc41\"\r\n}" + \"2022-01-21-17-54-32-0221e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1930' + - '1918' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:01 GMT + - Fri, 21 Jan 2022 17:54:52 GMT expires: - '-1' pragma: @@ -381,14 +381,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-42-9dc41\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-42-9dc41\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -403,20 +403,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:42.0938506Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:42.0938506Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2040' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:02 GMT + - Fri, 21 Jan 2022 17:54:52 GMT expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -462,7 +462,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:18:03 GMT + - Fri, 21 Jan 2022 17:54:52 GMT expires: - '-1' pragma: @@ -474,7 +474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index aca78bc80ec..9067e6f3af3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -24,11 +24,11 @@ interactions: cache-control: - no-cache content-length: - - '208' + - '196' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:45 GMT + - Fri, 21 Jan 2022 17:54:36 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -86,22 +86,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:46.6171222Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:46.6171222Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/639342bd-d2a1-4f9b-ac07-602d5fa643f6?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/21fc0c75-4877-41d7-96df-e90743b123c9?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1654' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:17:46 GMT + - Fri, 21 Jan 2022 17:54:37 GMT expires: - '-1' pragma: @@ -131,13 +131,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/639342bd-d2a1-4f9b-ac07-602d5fa643f6?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/21fc0c75-4877-41d7-96df-e90743b123c9?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/639342bd-d2a1-4f9b-ac07-602d5fa643f6\",\r\n - \ \"name\": \"639342bd-d2a1-4f9b-ac07-602d5fa643f6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/21fc0c75-4877-41d7-96df-e90743b123c9\",\r\n + \ \"name\": \"21fc0c75-4877-41d7-96df-e90743b123c9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:04 GMT + - Fri, 21 Jan 2022 17:54:54 GMT expires: - '-1' pragma: @@ -178,14 +178,14 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-47-ffeef\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-47-ffeef\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,20 +200,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:46.6171222Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:46.6171222Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2040' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:04 GMT + - Fri, 21 Jan 2022 17:54:54 GMT expires: - '-1' pragma: @@ -245,14 +245,14 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-47-ffeef\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-47-ffeef\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,20 +267,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:46.6171222Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:46.6171222Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2040' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:05 GMT + - Fri, 21 Jan 2022 17:54:55 GMT expires: - '-1' pragma: @@ -312,14 +312,14 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-47-ffeef\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-47-ffeef\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -334,20 +334,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:46.6171222Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:46.6171222Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2040' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:06 GMT + - Fri, 21 Jan 2022 17:54:56 GMT expires: - '-1' pragma: @@ -379,14 +379,14 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2021-12-15-19-17-47-ffeef\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-15-19-17-47-ffeef\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -401,20 +401,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-15T19:17:46.6171222Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2021-12-15T19:17:46.6171222Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2040' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Dec 2021 19:18:07 GMT + - Fri, 21 Jan 2022 17:54:57 GMT expires: - '-1' pragma: @@ -448,7 +448,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -460,7 +460,7 @@ interactions: content-length: - '0' date: - - Wed, 15 Dec 2021 19:18:08 GMT + - Fri, 21 Jan 2022 17:54:58 GMT expires: - '-1' pragma: From 9a9b745ec76287162a3116317442b442ec8002bf Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 21 Jan 2022 15:30:50 -0500 Subject: [PATCH 052/139] Only template type can be inputted [tested] --- .../cli/command_modules/resource/custom.py | 4 + ...reate_deployment_stack_resource_group.yaml | 166 ++++++------ ..._create_deployment_stack_subscription.yaml | 188 ++++++------- ...elete_deployment_stack_resource_group.yaml | 104 ++++---- ...loyment_stack_snapshot_resource_group.yaml | 206 +++++++------- ...eployment_stack_snapshot_subscription.yaml | 252 +++++++++--------- ..._delete_deployment_stack_subscription.yaml | 166 ++++++------ ..._list_deployment_stack_resource_group.yaml | 50 ++-- ...loyment_stack_snapshot_resource_group.yaml | 64 ++--- ...eployment_stack_snapshot_subscription.yaml | 64 ++--- ...st_list_deployment_stack_subscription.yaml | 78 +++--- ..._show_deployment_stack_resource_group.yaml | 60 ++--- ...loyment_stack_snapshot_resource_group.yaml | 70 ++--- ...eployment_stack_snapshot_subscription.yaml | 70 ++--- ...st_show_deployment_stack_subscription.yaml | 60 ++--- 15 files changed, 813 insertions(+), 789 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index cbdf6c72e5c..5a3d9c353b3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2087,6 +2087,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if not update_behavior: update_behavior = "detachResources" + if [template_file, template_spec, template_uri].count(None) != 2: + raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: get_subscription_response = rcf.deployment_stacks.get_at_subscription(name) if get_subscription_response: @@ -2188,6 +2190,8 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if not update_behavior: update_behavior = "detachResources" + if [template_file, template_spec, template_uri].count(None) != 2: + raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): from knack.prompting import prompt_y_n diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index a03c19cfffc..c19d99202a5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:48 GMT + - Fri, 21 Jan 2022 20:27:45 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:48 GMT + - Fri, 21 Jan 2022 20:27:45 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:50.0964568Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:47.5589061Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:50.0964568Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:47.5589061Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:50 GMT + - Fri, 21 Jan 2022 20:27:47 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:51.3965262Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:49.4439286Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:51.3965262Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:49.4439286Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:51 GMT + - Fri, 21 Jan 2022 20:27:49 GMT expires: - '-1' pragma: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:52 GMT + - Fri, 21 Jan 2022 20:27:49 GMT expires: - '-1' pragma: @@ -300,22 +300,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.735649Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.8681938Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.735649Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.8681938Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d73cf333-8f7b-47ce-990e-64c7f6e58323?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bd8faf48-063e-40fb-958c-b2a753fb39ad?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1605' + - '1607' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:52 GMT + - Fri, 21 Jan 2022 20:27:50 GMT expires: - '-1' pragma: @@ -347,11 +347,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d73cf333-8f7b-47ce-990e-64c7f6e58323?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bd8faf48-063e-40fb-958c-b2a753fb39ad?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d73cf333-8f7b-47ce-990e-64c7f6e58323\",\r\n - \ \"name\": \"d73cf333-8f7b-47ce-990e-64c7f6e58323\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bd8faf48-063e-40fb-958c-b2a753fb39ad\",\r\n + \ \"name\": \"bd8faf48-063e-40fb-958c-b2a753fb39ad\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:09 GMT + - Fri, 21 Jan 2022 20:28:07 GMT expires: - '-1' pragma: @@ -397,8 +397,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-52-d1b82\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-52-52-d1b82\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-50-aae2f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-27-50-aae2f\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -412,20 +412,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.735649Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.8681938Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.735649Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.8681938Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2092' + - '2094' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:09 GMT + - Fri, 21 Jan 2022 20:28:07 GMT expires: - '-1' pragma: @@ -462,8 +462,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-52-d1b82\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-52-52-d1b82\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-50-aae2f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-27-50-aae2f\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -477,20 +477,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.735649Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.8681938Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.735649Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.8681938Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2092' + - '2094' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:10 GMT + - Fri, 21 Jan 2022 20:28:09 GMT expires: - '-1' pragma: @@ -536,7 +536,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:10 GMT + - Fri, 21 Jan 2022 20:28:09 GMT expires: - '-1' pragma: @@ -582,7 +582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:11 GMT + - Fri, 21 Jan 2022 20:28:09 GMT expires: - '-1' pragma: @@ -624,14 +624,14 @@ interactions: \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:11.6273956Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7242944Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:11.6273956Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7242944Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ad8d7309-1d76-4e95-beb1-3fbd6867947d?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86e841e0-6bcc-43f1-9118-12b46ba16b97?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -639,7 +639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:11 GMT + - Fri, 21 Jan 2022 20:28:10 GMT expires: - '-1' pragma: @@ -671,11 +671,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ad8d7309-1d76-4e95-beb1-3fbd6867947d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86e841e0-6bcc-43f1-9118-12b46ba16b97?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ad8d7309-1d76-4e95-beb1-3fbd6867947d\",\r\n - \ \"name\": \"ad8d7309-1d76-4e95-beb1-3fbd6867947d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86e841e0-6bcc-43f1-9118-12b46ba16b97\",\r\n + \ \"name\": \"86e841e0-6bcc-43f1-9118-12b46ba16b97\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -684,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:28 GMT + - Fri, 21 Jan 2022 20:28:27 GMT expires: - '-1' pragma: @@ -721,14 +721,14 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-11-e361a\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-11-e361a\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-10-28a4d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-10-28a4d\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:11.6273956Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7242944Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:11.6273956Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7242944Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -739,7 +739,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:28 GMT + - Fri, 21 Jan 2022 20:28:27 GMT expires: - '-1' pragma: @@ -776,14 +776,14 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-11-e361a\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-11-e361a\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-10-28a4d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-10-28a4d\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:11.6273956Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7242944Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:11.6273956Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7242944Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -794,7 +794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:28 GMT + - Fri, 21 Jan 2022 20:28:29 GMT expires: - '-1' pragma: @@ -840,7 +840,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:29 GMT + - Fri, 21 Jan 2022 20:28:29 GMT expires: - '-1' pragma: @@ -886,7 +886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:30 GMT + - Fri, 21 Jan 2022 20:28:29 GMT expires: - '-1' pragma: @@ -924,15 +924,15 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:30 GMT + - Fri, 21 Jan 2022 20:28:30 GMT expires: - - Fri, 21 Jan 2022 17:53:30 GMT + - Fri, 21 Jan 2022 20:28:30 GMT location: - https://api.github.com/repos/Azure/bicep/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e server: - Kestrel strict-transport-security: @@ -957,7 +957,7 @@ interactions: uri: https://api.github.com/repos/Azure/bicep/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861","assets_url":"https://api.github.com/repos/Azure/bicep/releases/55233861/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/55233861/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1124","id":55233861,"author":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DSs1F","tag_name":"v0.4.1124","target_commitish":"main","name":"v0.4.1124","draft":false,"prerelease":false,"created_at":"2021-12-13T19:47:29Z","published_at":"2021-12-15T20:05:49Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707348","id":51707348,"node_id":"RA_kwDOD7S9ks4DFP3U","name":"Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16725301,"download_count":4,"created_at":"2021-12-14T02:17:48Z","updated_at":"2021-12-14T02:17:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707343","id":51707343,"node_id":"RA_kwDOD7S9ks4DFP3P","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17200818,"download_count":3,"created_at":"2021-12-14T02:17:35Z","updated_at":"2021-12-14T02:17:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707361","id":51707361,"node_id":"RA_kwDOD7S9ks4DFP3h","name":"Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16614333,"download_count":4,"created_at":"2021-12-14T02:18:13Z","updated_at":"2021-12-14T02:18:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707354","id":51707354,"node_id":"RA_kwDOD7S9ks4DFP3a","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17110967,"download_count":5,"created_at":"2021-12-14T02:18:00Z","updated_at":"2021-12-14T02:18:01Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707337","id":51707337,"node_id":"RA_kwDOD7S9ks4DFP3J","name":"Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16866771,"download_count":4,"created_at":"2021-12-14T02:17:24Z","updated_at":"2021-12-14T02:17:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707332","id":51707332,"node_id":"RA_kwDOD7S9ks4DFP3E","name":"Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17147957,"download_count":7,"created_at":"2021-12-14T02:17:13Z","updated_at":"2021-12-14T02:17:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707286","id":51707286,"node_id":"RA_kwDOD7S9ks4DFP2W","name":"Azure.Bicep.MSBuild.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":39343,"download_count":6,"created_at":"2021-12-14T02:16:24Z","updated_at":"2021-12-14T02:16:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707287","id":51707287,"node_id":"RA_kwDOD7S9ks4DFP2X","name":"Azure.Bicep.MSBuild.0.4.1124.snupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6735,"download_count":5,"created_at":"2021-12-14T02:16:26Z","updated_at":"2021-12-14T02:16:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707288","id":51707288,"node_id":"RA_kwDOD7S9ks4DFP2Y","name":"bicep-langserver.zip","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":11060401,"download_count":10,"created_at":"2021-12-14T02:16:29Z","updated_at":"2021-12-14T02:16:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707229","id":51707229,"node_id":"RA_kwDOD7S9ks4DFP1d","name":"bicep-linux-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37102900,"download_count":19,"created_at":"2021-12-14T02:14:51Z","updated_at":"2021-12-14T02:14:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707235","id":51707235,"node_id":"RA_kwDOD7S9ks4DFP1j","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37701518,"download_count":4547,"created_at":"2021-12-14T02:15:05Z","updated_at":"2021-12-14T02:15:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707224","id":51707224,"node_id":"RA_kwDOD7S9ks4DFP1Y","name":"bicep-linux-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37806767,"download_count":60971,"created_at":"2021-12-14T02:14:34Z","updated_at":"2021-12-14T02:14:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707263","id":51707263,"node_id":"RA_kwDOD7S9ks4DFP1_","name":"bicep-osx-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":36940300,"download_count":5,"created_at":"2021-12-14T02:15:47Z","updated_at":"2021-12-14T02:15:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707257","id":51707257,"node_id":"RA_kwDOD7S9ks4DFP15","name":"bicep-osx-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37857926,"download_count":2354,"created_at":"2021-12-14T02:15:31Z","updated_at":"2021-12-14T02:15:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707280","id":51707280,"node_id":"RA_kwDOD7S9ks4DFP2Q","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":15038120,"download_count":1548,"created_at":"2021-12-14T02:16:13Z","updated_at":"2021-12-14T02:16:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707302","id":51707302,"node_id":"RA_kwDOD7S9ks4DFP2m","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":37100456,"download_count":11,"created_at":"2021-12-14T02:16:42Z","updated_at":"2021-12-14T02:16:50Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707284","id":51707284,"node_id":"RA_kwDOD7S9ks4DFP2U","name":"bicep-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":36662032,"download_count":38282,"created_at":"2021-12-14T02:16:21Z","updated_at":"2021-12-14T02:16:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707321","id":51707321,"node_id":"RA_kwDOD7S9ks4DFP25","name":"vscode-bicep.vsix","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":40760109,"download_count":170,"created_at":"2021-12-14T02:17:03Z","updated_at":"2021-12-14T02:17:05Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1124","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1124","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861","assets_url":"https://api.github.com/repos/Azure/bicep/releases/55233861/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/55233861/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1124","id":55233861,"author":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DSs1F","tag_name":"v0.4.1124","target_commitish":"main","name":"v0.4.1124","draft":false,"prerelease":false,"created_at":"2021-12-13T19:47:29Z","published_at":"2021-12-15T20:05:49Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707348","id":51707348,"node_id":"RA_kwDOD7S9ks4DFP3U","name":"Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16725301,"download_count":4,"created_at":"2021-12-14T02:17:48Z","updated_at":"2021-12-14T02:17:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707343","id":51707343,"node_id":"RA_kwDOD7S9ks4DFP3P","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17200818,"download_count":3,"created_at":"2021-12-14T02:17:35Z","updated_at":"2021-12-14T02:17:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707361","id":51707361,"node_id":"RA_kwDOD7S9ks4DFP3h","name":"Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16614333,"download_count":4,"created_at":"2021-12-14T02:18:13Z","updated_at":"2021-12-14T02:18:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707354","id":51707354,"node_id":"RA_kwDOD7S9ks4DFP3a","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17110967,"download_count":5,"created_at":"2021-12-14T02:18:00Z","updated_at":"2021-12-14T02:18:01Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707337","id":51707337,"node_id":"RA_kwDOD7S9ks4DFP3J","name":"Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16866771,"download_count":4,"created_at":"2021-12-14T02:17:24Z","updated_at":"2021-12-14T02:17:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707332","id":51707332,"node_id":"RA_kwDOD7S9ks4DFP3E","name":"Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17147957,"download_count":7,"created_at":"2021-12-14T02:17:13Z","updated_at":"2021-12-14T02:17:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707286","id":51707286,"node_id":"RA_kwDOD7S9ks4DFP2W","name":"Azure.Bicep.MSBuild.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":39343,"download_count":6,"created_at":"2021-12-14T02:16:24Z","updated_at":"2021-12-14T02:16:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707287","id":51707287,"node_id":"RA_kwDOD7S9ks4DFP2X","name":"Azure.Bicep.MSBuild.0.4.1124.snupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6735,"download_count":5,"created_at":"2021-12-14T02:16:26Z","updated_at":"2021-12-14T02:16:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707288","id":51707288,"node_id":"RA_kwDOD7S9ks4DFP2Y","name":"bicep-langserver.zip","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":11060401,"download_count":10,"created_at":"2021-12-14T02:16:29Z","updated_at":"2021-12-14T02:16:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707229","id":51707229,"node_id":"RA_kwDOD7S9ks4DFP1d","name":"bicep-linux-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37102900,"download_count":19,"created_at":"2021-12-14T02:14:51Z","updated_at":"2021-12-14T02:14:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707235","id":51707235,"node_id":"RA_kwDOD7S9ks4DFP1j","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37701518,"download_count":4567,"created_at":"2021-12-14T02:15:05Z","updated_at":"2021-12-14T02:15:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707224","id":51707224,"node_id":"RA_kwDOD7S9ks4DFP1Y","name":"bicep-linux-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37806767,"download_count":61214,"created_at":"2021-12-14T02:14:34Z","updated_at":"2021-12-14T02:14:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707263","id":51707263,"node_id":"RA_kwDOD7S9ks4DFP1_","name":"bicep-osx-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":36940300,"download_count":5,"created_at":"2021-12-14T02:15:47Z","updated_at":"2021-12-14T02:15:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707257","id":51707257,"node_id":"RA_kwDOD7S9ks4DFP15","name":"bicep-osx-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37857926,"download_count":2360,"created_at":"2021-12-14T02:15:31Z","updated_at":"2021-12-14T02:15:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707280","id":51707280,"node_id":"RA_kwDOD7S9ks4DFP2Q","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":15038120,"download_count":1557,"created_at":"2021-12-14T02:16:13Z","updated_at":"2021-12-14T02:16:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707302","id":51707302,"node_id":"RA_kwDOD7S9ks4DFP2m","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":37100456,"download_count":11,"created_at":"2021-12-14T02:16:42Z","updated_at":"2021-12-14T02:16:50Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707284","id":51707284,"node_id":"RA_kwDOD7S9ks4DFP2U","name":"bicep-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":36662032,"download_count":38508,"created_at":"2021-12-14T02:16:21Z","updated_at":"2021-12-14T02:16:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707321","id":51707321,"node_id":"RA_kwDOD7S9ks4DFP25","name":"vscode-bicep.vsix","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":40760109,"download_count":170,"created_at":"2021-12-14T02:17:03Z","updated_at":"2021-12-14T02:17:05Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1124","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1124","body":"## Highlights\r\n\r\nBicep team:\r\n\r\n* \"Insert Resource\" command implementation (#4945)\r\n* Implement type completions & validation for resource `list*()` functions (#5145). You will now get completions for cases like:\r\n \r\n ```bicep\r\n resource @@ -1023,9 +1023,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:17 GMT + - Fri, 21 Jan 2022 20:28:31 GMT etag: - - W/"8529e967a553548ddcdb16f2308d3d26508fd1518215400c835f6c4186a155d4" + - W/"45a3da7188ea6586cc31bbbb7d0a0598a287b445361ca5cd85b86b49f2d127a1" last-modified: - Wed, 15 Dec 2021 20:05:49 GMT referrer-policy: @@ -1034,6 +1034,8 @@ interactions: - GitHub.com strict-transport-security: - max-age=31536000; includeSubdomains; preload + transfer-encoding: + - chunked vary: - Accept, Accept-Encoding, Accept, X-Requested-With x-content-type-options: @@ -1043,13 +1045,13 @@ interactions: x-github-media-type: - github.v3; format=json x-github-request-id: - - ED6E:58E9:461063:83FDC6:61EAF31B + - C5FF:1CC7:3EB7A3:816CB8:61EB176E x-ratelimit-limit: - '60' x-ratelimit-remaining: - '59' x-ratelimit-reset: - - '1642791211' + - '1642800510' x-ratelimit-resource: - core x-ratelimit-used: @@ -1108,14 +1110,14 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:32.2053987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:32.5549125Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:32.2053987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:32.5549125Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22246ce2-ffab-4f56-bd05-e86db3872302?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1123,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:32 GMT + - Fri, 21 Jan 2022 20:28:31 GMT expires: - '-1' pragma: @@ -1155,11 +1157,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22246ce2-ffab-4f56-bd05-e86db3872302?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22246ce2-ffab-4f56-bd05-e86db3872302\",\r\n - \ \"name\": \"22246ce2-ffab-4f56-bd05-e86db3872302\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee\",\r\n + \ \"name\": \"2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1168,7 +1170,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:49 GMT + - Fri, 21 Jan 2022 20:28:48 GMT expires: - '-1' pragma: @@ -1205,8 +1207,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-32-87327\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-32-87327\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-32-dca1c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-32-dca1c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n @@ -1225,9 +1227,9 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:32.2053987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:32.5549125Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:32.2053987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:32.5549125Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1238,7 +1240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:49 GMT + - Fri, 21 Jan 2022 20:28:49 GMT expires: - '-1' pragma: @@ -1275,8 +1277,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-32-87327\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-17-53-32-87327\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-32-dca1c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-32-dca1c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n @@ -1295,9 +1297,9 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:32.2053987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:32.5549125Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:32.2053987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:32.5549125Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1308,7 +1310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:49 GMT + - Fri, 21 Jan 2022 20:28:50 GMT expires: - '-1' pragma: @@ -1354,7 +1356,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:49 GMT + - Fri, 21 Jan 2022 20:28:50 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index a031c9fb2e8..92953f0d58c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:47 GMT + - Fri, 21 Jan 2022 20:27:45 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:48 GMT + - Fri, 21 Jan 2022 20:27:45 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:50.2040983Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:47.1896367Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:50.2040983Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:47.1896367Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:49 GMT + - Fri, 21 Jan 2022 20:27:47 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:51.4841065Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:48.6896415Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:51.4841065Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:48.6896415Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:51 GMT + - Fri, 21 Jan 2022 20:27:48 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:52 GMT + - Fri, 21 Jan 2022 20:27:49 GMT expires: - '-1' pragma: @@ -300,14 +300,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.7892557Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.0358273Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.7892557Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.0358273Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f2f45c0-5976-4b99-aefc-910ba869b538?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e55183d-8100-4591-91b1-0158348c386e?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -315,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:53 GMT + - Fri, 21 Jan 2022 20:27:50 GMT expires: - '-1' pragma: @@ -347,11 +347,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f2f45c0-5976-4b99-aefc-910ba869b538?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e55183d-8100-4591-91b1-0158348c386e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f2f45c0-5976-4b99-aefc-910ba869b538\",\r\n - \ \"name\": \"3f2f45c0-5976-4b99-aefc-910ba869b538\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e55183d-8100-4591-91b1-0158348c386e\",\r\n + \ \"name\": \"7e55183d-8100-4591-91b1-0158348c386e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:10 GMT + - Fri, 21 Jan 2022 20:28:07 GMT expires: - '-1' pragma: @@ -398,8 +398,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-52-53-57a27\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-52-53-57a27\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-27-50-b9314\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-27-50-b9314\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -414,9 +414,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.7892557Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.0358273Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.7892557Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.0358273Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -427,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:10 GMT + - Fri, 21 Jan 2022 20:28:08 GMT expires: - '-1' pragma: @@ -465,8 +465,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-52-53-57a27\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-52-53-57a27\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-27-50-b9314\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-27-50-b9314\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -481,9 +481,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:52.7892557Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.0358273Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:52.7892557Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.0358273Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:11 GMT + - Fri, 21 Jan 2022 20:28:08 GMT expires: - '-1' pragma: @@ -540,7 +540,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:12 GMT + - Fri, 21 Jan 2022 20:28:09 GMT expires: - '-1' pragma: @@ -585,7 +585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:12 GMT + - Fri, 21 Jan 2022 20:28:09 GMT expires: - '-1' pragma: @@ -628,22 +628,22 @@ interactions: \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:13.388484Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7674321Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:13.388484Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7674321Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/98de4447-0086-4a95-812b-4bdb8cf94424?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3b5c91a-1ac0-49b8-a464-3a4b44a703c5?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1045' + - '1047' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:13 GMT + - Fri, 21 Jan 2022 20:28:10 GMT expires: - '-1' pragma: @@ -675,11 +675,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/98de4447-0086-4a95-812b-4bdb8cf94424?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3b5c91a-1ac0-49b8-a464-3a4b44a703c5?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/98de4447-0086-4a95-812b-4bdb8cf94424\",\r\n - \ \"name\": \"98de4447-0086-4a95-812b-4bdb8cf94424\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3b5c91a-1ac0-49b8-a464-3a4b44a703c5\",\r\n + \ \"name\": \"f3b5c91a-1ac0-49b8-a464-3a4b44a703c5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -688,7 +688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:31 GMT + - Fri, 21 Jan 2022 20:28:27 GMT expires: - '-1' pragma: @@ -726,26 +726,26 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-14-d2945\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-14-d2945\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-11-eee69\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-11-eee69\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:13.388484Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7674321Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:13.388484Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7674321Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1434' + - '1436' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:31 GMT + - Fri, 21 Jan 2022 20:28:28 GMT expires: - '-1' pragma: @@ -783,26 +783,26 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-14-d2945\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-14-d2945\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-11-eee69\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-11-eee69\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:13.388484Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7674321Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:13.388484Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7674321Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1434' + - '1436' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:31 GMT + - Fri, 21 Jan 2022 20:28:29 GMT expires: - '-1' pragma: @@ -848,7 +848,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:32 GMT + - Fri, 21 Jan 2022 20:28:30 GMT expires: - '-1' pragma: @@ -893,7 +893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:33 GMT + - Fri, 21 Jan 2022 20:28:31 GMT expires: - '-1' pragma: @@ -951,14 +951,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:33.6310856Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:31.3620228Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:33.6310856Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:31.3620228Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b59e1520-3172-47f3-82a3-d6504d882722?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70b12885-2231-4622-8844-d386718af08b?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -966,7 +966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:34 GMT + - Fri, 21 Jan 2022 20:28:31 GMT expires: - '-1' pragma: @@ -998,11 +998,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b59e1520-3172-47f3-82a3-d6504d882722?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70b12885-2231-4622-8844-d386718af08b?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b59e1520-3172-47f3-82a3-d6504d882722\",\r\n - \ \"name\": \"b59e1520-3172-47f3-82a3-d6504d882722\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70b12885-2231-4622-8844-d386718af08b\",\r\n + \ \"name\": \"70b12885-2231-4622-8844-d386718af08b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1011,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:51 GMT + - Fri, 21 Jan 2022 20:28:48 GMT expires: - '-1' pragma: @@ -1049,8 +1049,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-34-eeebd\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-34-eeebd\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-32-65408\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-32-65408\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1065,9 +1065,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:33.6310856Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:31.3620228Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:33.6310856Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:31.3620228Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1078,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:51 GMT + - Fri, 21 Jan 2022 20:28:49 GMT expires: - '-1' pragma: @@ -1116,8 +1116,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-34-eeebd\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-34-eeebd\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-32-65408\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-32-65408\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1132,9 +1132,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:33.6310856Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:31.3620228Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:33.6310856Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:31.3620228Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1145,7 +1145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:52 GMT + - Fri, 21 Jan 2022 20:28:50 GMT expires: - '-1' pragma: @@ -1191,7 +1191,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:53 GMT + - Fri, 21 Jan 2022 20:28:50 GMT expires: - '-1' pragma: @@ -1236,7 +1236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:53 GMT + - Fri, 21 Jan 2022 20:28:51 GMT expires: - '-1' pragma: @@ -1300,14 +1300,14 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:55.1697007Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:54.1839098Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:55.1697007Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:54.1839098Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9958b8d4-cf23-43e1-a475-3457174e8d33?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b38899f-6510-4d52-90bb-0d5fab63ba22?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1315,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:55 GMT + - Fri, 21 Jan 2022 20:28:54 GMT expires: - '-1' pragma: @@ -1347,11 +1347,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9958b8d4-cf23-43e1-a475-3457174e8d33?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b38899f-6510-4d52-90bb-0d5fab63ba22?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9958b8d4-cf23-43e1-a475-3457174e8d33\",\r\n - \ \"name\": \"9958b8d4-cf23-43e1-a475-3457174e8d33\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b38899f-6510-4d52-90bb-0d5fab63ba22\",\r\n + \ \"name\": \"1b38899f-6510-4d52-90bb-0d5fab63ba22\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1360,7 +1360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:12 GMT + - Fri, 21 Jan 2022 20:29:11 GMT expires: - '-1' pragma: @@ -1398,8 +1398,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-55-9bf78\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-55-9bf78\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-54-019b7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-54-019b7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": @@ -1419,9 +1419,9 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:55.1697007Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:54.1839098Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:55.1697007Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:54.1839098Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1432,7 +1432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:12 GMT + - Fri, 21 Jan 2022 20:29:11 GMT expires: - '-1' pragma: @@ -1470,8 +1470,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-17-53-55-9bf78\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-17-53-55-9bf78\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-54-019b7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-54-019b7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": @@ -1491,9 +1491,9 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:55.1697007Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:54.1839098Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:55.1697007Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:54.1839098Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1504,7 +1504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:13 GMT + - Fri, 21 Jan 2022 20:29:13 GMT expires: - '-1' pragma: @@ -1550,7 +1550,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:13 GMT + - Fri, 21 Jan 2022 20:29:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index 3297e463ce6..f2fc4caf235 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:48 GMT + - Fri, 21 Jan 2022 20:27:45 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fab6a19a-5747-4091-9f54-1a2d0e851835?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:48 GMT + - Fri, 21 Jan 2022 20:27:45 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fab6a19a-5747-4091-9f54-1a2d0e851835?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9\",\r\n - \ \"name\": \"3ac1d4a5-cba8-4e2d-946c-b96624d3dfa9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fab6a19a-5747-4091-9f54-1a2d0e851835\",\r\n + \ \"name\": \"fab6a19a-5747-4091-9f54-1a2d0e851835\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:05 GMT + - Fri, 21 Jan 2022 20:28:02 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-48-4f13d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-52-48-4f13d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-45-8bb79\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-27-45-8bb79\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:05 GMT + - Fri, 21 Jan 2022 20:28:02 GMT expires: - '-1' pragma: @@ -248,8 +248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-48-4f13d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-52-48-4f13d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-45-8bb79\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-27-45-8bb79\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,9 +263,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -276,7 +276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:06 GMT + - Fri, 21 Jan 2022 20:28:03 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-52-48-4f13d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-52-48-4f13d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-45-8bb79\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-27-45-8bb79\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -328,9 +328,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.6097777Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.6097777Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:06 GMT + - Fri, 21 Jan 2022 20:28:04 GMT expires: - '-1' pragma: @@ -387,7 +387,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:06 GMT + - Fri, 21 Jan 2022 20:28:04 GMT expires: - '-1' pragma: @@ -431,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:07 GMT + - Fri, 21 Jan 2022 20:28:05 GMT expires: - '-1' pragma: @@ -479,7 +479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:07 GMT + - Fri, 21 Jan 2022 20:28:05 GMT expires: - '-1' pragma: @@ -536,14 +536,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6470ad25-6b53-45b8-8210-49591b9ee86e?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -551,7 +551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:08 GMT + - Fri, 21 Jan 2022 20:28:06 GMT expires: - '-1' pragma: @@ -583,11 +583,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6470ad25-6b53-45b8-8210-49591b9ee86e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26\",\r\n - \ \"name\": \"76a6e8ce-bc05-4dd5-84be-8bb6bfa7ee26\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6470ad25-6b53-45b8-8210-49591b9ee86e\",\r\n + \ \"name\": \"6470ad25-6b53-45b8-8210-49591b9ee86e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -596,7 +596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:25 GMT + - Fri, 21 Jan 2022 20:28:23 GMT expires: - '-1' pragma: @@ -633,8 +633,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-08-5a678\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-53-08-5a678\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-06-c7dde\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-28-06-c7dde\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -648,9 +648,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -661,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:25 GMT + - Fri, 21 Jan 2022 20:28:23 GMT expires: - '-1' pragma: @@ -698,8 +698,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-08-5a678\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-53-08-5a678\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-06-c7dde\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-28-06-c7dde\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -713,9 +713,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -726,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:26 GMT + - Fri, 21 Jan 2022 20:28:24 GMT expires: - '-1' pragma: @@ -763,8 +763,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-08-5a678\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-17-53-08-5a678\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-06-c7dde\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-28-06-c7dde\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -778,9 +778,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:08.7021146Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:08.7021146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -791,7 +791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:26 GMT + - Fri, 21 Jan 2022 20:28:25 GMT expires: - '-1' pragma: @@ -837,7 +837,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:27 GMT + - Fri, 21 Jan 2022 20:28:25 GMT expires: - '-1' pragma: @@ -881,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:27 GMT + - Fri, 21 Jan 2022 20:28:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml index 2586f61a43d..f6e4185aeb3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:47 GMT + - Fri, 21 Jan 2022 20:27:44 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0034143-a938-4064-beb7-55cc9b219a55?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab19503a-6176-4fe0-8177-242a9d814784?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:52:47 GMT + - Fri, 21 Jan 2022 20:27:44 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0034143-a938-4064-beb7-55cc9b219a55?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab19503a-6176-4fe0-8177-242a9d814784?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0034143-a938-4064-beb7-55cc9b219a55\",\r\n - \ \"name\": \"e0034143-a938-4064-beb7-55cc9b219a55\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab19503a-6176-4fe0-8177-242a9d814784\",\r\n + \ \"name\": \"ab19503a-6176-4fe0-8177-242a9d814784\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:04 GMT + - Fri, 21 Jan 2022 20:28:01 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:04 GMT + - Fri, 21 Jan 2022 20:28:01 GMT expires: - '-1' pragma: @@ -248,8 +248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,9 +263,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -276,7 +276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:06 GMT + - Fri, 21 Jan 2022 20:28:03 GMT expires: - '-1' pragma: @@ -337,22 +337,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ef10ceb-a7a5-4325-a362-3be8b07b795e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a468e120-5f23-4a02-9b29-fc9660207c8e?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1625' + - '1624' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:06 GMT + - Fri, 21 Jan 2022 20:28:03 GMT expires: - '-1' pragma: @@ -388,11 +388,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ef10ceb-a7a5-4325-a362-3be8b07b795e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a468e120-5f23-4a02-9b29-fc9660207c8e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ef10ceb-a7a5-4325-a362-3be8b07b795e\",\r\n - \ \"name\": \"5ef10ceb-a7a5-4325-a362-3be8b07b795e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a468e120-5f23-4a02-9b29-fc9660207c8e\",\r\n + \ \"name\": \"a468e120-5f23-4a02-9b29-fc9660207c8e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:23 GMT + - Fri, 21 Jan 2022 20:28:20 GMT expires: - '-1' pragma: @@ -438,8 +438,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -453,20 +453,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2120' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:23 GMT + - Fri, 21 Jan 2022 20:28:20 GMT expires: - '-1' pragma: @@ -500,12 +500,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -519,12 +519,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-52-48-93fc1\"\r\n}" + \"2022-01-21-20-27-45-10030\"\r\n}" headers: cache-control: - no-cache @@ -533,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:24 GMT + - Fri, 21 Jan 2022 20:28:20 GMT expires: - '-1' pragma: @@ -567,12 +567,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-52-48-93fc1\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -586,12 +586,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:52:48.4519139Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-52-48-93fc1\"\r\n}" + \"2022-01-21-20-27-45-10030\"\r\n}" headers: cache-control: - no-cache @@ -600,7 +600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:24 GMT + - Fri, 21 Jan 2022 20:28:21 GMT expires: - '-1' pragma: @@ -636,7 +636,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-52-48-93fc1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030?api-version=2021-05-01-preview response: body: string: '' @@ -646,7 +646,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:24 GMT + - Fri, 21 Jan 2022 20:28:21 GMT expires: - '-1' pragma: @@ -684,7 +684,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -700,21 +700,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:06.6227308Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:03.596776Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-06-4c742\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-28-03-3d20b\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2194' + - '2192' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:25 GMT + - Fri, 21 Jan 2022 20:28:22 GMT expires: - '-1' pragma: @@ -751,8 +751,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -766,20 +766,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2120' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:25 GMT + - Fri, 21 Jan 2022 20:28:23 GMT expires: - '-1' pragma: @@ -840,14 +840,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:26.4251475Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:23.8278122Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82647ce9-d662-41a2-8cc6-e468eb524db0?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a854a861-05d1-43f7-9c8c-8375a36d1df2?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -855,7 +855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:25 GMT + - Fri, 21 Jan 2022 20:28:23 GMT expires: - '-1' pragma: @@ -891,11 +891,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82647ce9-d662-41a2-8cc6-e468eb524db0?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a854a861-05d1-43f7-9c8c-8375a36d1df2?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82647ce9-d662-41a2-8cc6-e468eb524db0\",\r\n - \ \"name\": \"82647ce9-d662-41a2-8cc6-e468eb524db0\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a854a861-05d1-43f7-9c8c-8375a36d1df2\",\r\n + \ \"name\": \"a854a861-05d1-43f7-9c8c-8375a36d1df2\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:42 GMT + - Fri, 21 Jan 2022 20:28:40 GMT expires: - '-1' pragma: @@ -941,8 +941,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-26-bd5bf\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-26-bd5bf\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-23-ad8c8\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-23-ad8c8\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -956,9 +956,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:52:48.4519139Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:26.4251475Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:23.8278122Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -969,7 +969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:43 GMT + - Fri, 21 Jan 2022 20:28:40 GMT expires: - '-1' pragma: @@ -1003,12 +1003,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -1022,21 +1022,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:06.6227308Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:03.596776Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-06-4c742\"\r\n}" + \"2022-01-21-20-28-03-3d20b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '1947' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:43 GMT + - Fri, 21 Jan 2022 20:28:41 GMT expires: - '-1' pragma: @@ -1070,12 +1070,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-06-4c742\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -1089,21 +1089,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:06.6227308Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:03.596776Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:06.6227308Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-06-4c742\"\r\n}" + \"2022-01-21-20-28-03-3d20b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '1947' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:44 GMT + - Fri, 21 Jan 2022 20:28:42 GMT expires: - '-1' pragma: @@ -1139,7 +1139,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-06-4c742?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b?api-version=2021-05-01-preview response: body: string: '' @@ -1149,7 +1149,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:44 GMT + - Fri, 21 Jan 2022 20:28:42 GMT expires: - '-1' pragma: @@ -1187,7 +1187,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-26-bd5bf\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-23-ad8c8\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -1203,12 +1203,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:26.4251475Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:23.8278122Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:26.4251475Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-26-bd5bf\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:23.8278122Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-23-ad8c8\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-26-bd5bf\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-28-23-ad8c8\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -1217,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:44 GMT + - Fri, 21 Jan 2022 20:28:42 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml index f6319cf9b34..a02d338a07d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:51 GMT + - Fri, 21 Jan 2022 20:28:53 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ebfaee6e-7a16-4e0c-a687-d935d4797f0b?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4e0bc86b-8e00-4404-b61a-63227d92bd10?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:52 GMT + - Fri, 21 Jan 2022 20:28:54 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ebfaee6e-7a16-4e0c-a687-d935d4797f0b?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4e0bc86b-8e00-4404-b61a-63227d92bd10?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ebfaee6e-7a16-4e0c-a687-d935d4797f0b\",\r\n - \ \"name\": \"ebfaee6e-7a16-4e0c-a687-d935d4797f0b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4e0bc86b-8e00-4404-b61a-63227d92bd10\",\r\n + \ \"name\": \"4e0bc86b-8e00-4404-b61a-63227d92bd10\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:09 GMT + - Fri, 21 Jan 2022 20:29:11 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:09 GMT + - Fri, 21 Jan 2022 20:29:11 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:10 GMT + - Fri, 21 Jan 2022 20:29:12 GMT expires: - '-1' pragma: @@ -342,22 +342,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab17d578-e4c3-404a-8642-77057a001b46?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f2c2ce33-65df-4db8-93d1-5cda505b7218?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1677' + - '1678' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:11 GMT + - Fri, 21 Jan 2022 20:29:13 GMT expires: - '-1' pragma: @@ -393,11 +393,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab17d578-e4c3-404a-8642-77057a001b46?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f2c2ce33-65df-4db8-93d1-5cda505b7218?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab17d578-e4c3-404a-8642-77057a001b46\",\r\n - \ \"name\": \"ab17d578-e4c3-404a-8642-77057a001b46\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f2c2ce33-65df-4db8-93d1-5cda505b7218\",\r\n + \ \"name\": \"f2c2ce33-65df-4db8-93d1-5cda505b7218\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:28 GMT + - Fri, 21 Jan 2022 20:29:30 GMT expires: - '-1' pragma: @@ -444,8 +444,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -460,20 +460,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2075' + - '2076' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:28 GMT + - Fri, 21 Jan 2022 20:29:30 GMT expires: - '-1' pragma: @@ -507,12 +507,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -527,12 +527,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-53-8e79e\"\r\n}" + \"2022-01-21-20-28-54-cecf1\"\r\n}" headers: cache-control: - no-cache @@ -541,7 +541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:30 GMT + - Fri, 21 Jan 2022 20:29:31 GMT expires: - '-1' pragma: @@ -575,12 +575,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-53-53-8e79e\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -595,12 +595,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.4200522Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-53-8e79e\"\r\n}" + \"2022-01-21-20-28-54-cecf1\"\r\n}" headers: cache-control: - no-cache @@ -609,7 +609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:30 GMT + - Fri, 21 Jan 2022 20:29:32 GMT expires: - '-1' pragma: @@ -645,7 +645,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-8e79e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1?api-version=2021-05-01-preview response: body: string: '' @@ -655,7 +655,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:31 GMT + - Fri, 21 Jan 2022 20:29:32 GMT expires: - '-1' pragma: @@ -693,7 +693,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -710,21 +710,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:54:11.758217Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:29:13.1408157Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-11-497ac\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-29-13-7017d\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '2179' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:31 GMT + - Fri, 21 Jan 2022 20:29:33 GMT expires: - '-1' pragma: @@ -762,8 +762,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -778,20 +778,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2075' + - '2076' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:32 GMT + - Fri, 21 Jan 2022 20:29:35 GMT expires: - '-1' pragma: @@ -853,14 +853,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cacbe4c1-ddf7-4406-b694-28e84411b5be?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/df3532ec-1648-437e-a75b-0c28f10139ca?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -868,7 +868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:32 GMT + - Fri, 21 Jan 2022 20:29:35 GMT expires: - '-1' pragma: @@ -904,11 +904,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cacbe4c1-ddf7-4406-b694-28e84411b5be?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/df3532ec-1648-437e-a75b-0c28f10139ca?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cacbe4c1-ddf7-4406-b694-28e84411b5be\",\r\n - \ \"name\": \"cacbe4c1-ddf7-4406-b694-28e84411b5be\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/df3532ec-1648-437e-a75b-0c28f10139ca\",\r\n + \ \"name\": \"df3532ec-1648-437e-a75b-0c28f10139ca\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -917,7 +917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:49 GMT + - Fri, 21 Jan 2022 20:29:52 GMT expires: - '-1' pragma: @@ -955,8 +955,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -971,9 +971,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -984,7 +984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:50 GMT + - Fri, 21 Jan 2022 20:29:52 GMT expires: - '-1' pragma: @@ -1022,8 +1022,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1038,9 +1038,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:51 GMT + - Fri, 21 Jan 2022 20:29:53 GMT expires: - '-1' pragma: @@ -1113,14 +1113,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:52.1105374Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:54.3253438Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efe167b4-7485-412e-85d6-8d3f898762b3?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e22a11d4-b759-4fd5-8178-a06991ffc37e?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1128,7 +1128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:51 GMT + - Fri, 21 Jan 2022 20:29:54 GMT expires: - '-1' pragma: @@ -1144,7 +1144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1164,11 +1164,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efe167b4-7485-412e-85d6-8d3f898762b3?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e22a11d4-b759-4fd5-8178-a06991ffc37e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efe167b4-7485-412e-85d6-8d3f898762b3\",\r\n - \ \"name\": \"efe167b4-7485-412e-85d6-8d3f898762b3\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e22a11d4-b759-4fd5-8178-a06991ffc37e\",\r\n + \ \"name\": \"e22a11d4-b759-4fd5-8178-a06991ffc37e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1177,7 +1177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:08 GMT + - Fri, 21 Jan 2022 20:30:11 GMT expires: - '-1' pragma: @@ -1215,8 +1215,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-52-14e95\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-54-523ac\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1231,9 +1231,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.4200522Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:52.1105374Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:54.3253438Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -1244,7 +1244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:09 GMT + - Fri, 21 Jan 2022 20:30:11 GMT expires: - '-1' pragma: @@ -1278,12 +1278,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1298,12 +1298,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.9743841Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:35.2501912Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-33-0a0b5\"\r\n}" + \"2022-01-21-20-29-35-421ff\"\r\n}" headers: cache-control: - no-cache @@ -1312,7 +1312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:11 GMT + - Fri, 21 Jan 2022 20:30:12 GMT expires: - '-1' pragma: @@ -1346,12 +1346,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1366,12 +1366,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.9743841Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:35.2501912Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.9743841Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-33-0a0b5\"\r\n}" + \"2022-01-21-20-29-35-421ff\"\r\n}" headers: cache-control: - no-cache @@ -1380,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:11 GMT + - Fri, 21 Jan 2022 20:30:13 GMT expires: - '-1' pragma: @@ -1416,7 +1416,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-33-0a0b5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff?api-version=2021-05-01-preview response: body: string: '' @@ -1426,7 +1426,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:55:12 GMT + - Fri, 21 Jan 2022 20:30:14 GMT expires: - '-1' pragma: @@ -1464,7 +1464,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -1481,15 +1481,15 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:54:11.758217Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:29:13.1408157Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:54:11.758217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-11-497ac\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-11-497ac\"\r\n },\r\n {\r\n \"properties\": + \"2022-01-21-20-29-13-7017d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \ \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -1506,21 +1506,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:54:52.1105374Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:29:54.3253438Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:54:52.1105374Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-54-52-14e95\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:29:54.3253438Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-54-523ac\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-52-14e95\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-29-54-523ac\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4334' + - '4336' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:13 GMT + - Fri, 21 Jan 2022 20:30:15 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index 804de4d2b09..9490f636536 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:16 GMT + - Fri, 21 Jan 2022 20:29:16 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/828df04c-afdb-40fc-8dce-96889b0e4fde?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cd122501-2ac3-477c-9200-caa9bf5033a6?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:17 GMT + - Fri, 21 Jan 2022 20:29:17 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/828df04c-afdb-40fc-8dce-96889b0e4fde?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cd122501-2ac3-477c-9200-caa9bf5033a6?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/828df04c-afdb-40fc-8dce-96889b0e4fde\",\r\n - \ \"name\": \"828df04c-afdb-40fc-8dce-96889b0e4fde\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cd122501-2ac3-477c-9200-caa9bf5033a6\",\r\n + \ \"name\": \"cd122501-2ac3-477c-9200-caa9bf5033a6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:34 GMT + - Fri, 21 Jan 2022 20:29:34 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-17-0d701\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-17-cc727\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:34 GMT + - Fri, 21 Jan 2022 20:29:34 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-17-0d701\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-17-cc727\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:35 GMT + - Fri, 21 Jan 2022 20:29:35 GMT expires: - '-1' pragma: @@ -318,8 +318,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-17-0d701\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-17-cc727\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -334,9 +334,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:17.2738011Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:17.2738011Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:36 GMT + - Fri, 21 Jan 2022 20:29:36 GMT expires: - '-1' pragma: @@ -393,7 +393,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:37 GMT + - Fri, 21 Jan 2022 20:29:36 GMT expires: - '-1' pragma: @@ -426,7 +426,13 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"shared + sql and web","templateLink":{"uri":"C:\\Users\\harshpatel\\Misc\\TemplateFiles\\empty.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4'' + for more details.","details":[{"code":"InvalidContentLink","message":"The + provided content link ''Azure.Deployments.Core.Entities.DeploymentTemplateContentLink'' + is invalid or not supported. Content link must be an absolute URI not referencing + local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East @@ -864,16 +870,16 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHHbuJAAED%2fBWn3NsFlMDhStHLDFYgLxb4glxk8uOJxAUf5981q3%2flJ7%2fC%2bFjV69g6pC7p4%2f1qcNT84%2bov3Rd73LX1fLqu4jm%2boQnX%2fFs9Dh97SplrSIaFpR9qeNDVdxmyCY4FfAcwlGEAOs2AjJCuwgZtUWEOc8hy7bLtmJBnq6HJH0q6hDe7fPESboUsRXWaoLZvXv4rfx2lB%2f8QtAeOP%2fRP44BiOBcwKMCxoOzQSNP2mBWmDpkD1hwGpKf1HkwzWC06fyk5WRQcwnsoquV%2bFm9GYc7O4B015y1RIYKgwmeGxmseDNQkhmn09GQ123MzRWvSguBdPLw1WTRntzrUAOAwHa84cRyiDbl%2bvz8xJTwPmWNdDZGf7rq%2fMdi5Sr7CI04uZrXJK0Q2dsS8lFV%2fhQ5oNxggf6lXmTN3SD6vJUHtGgPlWE3xuYx7Lyd8yoYi0QG1RYZ22lqVo7r6F0i0JrrZJC7VHoZyrCps%2f2YdsWH5gIzdXza1iRhGIZjk6pKiYgrVjWe549rDpKzENZunBRg81uekUak4U7leldXnQcr5Vs2YB90AmbAY9qO6VrvbH8%2f4Ibd7QpxjbuXixfWYEeHRle0tYl%2fQvX4QYhuFzKsrJqdKwXOd3%2fKQM5zgoPMnCxOcyX6lb%2fyDbkWmMbkDmaRW4kcjYQB6dFm8uF0cZ3OemEnUtcbak3knrbudkjcM%2f4oS%2fRQSj5tKkKyT4aLy2KhKvYBDszzugo38x8O4lKT%2b7f%2fHZ4vv7Lw%3d%3d"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHZjqJAAEX%2fxWTmrVpAQOikM0FAFqFBKBF5MSDFIrIWe6f%2ffXoy5%2fkm5ybna1OhuTfyqsCb96%2fNVXbhxd28b7K%2bb%2fD7dluGVZiiElX9W7gOHXp71OUWDxF%2bdHnT53WFtyEZJSG7Y0BCRQmgqYQEHBsxgKO5B7unk8eOIrdNV495jDq8NfNHV%2bM66d8chOuheyC8jVHzqpd%2fFrcPHwX%2bEzY5GH%2fWP4IPiqBIQDCAIEHToTFH029c5A2sC1R9qDTWhP%2fIgko60LNF8yDxBiAciRQOOjSR3zETCMTSiWRWfR3myatZ69lqT5uh5LnghzrGXBUlCz8WKEM8OXi5eivrIpCvPgBUTAMdRr3PBNUVovXJiNBqWs2Dq%2fm6YrKEdnl0FW2RebWPjUbF3ue1V6zolB7BXbwc2qTXZ1kaJe5suma0SLXlGfshLKRej1IL%2brN8caoBaPi%2bowKPMfJSU%2bRUcsjnXq%2b5WiRdIK2imboevrrDOd2dFnFXmGdWSOfP0yiJt45hnhdLcYODXYrxjb0Eps7mRyXzspmOOcE1cKpwC90TisJP4is7Dg1%2frseXSa1RsNoqdVJljHUm9U3Lfl2ok47QdZTs5sILa9seXKdfzjyd0MFtnp4C%2fVotU1yXyb57XXTMRsIF3C2asnZ%2fLHRVOBK9NJ5hvs4BPN94QgNCYmQ%2b5%2fvGaZiyqVx12VXKlXWtUVAW7efrvgxJRr5lsdfeJVttq3K%2f20PbgHdnhAxKzE%2fDlBJOFMSf3L928eb7%2by8%3d"}' headers: cache-control: - no-cache content-length: - - '241521' + - '243034' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:38 GMT + - Fri, 21 Jan 2022 20:29:37 GMT expires: - '-1' pragma: @@ -885,7 +891,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 23be5d23-fbae-493e-ad52-11164a4de747 + - b8b54d6d-8039-4fe5-9251-2801cc52e46c + - 0d3973a7-2c91-4794-9afe-ea3021ce7616 status: code: 200 message: OK @@ -903,7 +910,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHHbuJAAED%2FBWn3NsFlMDhStHLDFYgLxb4glxk8uOJxAUf5981q3%2FlJ7%2FC%2BFjV69g6pC7p4%2F1qcNT84%2Bov3Rd73LX1fLqu4jm%2BoQnX%2FFs9Dh97SplrSIaFpR9qeNDVdxmyCY4FfAcwlGEAOs2AjJCuwgZtUWEOc8hy7bLtmJBnq6HJH0q6hDe7fPESboUsRXWaoLZvXv4rfx2lB%2F8QtAeOP%2FRP44BiOBcwKMCxoOzQSNP2mBWmDpkD1hwGpKf1HkwzWC06fyk5WRQcwnsoquV%2BFm9GYc7O4B015y1RIYKgwmeGxmseDNQkhmn09GQ123MzRWvSguBdPLw1WTRntzrUAOAwHa84cRyiDbl%2Bvz8xJTwPmWNdDZGf7rq%2FMdi5Sr7CI04uZrXJK0Q2dsS8lFV%2FhQ5oNxggf6lXmTN3SD6vJUHtGgPlWE3xuYx7Lyd8yoYi0QG1RYZ22lqVo7r6F0i0JrrZJC7VHoZyrCps%2F2YdsWH5gIzdXza1iRhGIZjk6pKiYgrVjWe549rDpKzENZunBRg81uekUak4U7leldXnQcr5Vs2YB90AmbAY9qO6VrvbH8%2F4Ibd7QpxjbuXixfWYEeHRle0tYl%2FQvX4QYhuFzKsrJqdKwXOd3%2FKQM5zgoPMnCxOcyX6lb%2FyDbkWmMbkDmaRW4kcjYQB6dFm8uF0cZ3OemEnUtcbak3knrbudkjcM%2F4oS%2FRQSj5tKkKyT4aLy2KhKvYBDszzugo38x8O4lKT%2B7f%2FHZ4vv7Lw%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHZjqJAAEX%2FxWTmrVpAQOikM0FAFqFBKBF5MSDFIrIWe6f%2FfXoy5%2Fkm5ybna1OhuTfyqsCb96%2FNVXbhxd28b7K%2Bb%2FD7dluGVZiiElX9W7gOHXp71OUWDxF%2BdHnT53WFtyEZJSG7Y0BCRQmgqYQEHBsxgKO5B7unk8eOIrdNV495jDq8NfNHV%2BM66d8chOuheyC8jVHzqpd%2FFrcPHwX%2BEzY5GH%2FWP4IPiqBIQDCAIEHToTFH029c5A2sC1R9qDTWhP%2FIgko60LNF8yDxBiAciRQOOjSR3zETCMTSiWRWfR3myatZ69lqT5uh5LnghzrGXBUlCz8WKEM8OXi5eivrIpCvPgBUTAMdRr3PBNUVovXJiNBqWs2Dq%2Fm6YrKEdnl0FW2RebWPjUbF3ue1V6zolB7BXbwc2qTXZ1kaJe5suma0SLXlGfshLKRej1IL%2BrN8caoBaPi%2BowKPMfJSU%2BRUcsjnXq%2B5WiRdIK2imboevrrDOd2dFnFXmGdWSOfP0yiJt45hnhdLcYODXYrxjb0Eps7mRyXzspmOOcE1cKpwC90TisJP4is7Dg1%2FrseXSa1RsNoqdVJljHUm9U3Lfl2ok47QdZTs5sILa9seXKdfzjyd0MFtnp4C%2FVotU1yXyb57XXTMRsIF3C2asnZ%2FLHRVOBK9NJ5hvs4BPN94QgNCYmQ%2B5%2FvGaZiyqVx12VXKlXWtUVAW7efrvgxJRr5lsdfeJVttq3K%2F20PbgHdnhAxKzE%2FDlBJOFMSf3L928eb7%2By8%3D response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -1238,16 +1245,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLrqJAAAX%2fxWRmhzwFNLmZgCCg%2bEBQ0Y1pmgYaELAbRLi5%2fz5O5ixqVUkl53tSoXfr4qqgk8X35GL6wcmfLCZZ2zZ0wbIPUIEUPVDVTsHYETSF9YOlXUQhwU2L64qygI8SIIszJhGihJGEhGdUOZoxqqRCWZESKAo825D6hWNEKLvFkNS0TtrpEdG6IxBRNkZNWQ%2f%2fKn4LYEH%2fgAYzr4%2f9CXwJnMAz3IzheKYh6IVR%2f5sWuAnqAlVftkQd7f9Mzea98NIZnm6oLoNydNRJYO%2b9TKkCX1YFtLKja%2bEk2bbBuCdzzWydRGzDhNPFUACWEJfl%2bE7eu0gW05mxdIUeJwMak9O5C%2b0epMTbaFbeiVAim6yUz2BVWpqP3BtzFQI%2fVMM6jpQh3%2bXuB1t%2fblwP6i1diball7XRpq2my1nXuSv3orR7Zrd8c8PbnS%2fXYebAjQU1NDiWQw75atCKYYdv3uGWcqVFFXzc4tRRTtXrFPsbLuxv4t0qAKb7UvP74kLXY7nV1%2fqziJHURIF5hd74PDKSCc%2fqk8frXADpmWJXdl8zWx65EXppZ9j3kmQovEva8ylrnJnqnyt%2fifHk5%2bcv\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY3LjqJAAAD%2fxcPekIeCYjLZgDjDS0VEUC8EmgZ6kG6muxFxMv8%2bbrYOdaqkvicYPriPcMMmq%2b9JsjlGp%2bNkNak579hKFNsMZxVsIebT7NlTOAWkFVmfM0BRxxHBTMzkvMy0mSqUSl4Kc6WUhaWWq8JyvgTaYl6CmSKLHSV3VEDKxC0ClDBS8mkIGekpgEwsYHcj47%2fLkWegYX%2bzDgn3V%2f0avCmSIguSKkiy0FF4R3D4wxrURaSB%2bM2eM8f4z8aw5cM56a2DaS19AX6WoUkjO6gGfSxussolr%2bLtzrFJ7l9I46RfpnWc6YvYVq2iVqVr0V7r83KBYEpJiD7ez0%2fymSrZAkq7HqWVZLZNYewscIRezA%2bj3r9kGX4Qg3R7dqkP%2fb3LdTVMHjeVc%2bOo%2b9pF2WfGnNbrcGn2IaxM%2fdIj7xYkNvdqhp6S9rB10z3XW%2bAlwNBH591JBxO0ETH51g3GIRtuRN7MsVFdCy9SugAMn7GzKXUc7E1PPg1gdC5fTnENrLBadxZurb1EqL3OoMuyR5WnmosiFOJRcWbxGrPzwX%2fq9TWpsck%2b%2bD2mCGCsm7PaOS3qrXEwjMnPzy8%3d\"}" headers: cache-control: - no-cache content-length: - - '233935' + - '233931' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:38 GMT + - Fri, 21 Jan 2022 20:29:38 GMT expires: - '-1' pragma: @@ -1259,7 +1266,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b15fe68a-9425-4185-80a3-0417b1d01f19 + - 5f1183c1-1e49-45ec-9028-379410fa1826 status: code: 200 message: OK @@ -1277,20 +1284,19 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLrqJAAAX%2FxWRmhzwFNLmZgCCg%2BEBQ0Y1pmgYaELAbRLi5%2Fz5O5ixqVUkl53tSoXfr4qqgk8X35GL6wcmfLCZZ2zZ0wbIPUIEUPVDVTsHYETSF9YOlXUQhwU2L64qygI8SIIszJhGihJGEhGdUOZoxqqRCWZESKAo825D6hWNEKLvFkNS0TtrpEdG6IxBRNkZNWQ%2F%2FKn4LYEH%2FgAYzr4%2F9CXwJnMAz3IzheKYh6IVR%2F5sWuAnqAlVftkQd7f9Mzea98NIZnm6oLoNydNRJYO%2B9TKkCX1YFtLKja%2BEk2bbBuCdzzWydRGzDhNPFUACWEJfl%2BE7eu0gW05mxdIUeJwMak9O5C%2B0epMTbaFbeiVAim6yUz2BVWpqP3BtzFQI%2FVMM6jpQh3%2BXuB1t%2FblwP6i1diball7XRpq2my1nXuSv3orR7Zrd8c8PbnS%2FXYebAjQU1NDiWQw75atCKYYdv3uGWcqVFFXzc4tRRTtXrFPsbLuxv4t0qAKb7UvP74kLXY7nV1%2FqziJHURIF5hd74PDKSCc%2Fqk8frXADpmWJXdl8zWx65EXppZ9j3kmQovEva8ylrnJnqnyt%2FifHk5%2Bcv + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY3LjqJAAAD%2FxcPekIeCYjLZgDjDS0VEUC8EmgZ6kG6muxFxMv8%2BbrYOdaqkvicYPriPcMMmq%2B9JsjlGp%2BNkNak579hKFNsMZxVsIebT7NlTOAWkFVmfM0BRxxHBTMzkvMy0mSqUSl4Kc6WUhaWWq8JyvgTaYl6CmSKLHSV3VEDKxC0ClDBS8mkIGekpgEwsYHcj47%2FLkWegYX%2BzDgn3V%2F0avCmSIguSKkiy0FF4R3D4wxrURaSB%2BM2eM8f4z8aw5cM56a2DaS19AX6WoUkjO6gGfSxussolr%2BLtzrFJ7l9I46RfpnWc6YvYVq2iVqVr0V7r83KBYEpJiD7ez0%2FymSrZAkq7HqWVZLZNYewscIRezA%2Bj3r9kGX4Qg3R7dqkP%2Fb3LdTVMHjeVc%2BOo%2B9pF2WfGnNbrcGn2IaxM%2FdIj7xYkNvdqhp6S9rB10z3XW%2BAlwNBH591JBxO0ETH51g3GIRtuRN7MsVFdCy9SugAMn7GzKXUc7E1PPg1gdC5fTnENrLBadxZurb1EqL3OoMuyR5WnmosiFOJRcWbxGrPzwX%2Fq9TWpsck%2B%2BD2mCGCsm7PaOS3qrXEwjMnPzy8%3D response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-20-17-22-34-89b33","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2022-01-20-17-22-34-89b33","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:22:33.8932667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:22:33.8932667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-33-0a0b5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:32.9743841Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptioniwmsxin6o6ml324mmf/snapshots/2022-01-21-17-54-32-0221e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:32.0693662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:32.0693662Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptioniwmsxin6o6ml324mmf","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptioniwmsxin6o6ml324mmf"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:37.0642805Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:37.0642805Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsitetupbg5emutqjzn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsitetupbg5emutqjzn"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:35.2501912Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsp6tmo2cghgxf2uoh5/snapshots/2022-01-21-20-29-33-daedb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:32.9276192Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:32.9276192Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsp6tmo2cghgxf2uoh5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsp6tmo2cghgxf2uoh5"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:36.4935066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:36.4935066Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionvf4scnc3rv3fiyf6ip","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionvf4scnc3rv3fiyf6ip"}]}' headers: cache-control: - no-cache content-length: - - '98125' + - '99300' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:38 GMT + - Fri, 21 Jan 2022 20:29:38 GMT expires: - '-1' pragma: @@ -1302,7 +1308,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - bb54f387-7dfd-4d89-8371-61a44c57637c + - 93de6875-a980-4051-8f53-c89109a2e602 status: code: 200 message: OK @@ -1335,7 +1341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:38 GMT + - Fri, 21 Jan 2022 20:29:39 GMT expires: - '-1' pragma: @@ -1393,14 +1399,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:39.7723691Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:40.3801202Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:39.7723691Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:40.3801202Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c5d2e0d5-a43c-4099-97de-e3817055c361?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/144f14de-a000-463a-abd9-5638788eaf13?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1408,7 +1414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:39 GMT + - Fri, 21 Jan 2022 20:29:40 GMT expires: - '-1' pragma: @@ -1420,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1440,11 +1446,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c5d2e0d5-a43c-4099-97de-e3817055c361?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/144f14de-a000-463a-abd9-5638788eaf13?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c5d2e0d5-a43c-4099-97de-e3817055c361\",\r\n - \ \"name\": \"c5d2e0d5-a43c-4099-97de-e3817055c361\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/144f14de-a000-463a-abd9-5638788eaf13\",\r\n + \ \"name\": \"144f14de-a000-463a-abd9-5638788eaf13\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1453,7 +1459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:57 GMT + - Fri, 21 Jan 2022 20:29:57 GMT expires: - '-1' pragma: @@ -1491,8 +1497,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-40-edcd3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-40-edcd3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-40-01524\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-40-01524\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1507,9 +1513,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:39.7723691Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:40.3801202Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:39.7723691Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:40.3801202Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -1520,7 +1526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:57 GMT + - Fri, 21 Jan 2022 20:29:57 GMT expires: - '-1' pragma: @@ -1558,8 +1564,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-40-edcd3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-40-edcd3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-40-01524\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-40-01524\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1574,9 +1580,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:39.7723691Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:40.3801202Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:39.7723691Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:40.3801202Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -1587,7 +1593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:58 GMT + - Fri, 21 Jan 2022 20:29:59 GMT expires: - '-1' pragma: @@ -1633,7 +1639,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:58 GMT + - Fri, 21 Jan 2022 20:29:59 GMT expires: - '-1' pragma: @@ -1666,7 +1672,13 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"shared + sql and web","templateLink":{"uri":"C:\\Users\\harshpatel\\Misc\\TemplateFiles\\empty.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4'' + for more details.","details":[{"code":"InvalidContentLink","message":"The + provided content link ''Azure.Deployments.Core.Entities.DeploymentTemplateContentLink'' + is invalid or not supported. Content link must be an absolute URI not referencing + local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East @@ -2104,16 +2116,16 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3HbqNAAIDhd%2fFhbxPDmGIiRSvKmLI0mxZ8sTAMBlPDUAJR3n2z2v%2f8S9%2fXrsWfo1m2Fdm9fu0i5PmBt3vdFePYk9f9vkna5IEb3I4vyTYN%2bCXtmj2Z7iQdyn4su5bsE%2fqeJ9yBBTm854CBOQ2O3J0FR%2baYcjyTpwdI7%2fuhm8sMD2RvlenQkS4fXy6YdNOQYrLPcF936z%2fFG5O0Ir%2bTvgTzz%2f0DvEEK0oBiAUWDfsBziZdfpCp7v6tw%2b6YxRBf%2fh0SNvvihK1uSIpiAuii0XHhNfJy1rdCrp9%2fVj0xhSiaWqUy70OhyAHwZM%2fgQWBDnM2QjehUujGAL4YqYpquvVtRyAObMZGyZaXK1P9gtX3Ly0%2bk53fcPVu1MNPStiPVUfUWsBvFUS7xxDg9Z0XidMufsJG4a1cYfyk2CumqoDrtoyrhyTHFCnAePelAv3okKwE1vFA8jIzwZf%2bRSR1Sqe7ZxqFGUKNC1xKXokyXmaFEhg3Fy9XNRSVL5J8zV4DPaOrdyCalWAxMZniskxK1qhB9bcprFZHs8mmXhed1zs6upSXbT%2bcwjOz3A0l4Fu3UszfsgSb%2bGjuM%2bAvCuJFN4924cEETURWawcIExrTl5HhRJdcTWYc%2fbE7U58RlLjYSYV1A%2fq%2fJNV7kllsPVMF1RkNUMNpLJDSci5dBhBQfIsnClG8tBTrQqEiYBFfKUbd8WqzDn4E45NzBd8Mx%2f2IAWABSQ9nl7f2cuXXpCsfgQxd33918%3d"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3djqIwAEDhd%2fFi7xgLAuIkkw0iig4if4JwQwBbYJBSaEFhMu%2b%2bu9lzfZLve4Hhi5kVruni%2fXsR6p5%2f9Rbvi5IxQt%2bXyybFaQEbiNlbOg89fMvbZkmHjOZ9RVjVYrpM%2bQyl8krikJAhThQQzylyJnGKqOTyWkT5SuCXpG%2fH6g57ujxXed%2fSFrE3F9J26HNIl3dIHu30T%2fFYmtf0d0oqbvx7%2fwU%2bBCDwHJA4wHOkh2MFn79oXRG%2frSH%2bMER6VP%2bnq4bgOrHtOVttnwA2vVSrVr0gMEw5PlkF9Y7pM2LZVGhUOOjWpyeO%2bx6Fq8vaymDv2GC%2bjCuOSTayuSPqXQsx%2f6GnGxb6ZJ2wSmkfwTWSxma%2bx%2fyQS4RZ4nitDSWMGQCHxAAjb9V8NQWIwJ2TjuJ0N%2b%2bn8nZyBDdLlP3VIJgcW9%2bWt5m2j5uvsXH5jYADVTpy0vnGwOeDhvOq6OhM1k5wCl2g%2bYa0%2byolvYbUCQEuoHSuOL0SojAPSvwi5U06fupu0ytdV1xjCjsREEtn%2fa15hNeoNK3%2bga%2bbrtzen7lxOxTZbA5T3PkxZkizmIuf9c6yxK6ck%2bZCUrsExsnPZXtL%2bJXdiJcbPxIgB7Dl7Tja%2bXusIFn%2fUjpN5nZ5tsch2sdJg8PcyuizW%2fMl6s3hohWnvovOSE0qpaBZlJ5ik9MS%2fjJvhmR7oXN2rqNc8roD5qJpil7dpjLXo993Nmhha0dRsqmr9ZDALHncXiuxgMacKGpubcHBydVCVRc%2fP38A"}' headers: cache-control: - no-cache content-length: - - '241507' + - '243048' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:00 GMT + - Fri, 21 Jan 2022 20:30:01 GMT expires: - '-1' pragma: @@ -2125,7 +2137,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 57d9fc5b-b762-4bbf-887c-4c7dc5c39f3c + - 18a5799b-e127-4a2b-b9d7-542a43af9004 + - 8e48297b-4b31-4d85-9c9e-0c90770a537e status: code: 200 message: OK @@ -2143,7 +2156,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3HbqNAAIDhd%2FFhbxPDmGIiRSvKmLI0mxZ8sTAMBlPDUAJR3n2z2v%2F8S9%2FXrsWfo1m2Fdm9fu0i5PmBt3vdFePYk9f9vkna5IEb3I4vyTYN%2BCXtmj2Z7iQdyn4su5bsE%2FqeJ9yBBTm854CBOQ2O3J0FR%2BaYcjyTpwdI7%2Fuhm8sMD2RvlenQkS4fXy6YdNOQYrLPcF936z%2FFG5O0Ir%2BTvgTzz%2F0DvEEK0oBiAUWDfsBziZdfpCp7v6tw%2B6YxRBf%2Fh0SNvvihK1uSIpiAuii0XHhNfJy1rdCrp9%2FVj0xhSiaWqUy70OhyAHwZM%2FgQWBDnM2QjehUujGAL4YqYpquvVtRyAObMZGyZaXK1P9gtX3Ly0%2Bk53fcPVu1MNPStiPVUfUWsBvFUS7xxDg9Z0XidMufsJG4a1cYfyk2CumqoDrtoyrhyTHFCnAePelAv3okKwE1vFA8jIzwZf%2BRSR1Sqe7ZxqFGUKNC1xKXokyXmaFEhg3Fy9XNRSVL5J8zV4DPaOrdyCalWAxMZniskxK1qhB9bcprFZHs8mmXhed1zs6upSXbT%2BcwjOz3A0l4Fu3UszfsgSb%2BGjuM%2BAvCuJFN4924cEETURWawcIExrTl5HhRJdcTWYc%2FbE7U58RlLjYSYV1A%2Fq%2FJNV7kllsPVMF1RkNUMNpLJDSci5dBhBQfIsnClG8tBTrQqEiYBFfKUbd8WqzDn4E45NzBd8Mx%2F2IAWABSQ9nl7f2cuXXpCsfgQxd33918%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3djqIwAEDhd%2FFi7xgLAuIkkw0iig4if4JwQwBbYJBSaEFhMu%2B%2Bu9lzfZLve4Hhi5kVruni%2FXsR6p5%2F9Rbvi5IxQt%2BXyybFaQEbiNlbOg89fMvbZkmHjOZ9RVjVYrpM%2BQyl8krikJAhThQQzylyJnGKqOTyWkT5SuCXpG%2FH6g57ujxXed%2FSFrE3F9J26HNIl3dIHu30T%2FFYmtf0d0oqbvx7%2FwU%2BBCDwHJA4wHOkh2MFn79oXRG%2FrSH%2BMER6VP%2Bnq4bgOrHtOVttnwA2vVSrVr0gMEw5PlkF9Y7pM2LZVGhUOOjWpyeO%2Bx6Fq8vaymDv2GC%2BjCuOSTayuSPqXQsx%2F6GnGxb6ZJ2wSmkfwTWSxma%2Bx%2FyQS4RZ4nitDSWMGQCHxAAjb9V8NQWIwJ2TjuJ0N%2B%2Bn8nZyBDdLlP3VIJgcW9%2BWt5m2j5uvsXH5jYADVTpy0vnGwOeDhvOq6OhM1k5wCl2g%2BYa0%2ByolvYbUCQEuoHSuOL0SojAPSvwi5U06fupu0ytdV1xjCjsREEtn%2Fa15hNeoNK3%2Bga%2Bbrtzen7lxOxTZbA5T3PkxZkizmIuf9c6yxK6ck%2BZCUrsExsnPZXtL%2BJXdiJcbPxIgB7Dl7Tja%2BXusIFn%2FUjpN5nZ5tsch2sdJg8PcyuizW%2FMl6s3hohWnvovOSE0qpaBZlJ5ik9MS%2FjJvhmR7oXN2rqNc8roD5qJpil7dpjLXo993Nmhha0dRsqmr9ZDALHncXiuxgMacKGpubcHBydVCVRc%2FP38A response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -2478,7 +2491,7 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAEX%2fxWTmDZGCgCYnE0S8g2JF1BdSSsGKQqUFwZPz7%2bNkdtbjSlayv3sFacWGFjnvjb97oQMPAeyNe1chGB%2fL8gMVKCMPUog%2betcV6ePyIfM65riiTNCy4DJS4hTp6lBKQZxKGkgVydTjoWRqJtYNLcUqUGRWlQ1NSMVll%2bKq5GUq%2bnvCy7rChMsJYfey%2b1eBAuGc%2f0GMSs3H%2fgS%2bwAAo0mAoDRSJVaSh5PWb55QdypwUXwuNL63%2fc6wF8NXwOfUn9kwF4UhMEnoL8xAXM5AkWzENjUCwG7R1pwPrDdwZtjPyckPK7Et9KIqzdHbfO2%2bVLqPGgHZuWnXcbaJVPNP38xan184WVmYjYjQKzZ%2fz0%2f1Yzn00uZhikdxi7xK3qA2bplwCd7fdDiYb1YNG%2b7BOyZnZx4x310G2e1prrQ7AUUV37TIR7Xs%2fVayLQbfcjnFmdxvFUtvr0ILn%2bdVlC%2bmF4A3i9jL3%2fSB57tXngs3QWnOj9zwglD%2fYDvrZyQ1G3cPKMgWuGxx4jKZguVLWEba3QMuZ6WVbxWdDRzVBdPaWqqM1Gbi%2fOD7oUWR5XvLSp3vL%2bTz5S00%2b9H5%2b%2fgI%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLjqJAAEX%2fxWRmV%2fJ%2btElnAoKCIC3QKrohUBRQIhRSSAOd%2fvdxMjdneZKT3O9Fg8bexU1FF6vvxdkMP4%2fhYrUo%2b76lK4apkyYpUI2afpnMzw4tIakZ%2bkwp7HDbY9JQJuHSPJEFCeR8mgORzzmgyqkEVFGFsiLmUOA5pu3IgDPUUWaPYUcoyftlgCh5dhBRJkPtnUz%2fKmGfwIr%2bSVoMhpf9CrzzLM8BVgIsB9oODRh9%2faYVbj9JhZp3S6S29n%2bmZnH%2bxHeGr83qPY6CQ3CL4PWxsbZXYUDN2YjkWtz5yDCitZsmZQJNn63BoGiAZJ5OWHvyo0eMUdzRAG830UxuOY8UxGa1GheqXlWZ5q0hULiIu7msfHfdvVaoJ4X7kqTdfmx7bzgcnfQcVfxpdNk9xJe2MtTa2dyIkeFeM2TiqE55qJvWKWk1s%2fK4eyuqbrS2GxdpvmQ6VS7azs46a%2bnsBCr0UMjCIpuJf%2fy42xZboEuA6%2fWgTk1qN8kj%2fLiaVmMO%2b3thi%2fqxlGddm46nW%2blFpuwRUT%2fkO6CYp7kPdyA4GQdhMvhkm9UXX%2fD62H8bn6kQRw%2fnroea%2bXryl5C9WPz8%2fAU%3d\"}" headers: cache-control: - no-cache @@ -2487,7 +2500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:01 GMT + - Fri, 21 Jan 2022 20:30:01 GMT expires: - '-1' pragma: @@ -2499,7 +2512,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 0cfa522b-0ed7-4782-8ce6-5cbc4a317fd0 + - 345975f9-71ee-494e-b788-cee8a9149937 status: code: 200 message: OK @@ -2517,20 +2530,19 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAEX%2FxWTmDZGCgCYnE0S8g2JF1BdSSsGKQqUFwZPz7%2BNkdtbjSlayv3sFacWGFjnvjb97oQMPAeyNe1chGB%2FL8gMVKCMPUog%2BetcV6ePyIfM65riiTNCy4DJS4hTp6lBKQZxKGkgVydTjoWRqJtYNLcUqUGRWlQ1NSMVll%2BKq5GUq%2BnvCy7rChMsJYfey%2B1eBAuGc%2F0GMSs3H%2FgS%2BwAAo0mAoDRSJVaSh5PWb55QdypwUXwuNL63%2Fc6wF8NXwOfUn9kwF4UhMEnoL8xAXM5AkWzENjUCwG7R1pwPrDdwZtjPyckPK7Et9KIqzdHbfO2%2BVLqPGgHZuWnXcbaJVPNP38xan184WVmYjYjQKzZ%2Fz0%2F1Yzn00uZhikdxi7xK3qA2bplwCd7fdDiYb1YNG%2B7BOyZnZx4x310G2e1prrQ7AUUV37TIR7Xs%2FVayLQbfcjnFmdxvFUtvr0ILn%2BdVlC%2BmF4A3i9jL3%2FSB57tXngs3QWnOj9zwglD%2FYDvrZyQ1G3cPKMgWuGxx4jKZguVLWEba3QMuZ6WVbxWdDRzVBdPaWqqM1Gbi%2FOD7oUWR5XvLSp3vL%2BTz5S00%2B9H5%2B%2FgI%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLjqJAAEX%2FxWRmV%2FJ%2BtElnAoKCIC3QKrohUBRQIhRSSAOd%2FvdxMjdneZKT3O9Fg8bexU1FF6vvxdkMP4%2FhYrUo%2B76lK4apkyYpUI2afpnMzw4tIakZ%2Bkwp7HDbY9JQJuHSPJEFCeR8mgORzzmgyqkEVFGFsiLmUOA5pu3IgDPUUWaPYUcoyftlgCh5dhBRJkPtnUz%2FKmGfwIr%2BSVoMhpf9CrzzLM8BVgIsB9oODRh9%2FaYVbj9JhZp3S6S29n%2BmZnH%2BxHeGr83qPY6CQ3CL4PWxsbZXYUDN2YjkWtz5yDCitZsmZQJNn63BoGiAZJ5OWHvyo0eMUdzRAG830UxuOY8UxGa1GheqXlWZ5q0hULiIu7msfHfdvVaoJ4X7kqTdfmx7bzgcnfQcVfxpdNk9xJe2MtTa2dyIkeFeM2TiqE55qJvWKWk1s%2FK4eyuqbrS2GxdpvmQ6VS7azs46a%2BnsBCr0UMjCIpuJf%2Fy42xZboEuA6%2FWgTk1qN8kj%2FLiaVmMO%2B3thi%2FqxlGddm46nW%2BlFpuwRUT%2FkO6CYp7kPdyA4GQdhMvhkm9UXX%2FD62H8bn6kQRw%2Fnroea%2BXryl5C9WPz8%2FAU%3D response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-20-17-22-34-89b33","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2022-01-20-17-22-34-89b33","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:22:33.8932667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:22:33.8932667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"}]}' headers: cache-control: - no-cache content-length: - - '95534' + - '96882' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:01 GMT + - Fri, 21 Jan 2022 20:30:02 GMT expires: - '-1' pragma: @@ -2542,7 +2554,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 671d1588-3de5-4978-88c9-ca83f20fa5e3 + - 75c7e07a-5a9d-489a-8280-263daea1021c status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index 1d880c67d0d..03b92042971 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:31 GMT + - Fri, 21 Jan 2022 20:28:28 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/637719a1-907f-48a1-989d-f44d58b1f4a8?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:31 GMT + - Fri, 21 Jan 2022 20:28:28 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/637719a1-907f-48a1-989d-f44d58b1f4a8?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da\",\r\n - \ \"name\": \"2c2e4a64-76cf-475b-b7e6-fa5b4e56d8da\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/637719a1-907f-48a1-989d-f44d58b1f4a8\",\r\n + \ \"name\": \"637719a1-907f-48a1-989d-f44d58b1f4a8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:48 GMT + - Fri, 21 Jan 2022 20:28:45 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-31-ed476\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-17-53-31-ed476\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-29-b37b6\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-20-28-29-b37b6\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:48 GMT + - Fri, 21 Jan 2022 20:28:45 GMT expires: - '-1' pragma: @@ -249,9 +249,9 @@ interactions: response: body: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-31-ed476\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-29-b37b6\",\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-17-53-31-ed476\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-20-28-29-b37b6\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -267,9 +267,9 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n },\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:48 GMT + - Fri, 21 Jan 2022 20:28:46 GMT expires: - '-1' pragma: @@ -318,8 +318,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-17-53-31-ed476\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-17-53-31-ed476\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-29-b37b6\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-20-28-29-b37b6\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -333,9 +333,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:31.3229412Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:31.3229412Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -346,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:49 GMT + - Fri, 21 Jan 2022 20:28:47 GMT expires: - '-1' pragma: @@ -392,7 +392,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:53:49 GMT + - Fri, 21 Jan 2022 20:28:47 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml index 61f935ba9c2..f34dcbdd7eb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:47 GMT + - Fri, 21 Jan 2022 20:28:46 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3b95652-ff33-4603-8aca-8c5f607d4132?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8d49c91a-3b1e-49f0-b29c-e8eea33fb33f?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:48 GMT + - Fri, 21 Jan 2022 20:28:46 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3b95652-ff33-4603-8aca-8c5f607d4132?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8d49c91a-3b1e-49f0-b29c-e8eea33fb33f?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3b95652-ff33-4603-8aca-8c5f607d4132\",\r\n - \ \"name\": \"b3b95652-ff33-4603-8aca-8c5f607d4132\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8d49c91a-3b1e-49f0-b29c-e8eea33fb33f\",\r\n + \ \"name\": \"8d49c91a-3b1e-49f0-b29c-e8eea33fb33f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:05 GMT + - Fri, 21 Jan 2022 20:29:03 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:05 GMT + - Fri, 21 Jan 2022 20:29:03 GMT expires: - '-1' pragma: @@ -251,7 +251,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -267,12 +267,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-48-9dde8\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-28-47-a4f1c\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:05 GMT + - Fri, 21 Jan 2022 20:29:04 GMT expires: - '-1' pragma: @@ -321,7 +321,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -337,12 +337,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-48-9dde8\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-28-47-a4f1c\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -351,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:06 GMT + - Fri, 21 Jan 2022 20:29:05 GMT expires: - '-1' pragma: @@ -388,8 +388,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-17-53-48-9dde8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-17-53-48-9dde8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -403,9 +403,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:48.5650473Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:48.5650473Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -416,7 +416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:07 GMT + - Fri, 21 Jan 2022 20:29:05 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:07 GMT + - Fri, 21 Jan 2022 20:29:05 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml index 663df5715c9..2843570d9b1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:51 GMT + - Fri, 21 Jan 2022 20:28:49 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1ba518a-fdf5-4938-adb3-380b24eb48fc?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fa381508-0e25-449d-b84f-834021a0b604?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:53:52 GMT + - Fri, 21 Jan 2022 20:28:50 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1ba518a-fdf5-4938-adb3-380b24eb48fc?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fa381508-0e25-449d-b84f-834021a0b604?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1ba518a-fdf5-4938-adb3-380b24eb48fc\",\r\n - \ \"name\": \"b1ba518a-fdf5-4938-adb3-380b24eb48fc\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fa381508-0e25-449d-b84f-834021a0b604\",\r\n + \ \"name\": \"fa381508-0e25-449d-b84f-834021a0b604\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:10 GMT + - Fri, 21 Jan 2022 20:29:07 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:10 GMT + - Fri, 21 Jan 2022 20:29:07 GMT expires: - '-1' pragma: @@ -253,7 +253,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -270,12 +270,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-53-3590d\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-28-51-5e01e\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -284,7 +284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:11 GMT + - Fri, 21 Jan 2022 20:29:09 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -341,12 +341,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n + \ \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-53-53-3590d\"\r\n }\r\n ]\r\n}" + \"2022-01-21-20-28-51-5e01e\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -355,7 +355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:12 GMT + - Fri, 21 Jan 2022 20:29:10 GMT expires: - '-1' pragma: @@ -393,8 +393,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-17-53-53-3590d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-17-53-53-3590d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -409,9 +409,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:53:52.5735088Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:53:52.5735088Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:12 GMT + - Fri, 21 Jan 2022 20:29:10 GMT expires: - '-1' pragma: @@ -468,7 +468,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:12 GMT + - Fri, 21 Jan 2022 20:29:11 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index 31e36e84410..67c82b956b6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:09 GMT + - Fri, 21 Jan 2022 20:29:09 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:09.8081834Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:09.8706184Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:09.8081834Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:09.8706184Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/343f71f9-8404-47f4-93cd-9d706d08b450?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f78ff3a1-984d-4d35-9c30-7dfa3e71b931?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:10 GMT + - Fri, 21 Jan 2022 20:29:10 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/343f71f9-8404-47f4-93cd-9d706d08b450?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f78ff3a1-984d-4d35-9c30-7dfa3e71b931?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/343f71f9-8404-47f4-93cd-9d706d08b450\",\r\n - \ \"name\": \"343f71f9-8404-47f4-93cd-9d706d08b450\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f78ff3a1-984d-4d35-9c30-7dfa3e71b931\",\r\n + \ \"name\": \"f78ff3a1-984d-4d35-9c30-7dfa3e71b931\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:27 GMT + - Fri, 21 Jan 2022 20:29:27 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-10-8c712\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-17-54-10-8c712\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-10-172e7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-20-29-10-172e7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:09.8081834Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:09.8706184Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:09.8081834Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:09.8706184Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:27 GMT + - Fri, 21 Jan 2022 20:29:27 GMT expires: - '-1' pragma: @@ -248,7 +248,13 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"shared + sql and web","templateLink":{"uri":"C:\\Users\\harshpatel\\Misc\\TemplateFiles\\empty.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4'' + for more details.","details":[{"code":"InvalidContentLink","message":"The + provided content link ''Azure.Deployments.Core.Entities.DeploymentTemplateContentLink'' + is invalid or not supported. Content link must be an absolute URI not referencing + local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East @@ -686,16 +692,16 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JbptAAIDhd%2fGht4kBjzFEiir2bYzDYjtwsVhmDGE1g4EQ5d3bqv%2f5l77vTYuXEZVtRTev35urFoTnYPO6Kcaxp6%2fbbZO0yR03uB1fkvU54Jesa7b0mdJsKPux7Fq6TdiUJPxuDwiXEgA5wgKBT%2fdAgELGHyDJdhy77YduKnM80O2xzIaOdmR88THtnkOG6TbHfd19%2fVOCMckq%2bjvpSzD9vf8CbxzDsYDZA4YF%2fYCnEs%2b%2faFX2YVfh9s2E1JL%2bp0km64eXd%2bUoqyICjK%2byShE0kTCZa2FVn2FX33MVljBSmNz0Wc3fgUMZQbwGRjqZ7CSs8UH0oeiKly8NNl0dH68tDzgCn%2faaI8TX4eC2hytzMbKQObftM3Zydxgbq1%2brzK%2fsEo1i7qicUg3PwXRrSSU3%2bJBWkzGjh3qTOcuwjdN%2bNtWR4WGha3zACda5ngOdiUSshWqPK%2fui27aieW4PpXsa3hyLVuqII7lQFbZY2Ids2kHoYK9QLV2x4hjEqxyfMlzN4QHZtjddfWIFSkLDVXqw8UNN7waFGoojd1%2fbHw9ar%2fdm1WzgncqZWOEIms%2fGUMfz1T1DZ2cac0KcQvxwAmYCZPJkRy9Zrxy%2fAhESGEXLXNUzarKoPhSfZKEMhxCOLjI%2f7wp516h6cJKd2DInLyzXeR96scg4QJ5QT4SPD6Q8vUVoRENLkV62s4YUgGodi2ZIju8oQIsphsORC97Zm3sm3DRxu%2bUiEn25SX7X5tV8l%2b6StPn5%2bQM%3d"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3LjqJAAEDRf3Exu2p5o510JigKIihvxQ0BLKCUl1RRgJ3%2b95nJ3PVNzveigRMxUfPEi8%2fvxWXn%2bYG3%2bFyUhHT4c7mskyYpYA0b8pG8hx5%2bZG29xEOKsx51BLUNXiZsmicSL4KcS3MgcDkLVlIqgpWwyiRZyDOeY5dd31J0hz1eWijrW9zm5MOFuB36DOLlHXZVO%2f9TPJJkT%2fw76RCgf%2b%2b%2fwBfHcCxgRMCwoOshRXD8hZ%2bo89snbL50AR%2bU%2f%2b0UnXX90EbORl2bq6erTsrmlrQraldI43TD2JbaPFovjlOs151PzItD1nKetnIA5cxm3gYBPRvbvDk%2b6ZpINCABg5rDq4ntnHrKkAGdjUM%2bkamAzPOb7FF77dv2ce7YYa7Dau7MOePDTFWi5uVv4Cm084sQAHsXb7OHCueD5naronoqHBPDKD0HEjk4c6J08mAfk0hV18IGe3RwnUq61MfzsdAdozSYy1ZTVkxQZMKEHV%2btx9PRUnZ25IDSOzl77UCOgm1I07U2I%2fF2YzUQVRgZIjfZGWSsajhTnRTFtKnauHbCCY1XaKWR29BJcKAkxmOeVUMZVsoj4FQ0tldd55KoMmi57ye4tppW8%2f0xHW3q5ZMrlw9f38EG4upWhgAbb83Mb1idymtUlnFg%2bpGlHnfbpsb7Sd3oqVI8TiV3oNJ1HfZwE95x%2fUY64u1nqUiylRsXUNeCuH2I5N5P52pHvfR8iufpgPnXxc%2fzKJ8aQwKUaAxLXYALpVCUxc%2fPHw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '241521' + - '243028' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:28 GMT + - Fri, 21 Jan 2022 20:29:29 GMT expires: - '-1' pragma: @@ -707,7 +713,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 598eb98c-3ec2-4a72-b309-2f3bf40da282 + - 156c1fd7-2065-4686-a3b0-d14c58ee44c9 + - 4d346b8c-0610-4a12-bc99-6e46416268af status: code: 200 message: OK @@ -725,7 +732,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JbptAAIDhd%2FGht4kBjzFEiir2bYzDYjtwsVhmDGE1g4EQ5d3bqv%2F5l77vTYuXEZVtRTev35urFoTnYPO6Kcaxp6%2FbbZO0yR03uB1fkvU54Jesa7b0mdJsKPux7Fq6TdiUJPxuDwiXEgA5wgKBT%2FdAgELGHyDJdhy77YduKnM80O2xzIaOdmR88THtnkOG6TbHfd19%2FVOCMckq%2BjvpSzD9vf8CbxzDsYDZA4YF%2FYCnEs%2B%2FaFX2YVfh9s2E1JL%2Bp0km64eXd%2BUoqyICjK%2ByShE0kTCZa2FVn2FX33MVljBSmNz0Wc3fgUMZQbwGRjqZ7CSs8UH0oeiKly8NNl0dH68tDzgCn%2FaaI8TX4eC2hytzMbKQObftM3Zydxgbq1%2BrzK%2FsEo1i7qicUg3PwXRrSSU3%2BJBWkzGjh3qTOcuwjdN%2BNtWR4WGha3zACda5ngOdiUSshWqPK%2Fui27aieW4PpXsa3hyLVuqII7lQFbZY2Ids2kHoYK9QLV2x4hjEqxyfMlzN4QHZtjddfWIFSkLDVXqw8UNN7waFGoojd1%2FbHw9ar%2Fdm1WzgncqZWOEIms%2FGUMfz1T1DZ2cac0KcQvxwAmYCZPJkRy9Zrxy%2FAhESGEXLXNUzarKoPhSfZKEMhxCOLjI%2F7wp516h6cJKd2DInLyzXeR96scg4QJ5QT4SPD6Q8vUVoRENLkV62s4YUgGodi2ZIju8oQIsphsORC97Zm3sm3DRxu%2BUiEn25SX7X5tV8l%2B6StPn5%2BQM%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3LjqJAAEDRf3Exu2p5o510JigKIihvxQ0BLKCUl1RRgJ3%2B95nJ3PVNzveigRMxUfPEi8%2FvxWXn%2BYG3%2BFyUhHT4c7mskyYpYA0b8pG8hx5%2BZG29xEOKsx51BLUNXiZsmicSL4KcS3MgcDkLVlIqgpWwyiRZyDOeY5dd31J0hz1eWijrW9zm5MOFuB36DOLlHXZVO%2F9TPJJkT%2Fw76RCgf%2B%2B%2FwBfHcCxgRMCwoOshRXD8hZ%2Bo89snbL50AR%2BU%2F%2B0UnXX90EbORl2bq6erTsrmlrQraldI43TD2JbaPFovjlOs151PzItD1nKetnIA5cxm3gYBPRvbvDk%2B6ZpINCABg5rDq4ntnHrKkAGdjUM%2BkamAzPOb7FF77dv2ce7YYa7Dau7MOePDTFWi5uVv4Cm084sQAHsXb7OHCueD5naronoqHBPDKD0HEjk4c6J08mAfk0hV18IGe3RwnUq61MfzsdAdozSYy1ZTVkxQZMKEHV%2Btx9PRUnZ25IDSOzl77UCOgm1I07U2I%2FF2YzUQVRgZIjfZGWSsajhTnRTFtKnauHbCCY1XaKWR29BJcKAkxmOeVUMZVsoj4FQ0tldd55KoMmi57ye4tppW8%2F0xHW3q5ZMrlw9f38EG4upWhgAbb83Mb1idymtUlnFg%2BpGlHnfbpsb7Sd3oqVI8TiV3oNJ1HfZwE95x%2FUY64u1nqUiylRsXUNeCuH2I5N5P52pHvfR8iufpgPnXxc%2FzKJ8aQwKUaAxLXYALpVCUxc%2FPHw%3D%3D response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -1060,16 +1067,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAAD%2fxWT3DZHKTZOTDYgKqCgUvL2YWgoUFLAFFU7Ov6%2bbnedJJpnvQUnezZqWBR9MvweHOQwjOJgOsqap%2bVQU76hEKbmTshmivmVkiKu7yNsrx4zWDa1KLiLpmiB1rAgJuCaCDBJJ0NWrIuiyjlVNTvAYSGLNqieNCePihmJW8SpphgHhVcsw4WJM6lvV%2favABuGC%2f0E1FZ4f%2bxP4AiMgCSNFGElCzciTktdvXtA6rApSftkyd4z%2fzA1b8o%2bRYPmmpa91nO%2byWSEtNJhpd%2bvRYXA05pK0ywynuadG4FycB6qfE7CwJ1Z8U0q3X3Zd3yVv76qOU8WarcGLXjrUk2jfHu0XTpm%2fMpY50eITW2U3dY8Wt6UByToQziCER%2f1Q7ZkGLC9fd7m3gRML2dvlyYwlmrqHWe%2fY0BCqE6MKlFrNf1r%2bM8aFf%2fGXBznXjPvYcTj16CqUe2wsvNxpD9Yh2roZ28jzfF3BreRoihXBzNbBefJ24YNNajjHps2gL4cGCpBi7dvVDLzty2KuZnGb7WoXB%2bZRfmzOD%2fPYubu6vaSYJeHmPVtp3juwS13nF2dEzCJKzc%2fKX%2bN48PPzFw%3d%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JjqJAAIDhd%2fEwN2RHMOlMWGRTmEbAVi4GsIBiqaIpFrHT7z49mf%2f8J9%2fXBoHneIKoIZv91%2bbjEEZxuNlvqnHsyZ6muxSlJegAGrfpaxrANscdTaaM5APsR4gRoVM2K1KJF6mCywpK4AqWkqVMpGRBzqWdUOQ8x9L9gGf4AAOhPZgPmOBi3J4BwdOQA0I%2fQN%2fi9Z8SjmnekN9pD6n55%2f4B3jiGYylGpBiW6gcwQ7D8Ig3sI9wA9GYLxFH%2fd1BtNli5z0OgGXJ7N7HRubn%2fmksMUrZLalNOLNXincDBjHuczlplXV%2b7M%2bLVXbZj%2fIt5eV6ZVWiV1%2fOuPI3ydJRmgedcLluhFwpK1LvEKd%2fDRxLbF9mo8JGg%2bqj25A4W%2fnOZQFZnvQ9hK8Rtif6EpcJem%2bScLGJwSVV0u1bqIZh5je0jnsdekQLrKFReiaC2vutZegCiajZFqc21ttPE8kMXmqCYRieM4MlZLTvyQiBq0qd5c4JhBuLInOvnzYwN9yFcq3jRYx2eFRvWKPQXakVha3G6n8t15NY%2btb46qUJ3L7JuBecmcjLJoS75F3BCOTXf2dE2OsVTA1XdfH%2f%2fBQ%3d%3d\"}" headers: cache-control: - no-cache content-length: - - '233941' + - '233939' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:29 GMT + - Fri, 21 Jan 2022 20:29:29 GMT expires: - '-1' pragma: @@ -1081,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 56c15c9f-e4b1-4cfd-bc98-20f526461e85 + - 7066e849-0540-483f-94bb-006e797b168c status: code: 200 message: OK @@ -1099,20 +1106,19 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDbrqIwAAD%2FxWT3DZHKTZOTDYgKqCgUvL2YWgoUFLAFFU7Ov6%2BbnedJJpnvQUnezZqWBR9MvweHOQwjOJgOsqap%2BVQU76hEKbmTshmivmVkiKu7yNsrx4zWDa1KLiLpmiB1rAgJuCaCDBJJ0NWrIuiyjlVNTvAYSGLNqieNCePihmJW8SpphgHhVcsw4WJM6lvV%2FavABuGC%2F0E1FZ4f%2BxP4AiMgCSNFGElCzciTktdvXtA6rApSftkyd4z%2FzA1b8o%2BRYPmmpa91nO%2ByWSEtNJhpd%2BvRYXA05pK0ywynuadG4FycB6qfE7CwJ1Z8U0q3X3Zd3yVv76qOU8WarcGLXjrUk2jfHu0XTpm%2FMpY50eITW2U3dY8Wt6UByToQziCER%2F1Q7ZkGLC9fd7m3gRML2dvlyYwlmrqHWe%2FY0BCqE6MKlFrNf1r%2BM8aFf%2FGXBznXjPvYcTj16CqUe2wsvNxpD9Yh2roZ28jzfF3BreRoihXBzNbBefJ24YNNajjHps2gL4cGCpBi7dvVDLzty2KuZnGb7WoXB%2BZRfmzOD%2FPYubu6vaSYJeHmPVtp3juwS13nF2dEzCJKzc%2FKX%2BN48PPzFw%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JjqJAAIDhd%2FEwN2RHMOlMWGRTmEbAVi4GsIBiqaIpFrHT7z49mf%2F8J9%2FXBoHneIKoIZv91%2BbjEEZxuNlvqnHsyZ6muxSlJegAGrfpaxrANscdTaaM5APsR4gRoVM2K1KJF6mCywpK4AqWkqVMpGRBzqWdUOQ8x9L9gGf4AAOhPZgPmOBi3J4BwdOQA0I%2FQN%2Fi9Z8SjmnekN9pD6n55%2F4B3jiGYylGpBiW6gcwQ7D8Ig3sI9wA9GYLxFH%2Fd1BtNli5z0OgGXJ7N7HRubn%2FmksMUrZLalNOLNXincDBjHuczlplXV%2B7M%2BLVXbZj%2FIt5eV6ZVWiV1%2FOuPI3ydJRmgedcLluhFwpK1LvEKd%2FDRxLbF9mo8JGg%2Bqj25A4W%2FnOZQFZnvQ9hK8Rtif6EpcJem%2BScLGJwSVV0u1bqIZh5je0jnsdekQLrKFReiaC2vutZegCiajZFqc21ttPE8kMXmqCYRieM4MlZLTvyQiBq0qd5c4JhBuLInOvnzYwN9yFcq3jRYx2eFRvWKPQXakVha3G6n8t15NY%2Btb46qUJ3L7JuBecmcjLJoS75F3BCOTXf2dE2OsVTA1XdfH%2F%2FBQ%3D%3D response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-20-17-22-34-89b33","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/only4-2022-01-20-17-22-34-89b33","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:22:33.8932667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:22:33.8932667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-11-497ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-11-497ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:11.758217Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-10-8c712","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-17-54-10-8c712","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:09.8081834Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:09.8081834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhzutvijzgsznkw2/snapshots/2022-01-21-17-54-17-0d701","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-17-54-17-0d701","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:54:17.2738011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:17.2738011Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhzutvijzgsznkw2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionhzutvijzgsznkw2"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-13-7017d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:13.1408157Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-10-172e7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-20-29-10-172e7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:09.8706184Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:09.8706184Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhk5c57nbw3rtmeo/snapshots/2022-01-21-20-29-17-cc727","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:17.0296955Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:17.0296955Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhk5c57nbw3rtmeo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionhk5c57nbw3rtmeo"}]}' headers: cache-control: - no-cache content-length: - - '98686' + - '100035' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:29 GMT + - Fri, 21 Jan 2022 20:29:30 GMT expires: - '-1' pragma: @@ -1124,7 +1130,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 3874c7e1-b190-4903-b6e4-85748efea2fc + - ead1fd22-12a7-4d71-b407-b393c3010c47 status: code: 200 message: OK @@ -1148,8 +1154,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-10-8c712\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-17-54-10-8c712\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-10-172e7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-20-29-10-172e7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1164,9 +1170,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:09.8081834Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:09.8706184Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:09.8081834Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:09.8706184Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: @@ -1177,7 +1183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:31 GMT + - Fri, 21 Jan 2022 20:29:31 GMT expires: - '-1' pragma: @@ -1223,7 +1229,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:31 GMT + - Fri, 21 Jan 2022 20:29:32 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index 395664be285..5c08fcd8aea 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:14 GMT + - Fri, 21 Jan 2022 20:29:13 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ebfa790-c14c-4307-84da-e786ce3a4ed0?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e7ea3b3-a45d-40ca-add1-ee1f989590c4?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:14 GMT + - Fri, 21 Jan 2022 20:29:13 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ebfa790-c14c-4307-84da-e786ce3a4ed0?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e7ea3b3-a45d-40ca-add1-ee1f989590c4?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ebfa790-c14c-4307-84da-e786ce3a4ed0\",\r\n - \ \"name\": \"5ebfa790-c14c-4307-84da-e786ce3a4ed0\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e7ea3b3-a45d-40ca-add1-ee1f989590c4\",\r\n + \ \"name\": \"7e7ea3b3-a45d-40ca-add1-ee1f989590c4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:32 GMT + - Fri, 21 Jan 2022 20:29:30 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:32 GMT + - Fri, 21 Jan 2022 20:29:31 GMT expires: - '-1' pragma: @@ -248,8 +248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,9 +263,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -276,7 +276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:32 GMT + - Fri, 21 Jan 2022 20:29:31 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -328,9 +328,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:33 GMT + - Fri, 21 Jan 2022 20:29:32 GMT expires: - '-1' pragma: @@ -378,8 +378,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-17-55-15-6a7ee\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-17-55-15-6a7ee\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -393,9 +393,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:55:15.4096046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:55:15.4096046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:55:33 GMT + - Fri, 21 Jan 2022 20:29:33 GMT expires: - '-1' pragma: @@ -452,7 +452,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:55:34 GMT + - Fri, 21 Jan 2022 20:29:33 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml index 549380354d2..bf36b75b5d4 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:14 GMT + - Fri, 21 Jan 2022 20:30:17 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2d0bf17-c207-4202-a0a0-295b26e31018?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ca081d6-7059-4aa9-9ce2-8e5c5fe409db?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:15 GMT + - Fri, 21 Jan 2022 20:30:18 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2d0bf17-c207-4202-a0a0-295b26e31018?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ca081d6-7059-4aa9-9ce2-8e5c5fe409db?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c2d0bf17-c207-4202-a0a0-295b26e31018\",\r\n - \ \"name\": \"c2d0bf17-c207-4202-a0a0-295b26e31018\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ca081d6-7059-4aa9-9ce2-8e5c5fe409db\",\r\n + \ \"name\": \"5ca081d6-7059-4aa9-9ce2-8e5c5fe409db\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:31 GMT + - Fri, 21 Jan 2022 20:30:35 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:32 GMT + - Fri, 21 Jan 2022 20:30:35 GMT expires: - '-1' pragma: @@ -245,12 +245,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -264,12 +264,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-15-cc798\"\r\n}" + \"2022-01-21-20-30-18-fb0b5\"\r\n}" headers: cache-control: - no-cache @@ -278,7 +278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:32 GMT + - Fri, 21 Jan 2022 20:30:36 GMT expires: - '-1' pragma: @@ -312,12 +312,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -331,12 +331,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-15-cc798\"\r\n}" + \"2022-01-21-20-30-18-fb0b5\"\r\n}" headers: cache-control: - no-cache @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:33 GMT + - Fri, 21 Jan 2022 20:30:36 GMT expires: - '-1' pragma: @@ -382,8 +382,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-17-54-15-cc798\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-17-54-15-cc798\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -397,9 +397,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:15.2266778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:15.2266778Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: @@ -410,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:33 GMT + - Fri, 21 Jan 2022 20:30:38 GMT expires: - '-1' pragma: @@ -456,7 +456,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:33 GMT + - Fri, 21 Jan 2022 20:30:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml index 0d2c239eb47..81fb77678aa 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:31 GMT + - Fri, 21 Jan 2022 20:29:32 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/044a011b-4f69-4f4f-b4ce-eb99cbb4f039?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0181faec-856b-40f6-bc40-5810c941711e?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:32 GMT + - Fri, 21 Jan 2022 20:29:33 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/044a011b-4f69-4f4f-b4ce-eb99cbb4f039?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0181faec-856b-40f6-bc40-5810c941711e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/044a011b-4f69-4f4f-b4ce-eb99cbb4f039\",\r\n - \ \"name\": \"044a011b-4f69-4f4f-b4ce-eb99cbb4f039\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0181faec-856b-40f6-bc40-5810c941711e\",\r\n + \ \"name\": \"0181faec-856b-40f6-bc40-5810c941711e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:49 GMT + - Fri, 21 Jan 2022 20:29:50 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:49 GMT + - Fri, 21 Jan 2022 20:29:50 GMT expires: - '-1' pragma: @@ -247,12 +247,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,12 +267,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-32-0221e\"\r\n}" + \"2022-01-21-20-29-33-daedb\"\r\n}" headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:50 GMT + - Fri, 21 Jan 2022 20:29:51 GMT expires: - '-1' pragma: @@ -315,12 +315,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -335,12 +335,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-17-54-32-0221e\"\r\n}" + \"2022-01-21-20-29-33-daedb\"\r\n}" headers: cache-control: - no-cache @@ -349,7 +349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:52 GMT + - Fri, 21 Jan 2022 20:29:53 GMT expires: - '-1' pragma: @@ -387,8 +387,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-32-0221e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-32-0221e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -403,9 +403,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:32.0693662Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:32.0693662Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -416,7 +416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:52 GMT + - Fri, 21 Jan 2022 20:29:53 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:52 GMT + - Fri, 21 Jan 2022 20:29:54 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index 9067e6f3af3..2571f0dee12 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:36 GMT + - Fri, 21 Jan 2022 20:29:35 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/21fc0c75-4877-41d7-96df-e90743b123c9?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b6339fe7-c757-4540-be21-4fb75d936a86?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:37 GMT + - Fri, 21 Jan 2022 20:29:36 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/21fc0c75-4877-41d7-96df-e90743b123c9?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b6339fe7-c757-4540-be21-4fb75d936a86?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/21fc0c75-4877-41d7-96df-e90743b123c9\",\r\n - \ \"name\": \"21fc0c75-4877-41d7-96df-e90743b123c9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b6339fe7-c757-4540-be21-4fb75d936a86\",\r\n + \ \"name\": \"b6339fe7-c757-4540-be21-4fb75d936a86\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:54 GMT + - Fri, 21 Jan 2022 20:29:53 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:54 GMT + - Fri, 21 Jan 2022 20:29:53 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:55 GMT + - Fri, 21 Jan 2022 20:29:55 GMT expires: - '-1' pragma: @@ -318,8 +318,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -334,9 +334,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:56 GMT + - Fri, 21 Jan 2022 20:29:56 GMT expires: - '-1' pragma: @@ -385,8 +385,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-17-54-37-b3375\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-17-54-37-b3375\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -401,9 +401,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T17:54:37.0642805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T17:54:37.0642805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 17:54:57 GMT + - Fri, 21 Jan 2022 20:29:56 GMT expires: - '-1' pragma: @@ -460,7 +460,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 17:54:58 GMT + - Fri, 21 Jan 2022 20:29:57 GMT expires: - '-1' pragma: From 1ab238c81cd83ee5aa2bdc771e232e5dd37a6810 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 21 Jan 2022 15:34:00 -0500 Subject: [PATCH 053/139] Version update [tested] --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 678f2feeb33..e37e44f148a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2594,7 +2594,7 @@ helps['stack sub list'] = """ type: command -short-summary: V5 List all deployment stacks in subscription +short-summary: V6 List all deployment stacks in subscription examples: - name: List all stacks text: az stack sub list From d1dfe16895ae5bb43969877bf24500ab949cc3c2 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 28 Jan 2022 11:32:53 -0500 Subject: [PATCH 054/139] Version 1.0.0 for private preview, added 1.0.0 tag [tested] --- .../cli/command_modules/resource/_help.py | 4 +- ...reate_deployment_stack_resource_group.yaml | 160 ++++--- ..._create_deployment_stack_subscription.yaml | 184 ++++---- ...elete_deployment_stack_resource_group.yaml | 104 ++--- ...loyment_stack_snapshot_resource_group.yaml | 206 ++++----- ...eployment_stack_snapshot_subscription.yaml | 236 +++++------ ..._delete_deployment_stack_subscription.yaml | 394 +++++++++--------- ..._list_deployment_stack_resource_group.yaml | 50 +-- ...loyment_stack_snapshot_resource_group.yaml | 64 +-- ...eployment_stack_snapshot_subscription.yaml | 64 +-- ...st_list_deployment_stack_subscription.yaml | 191 +++++---- ..._show_deployment_stack_resource_group.yaml | 60 +-- ...loyment_stack_snapshot_resource_group.yaml | 70 ++-- ...eployment_stack_snapshot_subscription.yaml | 68 +-- ...st_show_deployment_stack_subscription.yaml | 60 +-- 15 files changed, 967 insertions(+), 948 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index e37e44f148a..534e272b229 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2571,7 +2571,7 @@ helps['stack'] = """ type: group -short-summary: Manage deployment stacks at subscription or resource group scope. +short-summary: (Version 1.0.0) Manage deployment stacks at subscription or resource group scope """ helps['stack sub create'] = """ @@ -2594,7 +2594,7 @@ helps['stack sub list'] = """ type: command -short-summary: V6 List all deployment stacks in subscription +short-summary: List all deployment stacks in subscription examples: - name: List all stacks text: az stack sub list diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index c19d99202a5..812c41356e9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:45 GMT + - Fri, 28 Jan 2022 16:23:31 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:45 GMT + - Fri, 28 Jan 2022 16:23:31 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:47.5589061Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:34.3150262Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:47.5589061Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:34.3150262Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:47 GMT + - Fri, 28 Jan 2022 16:23:34 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:49.4439286Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:35.8101176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:49.4439286Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:35.8101176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:49 GMT + - Fri, 28 Jan 2022 16:23:35 GMT expires: - '-1' pragma: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:49 GMT + - Fri, 28 Jan 2022 16:23:36 GMT expires: - '-1' pragma: @@ -300,14 +300,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.8681938Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:37.0720498Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.8681938Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:37.0720498Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bd8faf48-063e-40fb-958c-b2a753fb39ad?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fafba9c8-07ca-4665-9017-249e5d91106e?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -315,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:50 GMT + - Fri, 28 Jan 2022 16:23:36 GMT expires: - '-1' pragma: @@ -347,11 +347,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bd8faf48-063e-40fb-958c-b2a753fb39ad?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fafba9c8-07ca-4665-9017-249e5d91106e?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bd8faf48-063e-40fb-958c-b2a753fb39ad\",\r\n - \ \"name\": \"bd8faf48-063e-40fb-958c-b2a753fb39ad\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fafba9c8-07ca-4665-9017-249e5d91106e\",\r\n + \ \"name\": \"fafba9c8-07ca-4665-9017-249e5d91106e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:07 GMT + - Fri, 28 Jan 2022 16:23:53 GMT expires: - '-1' pragma: @@ -397,8 +397,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-50-aae2f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-27-50-aae2f\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-37-fe5eb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-37-fe5eb\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -412,9 +412,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.8681938Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:37.0720498Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.8681938Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:37.0720498Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -425,7 +425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:07 GMT + - Fri, 28 Jan 2022 16:23:53 GMT expires: - '-1' pragma: @@ -462,8 +462,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-50-aae2f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-27-50-aae2f\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-37-fe5eb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-37-fe5eb\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -477,9 +477,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.8681938Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:37.0720498Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.8681938Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:37.0720498Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -490,7 +490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:09 GMT + - Fri, 28 Jan 2022 16:23:55 GMT expires: - '-1' pragma: @@ -536,7 +536,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:09 GMT + - Fri, 28 Jan 2022 16:23:55 GMT expires: - '-1' pragma: @@ -582,7 +582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:09 GMT + - Fri, 28 Jan 2022 16:23:56 GMT expires: - '-1' pragma: @@ -624,14 +624,14 @@ interactions: \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7242944Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:56.2666234Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7242944Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:56.2666234Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86e841e0-6bcc-43f1-9118-12b46ba16b97?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/909b7eed-8ce3-4550-a19d-3b80509aa0f9?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -639,7 +639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:10 GMT + - Fri, 28 Jan 2022 16:23:56 GMT expires: - '-1' pragma: @@ -671,11 +671,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86e841e0-6bcc-43f1-9118-12b46ba16b97?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/909b7eed-8ce3-4550-a19d-3b80509aa0f9?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/86e841e0-6bcc-43f1-9118-12b46ba16b97\",\r\n - \ \"name\": \"86e841e0-6bcc-43f1-9118-12b46ba16b97\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/909b7eed-8ce3-4550-a19d-3b80509aa0f9\",\r\n + \ \"name\": \"909b7eed-8ce3-4550-a19d-3b80509aa0f9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -684,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:27 GMT + - Fri, 28 Jan 2022 16:24:13 GMT expires: - '-1' pragma: @@ -721,14 +721,14 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-10-28a4d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-10-28a4d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-56-a8900\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-56-a8900\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7242944Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:56.2666234Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7242944Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:56.2666234Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -739,7 +739,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:27 GMT + - Fri, 28 Jan 2022 16:24:13 GMT expires: - '-1' pragma: @@ -776,14 +776,14 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-10-28a4d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-10-28a4d\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-56-a8900\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-56-a8900\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7242944Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:56.2666234Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7242944Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:56.2666234Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -794,7 +794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:29 GMT + - Fri, 28 Jan 2022 16:24:13 GMT expires: - '-1' pragma: @@ -840,7 +840,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:29 GMT + - Fri, 28 Jan 2022 16:24:13 GMT expires: - '-1' pragma: @@ -886,7 +886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:29 GMT + - Fri, 28 Jan 2022 16:24:14 GMT expires: - '-1' pragma: @@ -924,9 +924,9 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:30 GMT + - Fri, 28 Jan 2022 16:24:16 GMT expires: - - Fri, 21 Jan 2022 20:28:30 GMT + - Fri, 28 Jan 2022 16:24:16 GMT location: - https://api.github.com/repos/Azure/bicep/releases/latest pragma: @@ -957,7 +957,7 @@ interactions: uri: https://api.github.com/repos/Azure/bicep/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861","assets_url":"https://api.github.com/repos/Azure/bicep/releases/55233861/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/55233861/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1124","id":55233861,"author":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DSs1F","tag_name":"v0.4.1124","target_commitish":"main","name":"v0.4.1124","draft":false,"prerelease":false,"created_at":"2021-12-13T19:47:29Z","published_at":"2021-12-15T20:05:49Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707348","id":51707348,"node_id":"RA_kwDOD7S9ks4DFP3U","name":"Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16725301,"download_count":4,"created_at":"2021-12-14T02:17:48Z","updated_at":"2021-12-14T02:17:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707343","id":51707343,"node_id":"RA_kwDOD7S9ks4DFP3P","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17200818,"download_count":3,"created_at":"2021-12-14T02:17:35Z","updated_at":"2021-12-14T02:17:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707361","id":51707361,"node_id":"RA_kwDOD7S9ks4DFP3h","name":"Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16614333,"download_count":4,"created_at":"2021-12-14T02:18:13Z","updated_at":"2021-12-14T02:18:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707354","id":51707354,"node_id":"RA_kwDOD7S9ks4DFP3a","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17110967,"download_count":5,"created_at":"2021-12-14T02:18:00Z","updated_at":"2021-12-14T02:18:01Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707337","id":51707337,"node_id":"RA_kwDOD7S9ks4DFP3J","name":"Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16866771,"download_count":4,"created_at":"2021-12-14T02:17:24Z","updated_at":"2021-12-14T02:17:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707332","id":51707332,"node_id":"RA_kwDOD7S9ks4DFP3E","name":"Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17147957,"download_count":7,"created_at":"2021-12-14T02:17:13Z","updated_at":"2021-12-14T02:17:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707286","id":51707286,"node_id":"RA_kwDOD7S9ks4DFP2W","name":"Azure.Bicep.MSBuild.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":39343,"download_count":6,"created_at":"2021-12-14T02:16:24Z","updated_at":"2021-12-14T02:16:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707287","id":51707287,"node_id":"RA_kwDOD7S9ks4DFP2X","name":"Azure.Bicep.MSBuild.0.4.1124.snupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6735,"download_count":5,"created_at":"2021-12-14T02:16:26Z","updated_at":"2021-12-14T02:16:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707288","id":51707288,"node_id":"RA_kwDOD7S9ks4DFP2Y","name":"bicep-langserver.zip","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":11060401,"download_count":10,"created_at":"2021-12-14T02:16:29Z","updated_at":"2021-12-14T02:16:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707229","id":51707229,"node_id":"RA_kwDOD7S9ks4DFP1d","name":"bicep-linux-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37102900,"download_count":19,"created_at":"2021-12-14T02:14:51Z","updated_at":"2021-12-14T02:14:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707235","id":51707235,"node_id":"RA_kwDOD7S9ks4DFP1j","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37701518,"download_count":4567,"created_at":"2021-12-14T02:15:05Z","updated_at":"2021-12-14T02:15:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707224","id":51707224,"node_id":"RA_kwDOD7S9ks4DFP1Y","name":"bicep-linux-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37806767,"download_count":61214,"created_at":"2021-12-14T02:14:34Z","updated_at":"2021-12-14T02:14:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707263","id":51707263,"node_id":"RA_kwDOD7S9ks4DFP1_","name":"bicep-osx-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":36940300,"download_count":5,"created_at":"2021-12-14T02:15:47Z","updated_at":"2021-12-14T02:15:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707257","id":51707257,"node_id":"RA_kwDOD7S9ks4DFP15","name":"bicep-osx-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37857926,"download_count":2360,"created_at":"2021-12-14T02:15:31Z","updated_at":"2021-12-14T02:15:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707280","id":51707280,"node_id":"RA_kwDOD7S9ks4DFP2Q","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":15038120,"download_count":1557,"created_at":"2021-12-14T02:16:13Z","updated_at":"2021-12-14T02:16:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707302","id":51707302,"node_id":"RA_kwDOD7S9ks4DFP2m","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":37100456,"download_count":11,"created_at":"2021-12-14T02:16:42Z","updated_at":"2021-12-14T02:16:50Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707284","id":51707284,"node_id":"RA_kwDOD7S9ks4DFP2U","name":"bicep-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":36662032,"download_count":38508,"created_at":"2021-12-14T02:16:21Z","updated_at":"2021-12-14T02:16:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707321","id":51707321,"node_id":"RA_kwDOD7S9ks4DFP25","name":"vscode-bicep.vsix","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":40760109,"download_count":170,"created_at":"2021-12-14T02:17:03Z","updated_at":"2021-12-14T02:17:05Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1124","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1124","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861","assets_url":"https://api.github.com/repos/Azure/bicep/releases/55233861/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/55233861/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1124","id":55233861,"author":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DSs1F","tag_name":"v0.4.1124","target_commitish":"main","name":"v0.4.1124","draft":false,"prerelease":false,"created_at":"2021-12-13T19:47:29Z","published_at":"2021-12-15T20:05:49Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707348","id":51707348,"node_id":"RA_kwDOD7S9ks4DFP3U","name":"Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16725301,"download_count":5,"created_at":"2021-12-14T02:17:48Z","updated_at":"2021-12-14T02:17:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707343","id":51707343,"node_id":"RA_kwDOD7S9ks4DFP3P","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17200818,"download_count":4,"created_at":"2021-12-14T02:17:35Z","updated_at":"2021-12-14T02:17:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707361","id":51707361,"node_id":"RA_kwDOD7S9ks4DFP3h","name":"Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16614333,"download_count":5,"created_at":"2021-12-14T02:18:13Z","updated_at":"2021-12-14T02:18:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707354","id":51707354,"node_id":"RA_kwDOD7S9ks4DFP3a","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17110967,"download_count":6,"created_at":"2021-12-14T02:18:00Z","updated_at":"2021-12-14T02:18:01Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707337","id":51707337,"node_id":"RA_kwDOD7S9ks4DFP3J","name":"Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16866771,"download_count":5,"created_at":"2021-12-14T02:17:24Z","updated_at":"2021-12-14T02:17:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707332","id":51707332,"node_id":"RA_kwDOD7S9ks4DFP3E","name":"Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17147957,"download_count":8,"created_at":"2021-12-14T02:17:13Z","updated_at":"2021-12-14T02:17:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707286","id":51707286,"node_id":"RA_kwDOD7S9ks4DFP2W","name":"Azure.Bicep.MSBuild.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":39343,"download_count":6,"created_at":"2021-12-14T02:16:24Z","updated_at":"2021-12-14T02:16:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707287","id":51707287,"node_id":"RA_kwDOD7S9ks4DFP2X","name":"Azure.Bicep.MSBuild.0.4.1124.snupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6735,"download_count":6,"created_at":"2021-12-14T02:16:26Z","updated_at":"2021-12-14T02:16:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707288","id":51707288,"node_id":"RA_kwDOD7S9ks4DFP2Y","name":"bicep-langserver.zip","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":11060401,"download_count":12,"created_at":"2021-12-14T02:16:29Z","updated_at":"2021-12-14T02:16:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707229","id":51707229,"node_id":"RA_kwDOD7S9ks4DFP1d","name":"bicep-linux-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37102900,"download_count":20,"created_at":"2021-12-14T02:14:51Z","updated_at":"2021-12-14T02:14:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707235","id":51707235,"node_id":"RA_kwDOD7S9ks4DFP1j","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37701518,"download_count":5910,"created_at":"2021-12-14T02:15:05Z","updated_at":"2021-12-14T02:15:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707224","id":51707224,"node_id":"RA_kwDOD7S9ks4DFP1Y","name":"bicep-linux-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37806767,"download_count":74531,"created_at":"2021-12-14T02:14:34Z","updated_at":"2021-12-14T02:14:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707263","id":51707263,"node_id":"RA_kwDOD7S9ks4DFP1_","name":"bicep-osx-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":36940300,"download_count":6,"created_at":"2021-12-14T02:15:47Z","updated_at":"2021-12-14T02:15:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707257","id":51707257,"node_id":"RA_kwDOD7S9ks4DFP15","name":"bicep-osx-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37857926,"download_count":2628,"created_at":"2021-12-14T02:15:31Z","updated_at":"2021-12-14T02:15:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707280","id":51707280,"node_id":"RA_kwDOD7S9ks4DFP2Q","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":15038120,"download_count":1883,"created_at":"2021-12-14T02:16:13Z","updated_at":"2021-12-14T02:16:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707302","id":51707302,"node_id":"RA_kwDOD7S9ks4DFP2m","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":37100456,"download_count":12,"created_at":"2021-12-14T02:16:42Z","updated_at":"2021-12-14T02:16:50Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707284","id":51707284,"node_id":"RA_kwDOD7S9ks4DFP2U","name":"bicep-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":36662032,"download_count":47479,"created_at":"2021-12-14T02:16:21Z","updated_at":"2021-12-14T02:16:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707321","id":51707321,"node_id":"RA_kwDOD7S9ks4DFP25","name":"vscode-bicep.vsix","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":40760109,"download_count":182,"created_at":"2021-12-14T02:17:03Z","updated_at":"2021-12-14T02:17:05Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1124","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1124","body":"## Highlights\r\n\r\nBicep team:\r\n\r\n* \"Insert Resource\" command implementation (#4945)\r\n* Implement type completions & validation for resource `list*()` functions (#5145). You will now get completions for cases like:\r\n \r\n ```bicep\r\n resource @@ -1023,9 +1023,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:31 GMT + - Fri, 28 Jan 2022 16:24:14 GMT etag: - - W/"45a3da7188ea6586cc31bbbb7d0a0598a287b445361ca5cd85b86b49f2d127a1" + - W/"9bdb193d7ccb618fee25d999d8d9c47a195da05ad6a50195434cb9c0a2b7c837" last-modified: - Wed, 15 Dec 2021 20:05:49 GMT referrer-policy: @@ -1034,8 +1034,6 @@ interactions: - GitHub.com strict-transport-security: - max-age=31536000; includeSubdomains; preload - transfer-encoding: - - chunked vary: - Accept, Accept-Encoding, Accept, X-Requested-With x-content-type-options: @@ -1045,13 +1043,13 @@ interactions: x-github-media-type: - github.v3; format=json x-github-request-id: - - C5FF:1CC7:3EB7A3:816CB8:61EB176E + - E312:0C60:C0EDAD:1794C89:61F418B0 x-ratelimit-limit: - '60' x-ratelimit-remaining: - '59' x-ratelimit-reset: - - '1642800510' + - '1643390656' x-ratelimit-resource: - core x-ratelimit-used: @@ -1110,14 +1108,14 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:32.5549125Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:18.4930239Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:32.5549125Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:18.4930239Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1eda9c3-cc56-4eea-9fbe-3c894dfec057?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1125,7 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:31 GMT + - Fri, 28 Jan 2022 16:24:17 GMT expires: - '-1' pragma: @@ -1157,11 +1155,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1eda9c3-cc56-4eea-9fbe-3c894dfec057?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee\",\r\n - \ \"name\": \"2e53842b-9a9c-44ce-b3b5-ecf70e49e3ee\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1eda9c3-cc56-4eea-9fbe-3c894dfec057\",\r\n + \ \"name\": \"b1eda9c3-cc56-4eea-9fbe-3c894dfec057\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1170,7 +1168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:48 GMT + - Fri, 28 Jan 2022 16:24:34 GMT expires: - '-1' pragma: @@ -1207,8 +1205,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-32-dca1c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-32-dca1c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-18-0cb52\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-24-18-0cb52\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n @@ -1224,23 +1222,23 @@ interactions: \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:32.5549125Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:18.4930239Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:32.5549125Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:18.4930239Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2587' + - '2616' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:49 GMT + - Fri, 28 Jan 2022 16:24:35 GMT expires: - '-1' pragma: @@ -1277,8 +1275,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-32-dca1c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-21-20-28-32-dca1c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-18-0cb52\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-24-18-0cb52\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n @@ -1294,23 +1292,23 @@ interactions: \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:32.5549125Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:18.4930239Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:32.5549125Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:18.4930239Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2587' + - '2616' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:50 GMT + - Fri, 28 Jan 2022 16:24:36 GMT expires: - '-1' pragma: @@ -1356,7 +1354,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:50 GMT + - Fri, 28 Jan 2022 16:24:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 92953f0d58c..0cca00be473 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:45 GMT + - Fri, 28 Jan 2022 16:23:27 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:45 GMT + - Fri, 28 Jan 2022 16:23:27 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:47.1896367Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:29.3810721Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:47.1896367Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:29.3810721Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:47 GMT + - Fri, 28 Jan 2022 16:23:29 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:48.6896415Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:31.6761119Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:48.6896415Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:31.6761119Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:48 GMT + - Fri, 28 Jan 2022 16:23:31 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:49 GMT + - Fri, 28 Jan 2022 16:23:31 GMT expires: - '-1' pragma: @@ -300,14 +300,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.0358273Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:32.8544679Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.0358273Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:32.8544679Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e55183d-8100-4591-91b1-0158348c386e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ab1f18e-4298-44e8-b9dd-d55be71b00de?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -315,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:50 GMT + - Fri, 28 Jan 2022 16:23:32 GMT expires: - '-1' pragma: @@ -347,11 +347,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e55183d-8100-4591-91b1-0158348c386e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ab1f18e-4298-44e8-b9dd-d55be71b00de?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e55183d-8100-4591-91b1-0158348c386e\",\r\n - \ \"name\": \"7e55183d-8100-4591-91b1-0158348c386e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ab1f18e-4298-44e8-b9dd-d55be71b00de\",\r\n + \ \"name\": \"5ab1f18e-4298-44e8-b9dd-d55be71b00de\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:07 GMT + - Fri, 28 Jan 2022 16:23:50 GMT expires: - '-1' pragma: @@ -398,8 +398,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-27-50-b9314\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-27-50-b9314\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-33-b0476\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-33-b0476\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -414,9 +414,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.0358273Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:32.8544679Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.0358273Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:32.8544679Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -427,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:08 GMT + - Fri, 28 Jan 2022 16:23:50 GMT expires: - '-1' pragma: @@ -465,8 +465,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-27-50-b9314\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-27-50-b9314\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-33-b0476\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-33-b0476\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -481,9 +481,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:50.0358273Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:32.8544679Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:50.0358273Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:32.8544679Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:08 GMT + - Fri, 28 Jan 2022 16:23:51 GMT expires: - '-1' pragma: @@ -540,7 +540,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:09 GMT + - Fri, 28 Jan 2022 16:23:51 GMT expires: - '-1' pragma: @@ -585,7 +585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:09 GMT + - Fri, 28 Jan 2022 16:23:52 GMT expires: - '-1' pragma: @@ -628,14 +628,14 @@ interactions: \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7674321Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:53.6749156Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7674321Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:53.6749156Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3b5c91a-1ac0-49b8-a464-3a4b44a703c5?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d86fc3f8-2288-4c8e-823c-08a393a9a8e8?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -643,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:10 GMT + - Fri, 28 Jan 2022 16:23:53 GMT expires: - '-1' pragma: @@ -675,11 +675,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3b5c91a-1ac0-49b8-a464-3a4b44a703c5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d86fc3f8-2288-4c8e-823c-08a393a9a8e8?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f3b5c91a-1ac0-49b8-a464-3a4b44a703c5\",\r\n - \ \"name\": \"f3b5c91a-1ac0-49b8-a464-3a4b44a703c5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d86fc3f8-2288-4c8e-823c-08a393a9a8e8\",\r\n + \ \"name\": \"d86fc3f8-2288-4c8e-823c-08a393a9a8e8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -688,7 +688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:27 GMT + - Fri, 28 Jan 2022 16:24:11 GMT expires: - '-1' pragma: @@ -726,15 +726,15 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-11-eee69\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-11-eee69\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-54-986fb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-54-986fb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7674321Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:53.6749156Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7674321Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:53.6749156Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -745,7 +745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:28 GMT + - Fri, 28 Jan 2022 16:24:11 GMT expires: - '-1' pragma: @@ -783,15 +783,15 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-11-eee69\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-11-eee69\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-54-986fb\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-54-986fb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:10.7674321Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:53.6749156Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:10.7674321Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:53.6749156Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -802,7 +802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:29 GMT + - Fri, 28 Jan 2022 16:24:12 GMT expires: - '-1' pragma: @@ -848,7 +848,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:30 GMT + - Fri, 28 Jan 2022 16:24:12 GMT expires: - '-1' pragma: @@ -893,7 +893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:31 GMT + - Fri, 28 Jan 2022 16:24:13 GMT expires: - '-1' pragma: @@ -951,14 +951,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:31.3620228Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:14.4546207Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:31.3620228Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:14.4546207Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70b12885-2231-4622-8844-d386718af08b?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd006257-0438-4a3b-b6fd-58b8b57d8081?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -966,7 +966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:31 GMT + - Fri, 28 Jan 2022 16:24:14 GMT expires: - '-1' pragma: @@ -998,11 +998,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70b12885-2231-4622-8844-d386718af08b?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd006257-0438-4a3b-b6fd-58b8b57d8081?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70b12885-2231-4622-8844-d386718af08b\",\r\n - \ \"name\": \"70b12885-2231-4622-8844-d386718af08b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd006257-0438-4a3b-b6fd-58b8b57d8081\",\r\n + \ \"name\": \"dd006257-0438-4a3b-b6fd-58b8b57d8081\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1011,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:48 GMT + - Fri, 28 Jan 2022 16:24:32 GMT expires: - '-1' pragma: @@ -1049,8 +1049,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-32-65408\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-32-65408\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-15-0d222\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-15-0d222\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1065,9 +1065,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:31.3620228Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:14.4546207Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:31.3620228Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:14.4546207Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1078,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:49 GMT + - Fri, 28 Jan 2022 16:24:32 GMT expires: - '-1' pragma: @@ -1116,8 +1116,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-32-65408\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-32-65408\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-15-0d222\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-15-0d222\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1132,9 +1132,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:31.3620228Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:14.4546207Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:31.3620228Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:14.4546207Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1145,7 +1145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:50 GMT + - Fri, 28 Jan 2022 16:24:33 GMT expires: - '-1' pragma: @@ -1191,7 +1191,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:50 GMT + - Fri, 28 Jan 2022 16:24:34 GMT expires: - '-1' pragma: @@ -1236,7 +1236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:51 GMT + - Fri, 28 Jan 2022 16:24:34 GMT expires: - '-1' pragma: @@ -1300,14 +1300,14 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:54.1839098Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:37.7651958Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:54.1839098Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:37.7651958Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b38899f-6510-4d52-90bb-0d5fab63ba22?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b64d815-b19e-477f-824b-1d5cc9cf1088?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1315,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:54 GMT + - Fri, 28 Jan 2022 16:24:37 GMT expires: - '-1' pragma: @@ -1347,11 +1347,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b38899f-6510-4d52-90bb-0d5fab63ba22?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b64d815-b19e-477f-824b-1d5cc9cf1088?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b38899f-6510-4d52-90bb-0d5fab63ba22\",\r\n - \ \"name\": \"1b38899f-6510-4d52-90bb-0d5fab63ba22\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b64d815-b19e-477f-824b-1d5cc9cf1088\",\r\n + \ \"name\": \"2b64d815-b19e-477f-824b-1d5cc9cf1088\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1360,7 +1360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:11 GMT + - Fri, 28 Jan 2022 16:24:54 GMT expires: - '-1' pragma: @@ -1398,8 +1398,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-54-019b7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-54-019b7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-38-21ae3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-38-21ae3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": @@ -1416,23 +1416,23 @@ interactions: \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:54.1839098Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:37.7651958Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:54.1839098Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:37.7651958Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2638' + - '2667' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:11 GMT + - Fri, 28 Jan 2022 16:24:54 GMT expires: - '-1' pragma: @@ -1470,8 +1470,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-21-20-28-54-019b7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-21-20-28-54-019b7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-38-21ae3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-38-21ae3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": @@ -1488,23 +1488,23 @@ interactions: \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:54.1839098Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:37.7651958Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:54.1839098Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:37.7651958Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2638' + - '2667' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:13 GMT + - Fri, 28 Jan 2022 16:24:56 GMT expires: - '-1' pragma: @@ -1550,7 +1550,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:13 GMT + - Fri, 28 Jan 2022 16:24:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index f2fc4caf235..68d0e1ef3ea 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:45 GMT + - Fri, 28 Jan 2022 16:23:27 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fab6a19a-5747-4091-9f54-1a2d0e851835?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3dcf1cf-32c9-43c3-aca9-365594821f1c?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:45 GMT + - Fri, 28 Jan 2022 16:23:27 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fab6a19a-5747-4091-9f54-1a2d0e851835?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3dcf1cf-32c9-43c3-aca9-365594821f1c?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fab6a19a-5747-4091-9f54-1a2d0e851835\",\r\n - \ \"name\": \"fab6a19a-5747-4091-9f54-1a2d0e851835\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3dcf1cf-32c9-43c3-aca9-365594821f1c\",\r\n + \ \"name\": \"e3dcf1cf-32c9-43c3-aca9-365594821f1c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:02 GMT + - Fri, 28 Jan 2022 16:23:44 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-45-8bb79\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-27-45-8bb79\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-27-cfa15\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-27-cfa15\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:02 GMT + - Fri, 28 Jan 2022 16:23:44 GMT expires: - '-1' pragma: @@ -248,8 +248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-45-8bb79\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-27-45-8bb79\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-27-cfa15\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-27-cfa15\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,9 +263,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -276,7 +276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:03 GMT + - Fri, 28 Jan 2022 16:23:44 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-27-45-8bb79\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-27-45-8bb79\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-27-cfa15\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-27-cfa15\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -328,9 +328,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.3326928Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.3326928Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:04 GMT + - Fri, 28 Jan 2022 16:23:45 GMT expires: - '-1' pragma: @@ -387,7 +387,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:04 GMT + - Fri, 28 Jan 2022 16:23:45 GMT expires: - '-1' pragma: @@ -431,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:05 GMT + - Fri, 28 Jan 2022 16:23:46 GMT expires: - '-1' pragma: @@ -479,7 +479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:05 GMT + - Fri, 28 Jan 2022 16:23:47 GMT expires: - '-1' pragma: @@ -536,14 +536,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6470ad25-6b53-45b8-8210-49591b9ee86e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f422dd57-78f3-4f21-b8be-06b06c746010?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -551,7 +551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:06 GMT + - Fri, 28 Jan 2022 16:23:47 GMT expires: - '-1' pragma: @@ -583,11 +583,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6470ad25-6b53-45b8-8210-49591b9ee86e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f422dd57-78f3-4f21-b8be-06b06c746010?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6470ad25-6b53-45b8-8210-49591b9ee86e\",\r\n - \ \"name\": \"6470ad25-6b53-45b8-8210-49591b9ee86e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f422dd57-78f3-4f21-b8be-06b06c746010\",\r\n + \ \"name\": \"f422dd57-78f3-4f21-b8be-06b06c746010\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -596,7 +596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:23 GMT + - Fri, 28 Jan 2022 16:24:04 GMT expires: - '-1' pragma: @@ -633,8 +633,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-06-c7dde\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-28-06-c7dde\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-47-4dc1d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-47-4dc1d\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -648,9 +648,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -661,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:23 GMT + - Fri, 28 Jan 2022 16:24:04 GMT expires: - '-1' pragma: @@ -698,8 +698,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-06-c7dde\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-28-06-c7dde\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-47-4dc1d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-47-4dc1d\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -713,9 +713,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -726,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:24 GMT + - Fri, 28 Jan 2022 16:24:05 GMT expires: - '-1' pragma: @@ -763,8 +763,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-06-c7dde\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-21-20-28-06-c7dde\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-47-4dc1d\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-47-4dc1d\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -778,9 +778,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:06.1859992Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:06.1859992Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -791,7 +791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:25 GMT + - Fri, 28 Jan 2022 16:24:06 GMT expires: - '-1' pragma: @@ -837,7 +837,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:25 GMT + - Fri, 28 Jan 2022 16:24:06 GMT expires: - '-1' pragma: @@ -881,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:25 GMT + - Fri, 28 Jan 2022 16:24:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml index f6e4185aeb3..81682bcd2c0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:44 GMT + - Fri, 28 Jan 2022 16:23:27 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab19503a-6176-4fe0-8177-242a9d814784?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:27:44 GMT + - Fri, 28 Jan 2022 16:23:27 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab19503a-6176-4fe0-8177-242a9d814784?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab19503a-6176-4fe0-8177-242a9d814784\",\r\n - \ \"name\": \"ab19503a-6176-4fe0-8177-242a9d814784\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5\",\r\n + \ \"name\": \"4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:01 GMT + - Fri, 28 Jan 2022 16:23:44 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:01 GMT + - Fri, 28 Jan 2022 16:23:44 GMT expires: - '-1' pragma: @@ -248,8 +248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,9 +263,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -276,7 +276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:03 GMT + - Fri, 28 Jan 2022 16:23:45 GMT expires: - '-1' pragma: @@ -337,22 +337,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a468e120-5f23-4a02-9b29-fc9660207c8e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a9784202-6fb2-49d8-99db-84298f6865ab?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1624' + - '1625' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:03 GMT + - Fri, 28 Jan 2022 16:23:45 GMT expires: - '-1' pragma: @@ -388,11 +388,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a468e120-5f23-4a02-9b29-fc9660207c8e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a9784202-6fb2-49d8-99db-84298f6865ab?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a468e120-5f23-4a02-9b29-fc9660207c8e\",\r\n - \ \"name\": \"a468e120-5f23-4a02-9b29-fc9660207c8e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a9784202-6fb2-49d8-99db-84298f6865ab\",\r\n + \ \"name\": \"a9784202-6fb2-49d8-99db-84298f6865ab\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:20 GMT + - Fri, 28 Jan 2022 16:24:02 GMT expires: - '-1' pragma: @@ -438,8 +438,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -453,20 +453,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2120' + - '2121' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:20 GMT + - Fri, 28 Jan 2022 16:24:02 GMT expires: - '-1' pragma: @@ -500,12 +500,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -519,12 +519,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-27-45-10030\"\r\n}" + \"2022-01-28-16-23-27-6496c\"\r\n}" headers: cache-control: - no-cache @@ -533,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:20 GMT + - Fri, 28 Jan 2022 16:24:03 GMT expires: - '-1' pragma: @@ -567,12 +567,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-27-45-10030\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -586,12 +586,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:27:45.0177528Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-27-45-10030\"\r\n}" + \"2022-01-28-16-23-27-6496c\"\r\n}" headers: cache-control: - no-cache @@ -600,7 +600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:21 GMT + - Fri, 28 Jan 2022 16:24:03 GMT expires: - '-1' pragma: @@ -636,7 +636,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-27-45-10030?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c?api-version=2021-05-01-preview response: body: string: '' @@ -646,7 +646,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:21 GMT + - Fri, 28 Jan 2022 16:24:04 GMT expires: - '-1' pragma: @@ -684,7 +684,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -700,21 +700,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:03.596776Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:23:45.8572378Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-03-3d20b\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-23-45-84f06\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2192' + - '2194' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:22 GMT + - Fri, 28 Jan 2022 16:24:04 GMT expires: - '-1' pragma: @@ -751,8 +751,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -766,20 +766,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2120' + - '2121' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:23 GMT + - Fri, 28 Jan 2022 16:24:05 GMT expires: - '-1' pragma: @@ -840,14 +840,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:23.8278122Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:06.0349581Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a854a861-05d1-43f7-9c8c-8375a36d1df2?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b78c1313-46f2-4252-bc59-f885bc2b11ec?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -855,7 +855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:23 GMT + - Fri, 28 Jan 2022 16:24:05 GMT expires: - '-1' pragma: @@ -891,11 +891,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a854a861-05d1-43f7-9c8c-8375a36d1df2?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b78c1313-46f2-4252-bc59-f885bc2b11ec?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a854a861-05d1-43f7-9c8c-8375a36d1df2\",\r\n - \ \"name\": \"a854a861-05d1-43f7-9c8c-8375a36d1df2\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b78c1313-46f2-4252-bc59-f885bc2b11ec\",\r\n + \ \"name\": \"b78c1313-46f2-4252-bc59-f885bc2b11ec\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:40 GMT + - Fri, 28 Jan 2022 16:24:22 GMT expires: - '-1' pragma: @@ -941,8 +941,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-23-ad8c8\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-23-ad8c8\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-06-5557f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-06-5557f\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -956,9 +956,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:27:45.0177528Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:23.8278122Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:06.0349581Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -969,7 +969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:40 GMT + - Fri, 28 Jan 2022 16:24:22 GMT expires: - '-1' pragma: @@ -1003,12 +1003,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -1022,21 +1022,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:03.596776Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:45.8572378Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-03-3d20b\"\r\n}" + \"2022-01-28-16-23-45-84f06\"\r\n}" headers: cache-control: - no-cache content-length: - - '1947' + - '1949' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:41 GMT + - Fri, 28 Jan 2022 16:24:23 GMT expires: - '-1' pragma: @@ -1070,12 +1070,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-03-3d20b\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -1089,21 +1089,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:03.596776Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:45.8572378Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:03.596776Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-03-3d20b\"\r\n}" + \"2022-01-28-16-23-45-84f06\"\r\n}" headers: cache-control: - no-cache content-length: - - '1947' + - '1949' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:42 GMT + - Fri, 28 Jan 2022 16:24:24 GMT expires: - '-1' pragma: @@ -1139,7 +1139,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-03-3d20b?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06?api-version=2021-05-01-preview response: body: string: '' @@ -1149,7 +1149,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:42 GMT + - Fri, 28 Jan 2022 16:24:24 GMT expires: - '-1' pragma: @@ -1187,7 +1187,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-23-ad8c8\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-06-5557f\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -1203,12 +1203,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:23.8278122Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:06.0349581Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:23.8278122Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-23-ad8c8\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:06.0349581Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-06-5557f\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-23-ad8c8\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-06-5557f\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -1217,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:42 GMT + - Fri, 28 Jan 2022 16:24:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml index a02d338a07d..2342cde114d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:53 GMT + - Fri, 28 Jan 2022 16:24:39 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4e0bc86b-8e00-4404-b61a-63227d92bd10?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f14d051d-341d-481a-858a-cf62df7f7fbe?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:54 GMT + - Fri, 28 Jan 2022 16:24:40 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4e0bc86b-8e00-4404-b61a-63227d92bd10?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f14d051d-341d-481a-858a-cf62df7f7fbe?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4e0bc86b-8e00-4404-b61a-63227d92bd10\",\r\n - \ \"name\": \"4e0bc86b-8e00-4404-b61a-63227d92bd10\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f14d051d-341d-481a-858a-cf62df7f7fbe\",\r\n + \ \"name\": \"f14d051d-341d-481a-858a-cf62df7f7fbe\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:11 GMT + - Fri, 28 Jan 2022 16:24:57 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:11 GMT + - Fri, 28 Jan 2022 16:24:57 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:12 GMT + - Fri, 28 Jan 2022 16:24:58 GMT expires: - '-1' pragma: @@ -342,14 +342,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f2c2ce33-65df-4db8-93d1-5cda505b7218?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c3774036-448a-4459-a360-8b17b8e21ccd?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:13 GMT + - Fri, 28 Jan 2022 16:24:59 GMT expires: - '-1' pragma: @@ -393,11 +393,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f2c2ce33-65df-4db8-93d1-5cda505b7218?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c3774036-448a-4459-a360-8b17b8e21ccd?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f2c2ce33-65df-4db8-93d1-5cda505b7218\",\r\n - \ \"name\": \"f2c2ce33-65df-4db8-93d1-5cda505b7218\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c3774036-448a-4459-a360-8b17b8e21ccd\",\r\n + \ \"name\": \"c3774036-448a-4459-a360-8b17b8e21ccd\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:30 GMT + - Fri, 28 Jan 2022 16:25:16 GMT expires: - '-1' pragma: @@ -444,8 +444,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -460,9 +460,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -473,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:30 GMT + - Fri, 28 Jan 2022 16:25:16 GMT expires: - '-1' pragma: @@ -507,12 +507,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -527,12 +527,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-54-cecf1\"\r\n}" + \"2022-01-28-16-24-40-16962\"\r\n}" headers: cache-control: - no-cache @@ -541,7 +541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:31 GMT + - Fri, 28 Jan 2022 16:25:17 GMT expires: - '-1' pragma: @@ -575,12 +575,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-28-54-cecf1\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -595,12 +595,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:53.5745706Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-54-cecf1\"\r\n}" + \"2022-01-28-16-24-40-16962\"\r\n}" headers: cache-control: - no-cache @@ -609,7 +609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:32 GMT + - Fri, 28 Jan 2022 16:25:18 GMT expires: - '-1' pragma: @@ -645,7 +645,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-54-cecf1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962?api-version=2021-05-01-preview response: body: string: '' @@ -655,7 +655,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:32 GMT + - Fri, 28 Jan 2022 16:25:18 GMT expires: - '-1' pragma: @@ -693,7 +693,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -710,12 +710,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:29:13.1408157Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:59.2013866Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-13-7017d\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-59-4ad4f\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -724,7 +724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:33 GMT + - Fri, 28 Jan 2022 16:25:19 GMT expires: - '-1' pragma: @@ -762,8 +762,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -778,9 +778,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -791,7 +791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:35 GMT + - Fri, 28 Jan 2022 16:25:20 GMT expires: - '-1' pragma: @@ -853,14 +853,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/df3532ec-1648-437e-a75b-0c28f10139ca?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0c6999d9-a3da-4d3f-8454-cf516d43cc96?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -868,7 +868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:35 GMT + - Fri, 28 Jan 2022 16:25:20 GMT expires: - '-1' pragma: @@ -904,11 +904,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/df3532ec-1648-437e-a75b-0c28f10139ca?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0c6999d9-a3da-4d3f-8454-cf516d43cc96?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/df3532ec-1648-437e-a75b-0c28f10139ca\",\r\n - \ \"name\": \"df3532ec-1648-437e-a75b-0c28f10139ca\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0c6999d9-a3da-4d3f-8454-cf516d43cc96\",\r\n + \ \"name\": \"0c6999d9-a3da-4d3f-8454-cf516d43cc96\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -917,7 +917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:52 GMT + - Fri, 28 Jan 2022 16:25:37 GMT expires: - '-1' pragma: @@ -955,8 +955,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -971,9 +971,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -984,7 +984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:52 GMT + - Fri, 28 Jan 2022 16:25:38 GMT expires: - '-1' pragma: @@ -1022,8 +1022,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1038,9 +1038,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:53 GMT + - Fri, 28 Jan 2022 16:25:39 GMT expires: - '-1' pragma: @@ -1113,14 +1113,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:54.3253438Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:40.5841768Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e22a11d4-b759-4fd5-8178-a06991ffc37e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1c3508ba-5efc-49ca-8826-a6e6b7425f0a?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1128,7 +1128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:54 GMT + - Fri, 28 Jan 2022 16:25:40 GMT expires: - '-1' pragma: @@ -1144,7 +1144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1164,11 +1164,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e22a11d4-b759-4fd5-8178-a06991ffc37e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1c3508ba-5efc-49ca-8826-a6e6b7425f0a?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e22a11d4-b759-4fd5-8178-a06991ffc37e\",\r\n - \ \"name\": \"e22a11d4-b759-4fd5-8178-a06991ffc37e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1c3508ba-5efc-49ca-8826-a6e6b7425f0a\",\r\n + \ \"name\": \"1c3508ba-5efc-49ca-8826-a6e6b7425f0a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1177,7 +1177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:11 GMT + - Fri, 28 Jan 2022 16:25:57 GMT expires: - '-1' pragma: @@ -1215,8 +1215,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-54-523ac\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-40-dac1c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1231,9 +1231,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:53.5745706Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:54.3253438Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:40.5841768Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -1244,7 +1244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:11 GMT + - Fri, 28 Jan 2022 16:25:57 GMT expires: - '-1' pragma: @@ -1278,12 +1278,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1298,12 +1298,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:35.2501912Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:21.1592798Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-35-421ff\"\r\n}" + \"2022-01-28-16-25-21-d8821\"\r\n}" headers: cache-control: - no-cache @@ -1312,7 +1312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:12 GMT + - Fri, 28 Jan 2022 16:25:59 GMT expires: - '-1' pragma: @@ -1346,12 +1346,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-35-421ff\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1366,12 +1366,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:35.2501912Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:21.1592798Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:35.2501912Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-35-421ff\"\r\n}" + \"2022-01-28-16-25-21-d8821\"\r\n}" headers: cache-control: - no-cache @@ -1380,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:13 GMT + - Fri, 28 Jan 2022 16:26:00 GMT expires: - '-1' pragma: @@ -1416,7 +1416,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-35-421ff?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821?api-version=2021-05-01-preview response: body: string: '' @@ -1426,7 +1426,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:30:14 GMT + - Fri, 28 Jan 2022 16:26:00 GMT expires: - '-1' pragma: @@ -1464,7 +1464,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -1481,15 +1481,15 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:29:13.1408157Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:25:40.5841768Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:29:13.1408157Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-13-7017d\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:25:40.5841768Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-40-dac1c\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-13-7017d\"\r\n },\r\n {\r\n \"properties\": + \"2022-01-28-16-25-40-dac1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \ \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -1506,12 +1506,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:29:54.3253438Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:59.2013866Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:29:54.3253438Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-29-54-523ac\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-54-523ac\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-59-4ad4f\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -1520,7 +1520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:15 GMT + - Fri, 28 Jan 2022 16:26:01 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index 9490f636536..7b869e31138 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:16 GMT + - Fri, 28 Jan 2022 16:24:59 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cd122501-2ac3-477c-9200-caa9bf5033a6?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd1070c1-d1fd-4858-a3d9-f2803d1312fa?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:17 GMT + - Fri, 28 Jan 2022 16:25:00 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cd122501-2ac3-477c-9200-caa9bf5033a6?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd1070c1-d1fd-4858-a3d9-f2803d1312fa?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cd122501-2ac3-477c-9200-caa9bf5033a6\",\r\n - \ \"name\": \"cd122501-2ac3-477c-9200-caa9bf5033a6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd1070c1-d1fd-4858-a3d9-f2803d1312fa\",\r\n + \ \"name\": \"dd1070c1-d1fd-4858-a3d9-f2803d1312fa\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:34 GMT + - Fri, 28 Jan 2022 16:25:17 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-17-cc727\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-00-aa02e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:34 GMT + - Fri, 28 Jan 2022 16:25:18 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-17-cc727\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-00-aa02e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:35 GMT + - Fri, 28 Jan 2022 16:25:19 GMT expires: - '-1' pragma: @@ -318,8 +318,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-17-cc727\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-00-aa02e\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -334,9 +334,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:17.0296955Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:17.0296955Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:36 GMT + - Fri, 28 Jan 2022 16:25:20 GMT expires: - '-1' pragma: @@ -393,7 +393,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:36 GMT + - Fri, 28 Jan 2022 16:25:21 GMT expires: - '-1' pragma: @@ -435,7 +435,7 @@ interactions: local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At @@ -452,10 +452,10 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -465,19 +465,19 @@ interactions: Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. @@ -486,13 +486,13 @@ interactions: request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''foo'' @@ -703,55 +703,55 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. @@ -767,7 +767,7 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' @@ -780,16 +780,16 @@ interactions: for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' @@ -802,13 +802,13 @@ interactions: for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -839,7 +839,7 @@ interactions: ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -863,23 +863,23 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', - uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', + uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHZjqJAAEX%2fxWTmrVpAQOikM0FAFqFBKBF5MSDFIrIWe6f%2ffXoy5%2fkm5ybna1OhuTfyqsCb96%2fNVXbhxd28b7K%2bb%2fD7dluGVZiiElX9W7gOHXp71OUWDxF%2bdHnT53WFtyEZJSG7Y0BCRQmgqYQEHBsxgKO5B7unk8eOIrdNV495jDq8NfNHV%2bM66d8chOuheyC8jVHzqpd%2fFrcPHwX%2bEzY5GH%2fWP4IPiqBIQDCAIEHToTFH029c5A2sC1R9qDTWhP%2fIgko60LNF8yDxBiAciRQOOjSR3zETCMTSiWRWfR3myatZ69lqT5uh5LnghzrGXBUlCz8WKEM8OXi5eivrIpCvPgBUTAMdRr3PBNUVovXJiNBqWs2Dq%2fm6YrKEdnl0FW2RebWPjUbF3ue1V6zolB7BXbwc2qTXZ1kaJe5suma0SLXlGfshLKRej1IL%2brN8caoBaPi%2bowKPMfJSU%2bRUcsjnXq%2b5WiRdIK2imboevrrDOd2dFnFXmGdWSOfP0yiJt45hnhdLcYODXYrxjb0Eps7mRyXzspmOOcE1cKpwC90TisJP4is7Dg1%2frseXSa1RsNoqdVJljHUm9U3Lfl2ok47QdZTs5sILa9seXKdfzjyd0MFtnp4C%2fVotU1yXyb57XXTMRsIF3C2asnZ%2fLHRVOBK9NJ5hvs4BPN94QgNCYmQ%2b5%2fvGaZiyqVx12VXKlXWtUVAW7efrvgxJRr5lsdfeJVttq3K%2f20PbgHdnhAxKzE%2fDlBJOFMSf3L928eb7%2by8%3d"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2fhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2fvs0O88nOeeqFORS%2bbTIpTK5Kns32saRMlF%2bqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2fPKZdbKPYdBjsLMPPRZuF6cc%2bW7zsYk9VJU8vQS5N7fztHcdOpu16%2bPah04pvrS5%2fV7WGC78x5pyu%2f0B"}' headers: cache-control: - no-cache content-length: - - '243034' + - '245146' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:37 GMT + - Fri, 28 Jan 2022 16:25:22 GMT expires: - '-1' pragma: @@ -891,8 +891,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b8b54d6d-8039-4fe5-9251-2801cc52e46c - - 0d3973a7-2c91-4794-9afe-ea3021ce7616 + - c4207921-1ce8-45f3-b58f-65d1b8ab8e6c + - 21890749-ef9b-48b3-8ed4-dce6873ebcb6 status: code: 200 message: OK @@ -910,7 +910,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZHZjqJAAEX%2FxWTmrVpAQOikM0FAFqFBKBF5MSDFIrIWe6f%2FfXoy5%2Fkm5ybna1OhuTfyqsCb96%2FNVXbhxd28b7K%2Bb%2FD7dluGVZiiElX9W7gOHXp71OUWDxF%2BdHnT53WFtyEZJSG7Y0BCRQmgqYQEHBsxgKO5B7unk8eOIrdNV495jDq8NfNHV%2BM66d8chOuheyC8jVHzqpd%2FFrcPHwX%2BEzY5GH%2FWP4IPiqBIQDCAIEHToTFH029c5A2sC1R9qDTWhP%2FIgko60LNF8yDxBiAciRQOOjSR3zETCMTSiWRWfR3myatZ69lqT5uh5LnghzrGXBUlCz8WKEM8OXi5eivrIpCvPgBUTAMdRr3PBNUVovXJiNBqWs2Dq%2Fm6YrKEdnl0FW2RebWPjUbF3ue1V6zolB7BXbwc2qTXZ1kaJe5suma0SLXlGfshLKRej1IL%2BrN8caoBaPi%2BowKPMfJSU%2BRUcsjnXq%2B5WiRdIK2imboevrrDOd2dFnFXmGdWSOfP0yiJt45hnhdLcYODXYrxjb0Eps7mRyXzspmOOcE1cKpwC90TisJP4is7Dg1%2FrseXSa1RsNoqdVJljHUm9U3Lfl2ok47QdZTs5sILa9seXKdfzjyd0MFtnp4C%2FVotU1yXyb57XXTMRsIF3C2asnZ%2FLHRVOBK9NJ5hvs4BPN94QgNCYmQ%2B5%2FvGaZiyqVx12VXKlXWtUVAW7efrvgxJRr5lsdfeJVttq3K%2F20PbgHdnhAxKzE%2FDlBJOFMSf3L928eb7%2By8%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -997,7 +997,13 @@ interactions: client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' does not have authorization to perform action 'Microsoft.Resources/deployments/write' over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope - is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westcentralus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"shared + sql and web\",\"templateLink\":{\"uri\":\"C:\\\\Users\\\\harshpatel\\\\Misc\\\\TemplateFiles\\\\empty.json\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed. See snapshot '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4' + for more details.\",\"details\":[{\"code\":\"InvalidContentLink\",\"message\":\"The + provided content link 'Azure.Deployments.Core.Entities.DeploymentTemplateContentLink' + is invalid or not supported. Content link must be an absolute URI not referencing + local host or UNC path.\",\"details\":[],\"additionalInfo\":[]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-01-21T20:06:54.3715401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-01-21T20:25:54.1835862Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp-shared-services\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' @@ -1007,44 +1013,44 @@ interactions: or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', @@ -1057,7 +1063,7 @@ interactions: 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations @@ -1068,16 +1074,16 @@ interactions: for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At @@ -1245,16 +1251,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY3LjqJAAAD%2fxcPekIeCYjLZgDjDS0VEUC8EmgZ6kG6muxFxMv8%2bbrYOdaqkvicYPriPcMMmq%2b9JsjlGp%2bNkNak579hKFNsMZxVsIebT7NlTOAWkFVmfM0BRxxHBTMzkvMy0mSqUSl4Kc6WUhaWWq8JyvgTaYl6CmSKLHSV3VEDKxC0ClDBS8mkIGekpgEwsYHcj47%2fLkWegYX%2bzDgn3V%2f0avCmSIguSKkiy0FF4R3D4wxrURaSB%2bM2eM8f4z8aw5cM56a2DaS19AX6WoUkjO6gGfSxussolr%2bLtzrFJ7l9I46RfpnWc6YvYVq2iVqVr0V7r83KBYEpJiD7ez0%2fymSrZAkq7HqWVZLZNYewscIRezA%2bj3r9kGX4Qg3R7dqkP%2fb3LdTVMHjeVc%2bOo%2b9pF2WfGnNbrcGn2IaxM%2fdIj7xYkNvdqhp6S9rB10z3XW%2bAlwNBH591JBxO0ETH51g3GIRtuRN7MsVFdCy9SugAMn7GzKXUc7E1PPg1gdC5fTnENrLBadxZurb1EqL3OoMuyR5WnmosiFOJRcWbxGrPzwX%2fq9TWpsck%2b%2bD2mCGCsm7PaOS3qrXEwjMnPzy8%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2bhE1HmzQCmuQWlt%2bTe%2b%2bzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2b1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2fzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2b60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2fGKXPzsiTN49yzlt6Rbrc%2f\"}" headers: cache-control: - no-cache content-length: - - '233931' + - '234657' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:38 GMT + - Fri, 28 Jan 2022 16:25:23 GMT expires: - '-1' pragma: @@ -1266,7 +1272,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 5f1183c1-1e49-45ec-9028-379410fa1826 + - 3fc2cb1d-5efe-4038-9d65-cb90cc824aae status: code: 200 message: OK @@ -1284,19 +1290,20 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY3LjqJAAAD%2FxcPekIeCYjLZgDjDS0VEUC8EmgZ6kG6muxFxMv8%2BbrYOdaqkvicYPriPcMMmq%2B9JsjlGp%2BNkNak579hKFNsMZxVsIebT7NlTOAWkFVmfM0BRxxHBTMzkvMy0mSqUSl4Kc6WUhaWWq8JyvgTaYl6CmSKLHSV3VEDKxC0ClDBS8mkIGekpgEwsYHcj47%2FLkWegYX%2BzDgn3V%2F0avCmSIguSKkiy0FF4R3D4wxrURaSB%2BM2eM8f4z8aw5cM56a2DaS19AX6WoUkjO6gGfSxussolr%2BLtzrFJ7l9I46RfpnWc6YvYVq2iVqVr0V7r83KBYEpJiD7ez0%2FymSrZAkq7HqWVZLZNYewscIRezA%2Bj3r9kGX4Qg3R7dqkP%2Fb3LdTVMHjeVc%2BOo%2B9pF2WfGnNbrcGn2IaxM%2FdIj7xYkNvdqhp6S9rB10z3XW%2BAlwNBH591JBxO0ETH51g3GIRtuRN7MsVFdCy9SugAMn7GzKXUc7E1PPg1gdC5fTnENrLBadxZurb1EqL3OoMuyR5WnmosiFOJRcWbxGrPzwX%2Fq9TWpsck%2B%2BD2mCGCsm7PaOS3qrXEwjMnPzy8%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:35.2501912Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsp6tmo2cghgxf2uoh5/snapshots/2022-01-21-20-29-33-daedb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:32.9276192Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:32.9276192Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsp6tmo2cghgxf2uoh5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsp6tmo2cghgxf2uoh5"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:36.4935066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:36.4935066Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionvf4scnc3rv3fiyf6ip","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionvf4scnc3rv3fiyf6ip"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-24-17-49-07-8a04c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/only4-2022-01-24-17-49-07-8a04c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-24T17:45:35.0027469Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-24T17:49:07.7304799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-26-23-26-18-6a577","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-26-23-26-18-6a577","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T23:26:17.9089129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:21.1592798Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:25:14.0761922Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:14.0761922Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiondhrkfxuei7cll3zlg5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiondhrkfxuei7cll3zlg5"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:25:17.5273853Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:17.5273853Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription2xno3s5lx4xcarffrm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription2xno3s5lx4xcarffrm"}]}' headers: cache-control: - no-cache content-length: - - '99300' + - '108516' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:38 GMT + - Fri, 28 Jan 2022 16:25:23 GMT expires: - '-1' pragma: @@ -1308,7 +1315,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 93de6875-a980-4051-8f53-c89109a2e602 + - 195f87d0-2831-4401-ac90-42c4355cae58 status: code: 200 message: OK @@ -1341,7 +1348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:39 GMT + - Fri, 28 Jan 2022 16:25:24 GMT expires: - '-1' pragma: @@ -1399,14 +1406,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:40.3801202Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:24.9663663Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:40.3801202Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:24.9663663Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/144f14de-a000-463a-abd9-5638788eaf13?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5f78bfbc-39bd-4fb6-acbc-03108abeca1c?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -1414,7 +1421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:40 GMT + - Fri, 28 Jan 2022 16:25:25 GMT expires: - '-1' pragma: @@ -1426,7 +1433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1446,11 +1453,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/144f14de-a000-463a-abd9-5638788eaf13?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5f78bfbc-39bd-4fb6-acbc-03108abeca1c?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/144f14de-a000-463a-abd9-5638788eaf13\",\r\n - \ \"name\": \"144f14de-a000-463a-abd9-5638788eaf13\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5f78bfbc-39bd-4fb6-acbc-03108abeca1c\",\r\n + \ \"name\": \"5f78bfbc-39bd-4fb6-acbc-03108abeca1c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1459,7 +1466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:57 GMT + - Fri, 28 Jan 2022 16:25:42 GMT expires: - '-1' pragma: @@ -1497,8 +1504,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-40-01524\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-40-01524\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-25-a2b3c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-25-a2b3c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1513,9 +1520,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:40.3801202Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:24.9663663Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:40.3801202Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:24.9663663Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -1526,7 +1533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:57 GMT + - Fri, 28 Jan 2022 16:25:42 GMT expires: - '-1' pragma: @@ -1564,8 +1571,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-40-01524\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-40-01524\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-25-a2b3c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-25-a2b3c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1580,9 +1587,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:40.3801202Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:24.9663663Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:40.3801202Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:24.9663663Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -1593,7 +1600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:59 GMT + - Fri, 28 Jan 2022 16:25:44 GMT expires: - '-1' pragma: @@ -1639,7 +1646,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:59 GMT + - Fri, 28 Jan 2022 16:25:44 GMT expires: - '-1' pragma: @@ -1681,7 +1688,7 @@ interactions: local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At @@ -1698,10 +1705,10 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -1711,19 +1718,19 @@ interactions: Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. @@ -1732,13 +1739,13 @@ interactions: request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''foo'' @@ -1949,55 +1956,55 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. @@ -2013,7 +2020,7 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' @@ -2026,16 +2033,16 @@ interactions: for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' @@ -2048,13 +2055,13 @@ interactions: for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -2085,7 +2092,7 @@ interactions: ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -2109,23 +2116,23 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', - uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', + uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3djqIwAEDhd%2fFi7xgLAuIkkw0iig4if4JwQwBbYJBSaEFhMu%2b%2bu9lzfZLve4Hhi5kVruni%2fXsR6p5%2f9Rbvi5IxQt%2bXyybFaQEbiNlbOg89fMvbZkmHjOZ9RVjVYrpM%2bQyl8krikJAhThQQzylyJnGKqOTyWkT5SuCXpG%2fH6g57ujxXed%2fSFrE3F9J26HNIl3dIHu30T%2fFYmtf0d0oqbvx7%2fwU%2bBCDwHJA4wHOkh2MFn79oXRG%2frSH%2bMER6VP%2bnq4bgOrHtOVttnwA2vVSrVr0gMEw5PlkF9Y7pM2LZVGhUOOjWpyeO%2bx6Fq8vaymDv2GC%2bjCuOSTayuSPqXQsx%2f6GnGxb6ZJ2wSmkfwTWSxma%2bx%2fyQS4RZ4nitDSWMGQCHxAAjb9V8NQWIwJ2TjuJ0N%2b%2bn8nZyBDdLlP3VIJgcW9%2bWt5m2j5uvsXH5jYADVTpy0vnGwOeDhvOq6OhM1k5wCl2g%2bYa0%2byolvYbUCQEuoHSuOL0SojAPSvwi5U06fupu0ytdV1xjCjsREEtn%2fa15hNeoNK3%2bga%2bbrtzen7lxOxTZbA5T3PkxZkizmIuf9c6yxK6ck%2bZCUrsExsnPZXtL%2bJXdiJcbPxIgB7Dl7Tja%2bXusIFn%2fUjpN5nZ5tsch2sdJg8PcyuizW%2fMl6s3hohWnvovOSE0qpaBZlJ5ik9MS%2fjJvhmR7oXN2rqNc8roD5qJpil7dpjLXo993Nmhha0dRsqmr9ZDALHncXiuxgMacKGpubcHBydVCVRc%2fP38A"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2fhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2fvs0O88nOeeqFORS%2bbTIpTK5Kns32saRMlF%2bqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2fPKZdbKPYdBjsLMPPRZuF6cc%2bW7zsYk9VJU8vQS5N7fztHcdOpu16%2bPah04pvrS5%2fV7WGC78x5pyu%2f0B"}' headers: cache-control: - no-cache content-length: - - '243048' + - '245146' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:01 GMT + - Fri, 28 Jan 2022 16:25:45 GMT expires: - '-1' pragma: @@ -2137,8 +2144,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 18a5799b-e127-4a2b-b9d7-542a43af9004 - - 8e48297b-4b31-4d85-9c9e-0c90770a537e + - 8a2bac0c-3be8-4fad-b300-8a872ef69f0c + - 9ea9feb0-0821-4929-a038-8164e4b6bb74 status: code: 200 message: OK @@ -2156,7 +2163,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3djqIwAEDhd%2FFi7xgLAuIkkw0iig4if4JwQwBbYJBSaEFhMu%2B%2Bu9lzfZLve4Hhi5kVruni%2FXsR6p5%2F9Rbvi5IxQt%2BXyybFaQEbiNlbOg89fMvbZkmHjOZ9RVjVYrpM%2BQyl8krikJAhThQQzylyJnGKqOTyWkT5SuCXpG%2FH6g57ujxXed%2FSFrE3F9J26HNIl3dIHu30T%2FFYmtf0d0oqbvx7%2FwU%2BBCDwHJA4wHOkh2MFn79oXRG%2FrSH%2BMER6VP%2Bnq4bgOrHtOVttnwA2vVSrVr0gMEw5PlkF9Y7pM2LZVGhUOOjWpyeO%2Bx6Fq8vaymDv2GC%2BjCuOSTayuSPqXQsx%2F6GnGxb6ZJ2wSmkfwTWSxma%2Bx%2FyQS4RZ4nitDSWMGQCHxAAjb9V8NQWIwJ2TjuJ0N%2B%2Bn8nZyBDdLlP3VIJgcW9%2BWt5m2j5uvsXH5jYADVTpy0vnGwOeDhvOq6OhM1k5wCl2g%2BYa0%2ByolvYbUCQEuoHSuOL0SojAPSvwi5U06fupu0ytdV1xjCjsREEtn%2Fa15hNeoNK3%2Bga%2Bbrtzen7lxOxTZbA5T3PkxZkizmIuf9c6yxK6ck%2BZCUrsExsnPZXtL%2BJXdiJcbPxIgB7Dl7Tja%2BXusIFn%2FUjpN5nZ5tsch2sdJg8PcyuizW%2FMl6s3hohWnvovOSE0qpaBZlJ5ik9MS%2FjJvhmR7oXN2rqNc8roD5qJpil7dpjLXo993Nmhha0dRsqmr9ZDALHncXiuxgMacKGpubcHBydVCVRc%2FP38A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -2243,7 +2250,13 @@ interactions: client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' does not have authorization to perform action 'Microsoft.Resources/deployments/write' over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope - is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westcentralus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"shared + sql and web\",\"templateLink\":{\"uri\":\"C:\\\\Users\\\\harshpatel\\\\Misc\\\\TemplateFiles\\\\empty.json\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed. See snapshot '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4' + for more details.\",\"details\":[{\"code\":\"InvalidContentLink\",\"message\":\"The + provided content link 'Azure.Deployments.Core.Entities.DeploymentTemplateContentLink' + is invalid or not supported. Content link must be an absolute URI not referencing + local host or UNC path.\",\"details\":[],\"additionalInfo\":[]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-01-21T20:06:54.3715401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-01-21T20:25:54.1835862Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp-shared-services\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' @@ -2253,44 +2266,44 @@ interactions: or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', @@ -2303,7 +2316,7 @@ interactions: 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations @@ -2314,16 +2327,16 @@ interactions: for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At @@ -2491,16 +2504,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLjqJAAEX%2fxWRmV%2fJ%2btElnAoKCIC3QKrohUBRQIhRSSAOd%2fvdxMjdneZKT3O9Fg8bexU1FF6vvxdkMP4%2fhYrUo%2b76lK4apkyYpUI2afpnMzw4tIakZ%2bkwp7HDbY9JQJuHSPJEFCeR8mgORzzmgyqkEVFGFsiLmUOA5pu3IgDPUUWaPYUcoyftlgCh5dhBRJkPtnUz%2fKmGfwIr%2bSVoMhpf9CrzzLM8BVgIsB9oODRh9%2faYVbj9JhZp3S6S29n%2bmZnH%2bxHeGr83qPY6CQ3CL4PWxsbZXYUDN2YjkWtz5yDCitZsmZQJNn63BoGiAZJ5OWHvyo0eMUdzRAG830UxuOY8UxGa1GheqXlWZ5q0hULiIu7msfHfdvVaoJ4X7kqTdfmx7bzgcnfQcVfxpdNk9xJe2MtTa2dyIkeFeM2TiqE55qJvWKWk1s%2fK4eyuqbrS2GxdpvmQ6VS7azs46a%2bnsBCr0UMjCIpuJf%2fy42xZboEuA6%2fWgTk1qN8kj%2fLiaVmMO%2b3thi%2fqxlGddm46nW%2blFpuwRUT%2fkO6CYp7kPdyA4GQdhMvhkm9UXX%2fD62H8bn6kQRw%2fnroea%2bXryl5C9WPz8%2fAU%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2bhE1HmzQCmuQWlt%2bTe%2b%2bzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2b1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2fzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2b60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2fGKXPzsiTN49yzlt6Rbrc%2f\"}" headers: cache-control: - no-cache content-length: - - '233951' + - '234657' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:01 GMT + - Fri, 28 Jan 2022 16:25:45 GMT expires: - '-1' pragma: @@ -2512,7 +2525,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 345975f9-71ee-494e-b788-cee8a9149937 + - a6af5668-9581-4dbb-9102-ceea725b611f status: code: 200 message: OK @@ -2530,19 +2543,20 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JZDLjqJAAEX%2FxWRmV%2FJ%2BtElnAoKCIC3QKrohUBRQIhRSSAOd%2FvdxMjdneZKT3O9Fg8bexU1FF6vvxdkMP4%2FhYrUo%2B76lK4apkyYpUI2afpnMzw4tIakZ%2Bkwp7HDbY9JQJuHSPJEFCeR8mgORzzmgyqkEVFGFsiLmUOA5pu3IgDPUUWaPYUcoyftlgCh5dhBRJkPtnUz%2FKmGfwIr%2BSVoMhpf9CrzzLM8BVgIsB9oODRh9%2FaYVbj9JhZp3S6S29n%2BmZnH%2BxHeGr83qPY6CQ3CL4PWxsbZXYUDN2YjkWtz5yDCitZsmZQJNn63BoGiAZJ5OWHvyo0eMUdzRAG830UxuOY8UxGa1GheqXlWZ5q0hULiIu7msfHfdvVaoJ4X7kqTdfmx7bzgcnfQcVfxpdNk9xJe2MtTa2dyIkeFeM2TiqE55qJvWKWk1s%2FK4eyuqbrS2GxdpvmQ6VS7azs46a%2BnsBCr0UMjCIpuJf%2Fy42xZboEuA6%2FWgTk1qN8kj%2FLiaVmMO%2B3thi%2FqxlGddm46nW%2BlFpuwRUT%2FkO6CYp7kPdyA4GQdhMvhkm9UXX%2FD62H8bn6kQRw%2Fnroea%2BXryl5C9WPz8%2FAU%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-24-17-49-07-8a04c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/only4-2022-01-24-17-49-07-8a04c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-24T17:45:35.0027469Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-24T17:49:07.7304799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-26-23-26-18-6a577","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-26-23-26-18-6a577","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T23:26:17.9089129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"}]}' headers: cache-control: - no-cache content-length: - - '96882' + - '105925' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:02 GMT + - Fri, 28 Jan 2022 16:25:46 GMT expires: - '-1' pragma: @@ -2554,7 +2568,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 75c7e07a-5a9d-489a-8280-263daea1021c + - 52798726-cd53-42a9-8044-33ff3bff7837 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index 03b92042971..eeb4c07d1a7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:28 GMT + - Fri, 28 Jan 2022 16:24:10 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/637719a1-907f-48a1-989d-f44d58b1f4a8?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbfd55da-77a5-4dfa-b689-f0d76f558812?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:28 GMT + - Fri, 28 Jan 2022 16:24:10 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/637719a1-907f-48a1-989d-f44d58b1f4a8?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbfd55da-77a5-4dfa-b689-f0d76f558812?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/637719a1-907f-48a1-989d-f44d58b1f4a8\",\r\n - \ \"name\": \"637719a1-907f-48a1-989d-f44d58b1f4a8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbfd55da-77a5-4dfa-b689-f0d76f558812\",\r\n + \ \"name\": \"cbfd55da-77a5-4dfa-b689-f0d76f558812\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:45 GMT + - Fri, 28 Jan 2022 16:24:27 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-29-b37b6\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-20-28-29-b37b6\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-11-3b947\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-28-16-24-11-3b947\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:45 GMT + - Fri, 28 Jan 2022 16:24:27 GMT expires: - '-1' pragma: @@ -249,9 +249,9 @@ interactions: response: body: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-29-b37b6\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-11-3b947\",\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-20-28-29-b37b6\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-28-16-24-11-3b947\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -267,9 +267,9 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n },\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:46 GMT + - Fri, 28 Jan 2022 16:24:28 GMT expires: - '-1' pragma: @@ -318,8 +318,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-21-20-28-29-b37b6\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-21-20-28-29-b37b6\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-11-3b947\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-28-16-24-11-3b947\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -333,9 +333,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:29.3234353Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:29.3234353Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -346,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:47 GMT + - Fri, 28 Jan 2022 16:24:29 GMT expires: - '-1' pragma: @@ -392,7 +392,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:28:47 GMT + - Fri, 28 Jan 2022 16:24:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml index f34dcbdd7eb..b7e18b1b2b3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:46 GMT + - Fri, 28 Jan 2022 16:24:29 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8d49c91a-3b1e-49f0-b29c-e8eea33fb33f?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1388d19c-136f-4066-8d93-dada60589b85?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:46 GMT + - Fri, 28 Jan 2022 16:24:29 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8d49c91a-3b1e-49f0-b29c-e8eea33fb33f?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1388d19c-136f-4066-8d93-dada60589b85?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8d49c91a-3b1e-49f0-b29c-e8eea33fb33f\",\r\n - \ \"name\": \"8d49c91a-3b1e-49f0-b29c-e8eea33fb33f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1388d19c-136f-4066-8d93-dada60589b85\",\r\n + \ \"name\": \"1388d19c-136f-4066-8d93-dada60589b85\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:03 GMT + - Fri, 28 Jan 2022 16:24:46 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:03 GMT + - Fri, 28 Jan 2022 16:24:46 GMT expires: - '-1' pragma: @@ -251,7 +251,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -267,12 +267,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-47-a4f1c\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-29-f83dc\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:04 GMT + - Fri, 28 Jan 2022 16:24:46 GMT expires: - '-1' pragma: @@ -321,7 +321,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": @@ -337,12 +337,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-47-a4f1c\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-29-f83dc\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -351,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:05 GMT + - Fri, 28 Jan 2022 16:24:47 GMT expires: - '-1' pragma: @@ -388,8 +388,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-21-20-28-47-a4f1c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-21-20-28-47-a4f1c\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -403,9 +403,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:47.0131495Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:47.0131495Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: @@ -416,7 +416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:05 GMT + - Fri, 28 Jan 2022 16:24:48 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:05 GMT + - Fri, 28 Jan 2022 16:24:48 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml index 2843570d9b1..311c0786b5d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:49 GMT + - Fri, 28 Jan 2022 16:24:31 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fa381508-0e25-449d-b84f-834021a0b604?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/26b9587a-97b3-47d7-9ec0-a6b81662558d?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:28:50 GMT + - Fri, 28 Jan 2022 16:24:32 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fa381508-0e25-449d-b84f-834021a0b604?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/26b9587a-97b3-47d7-9ec0-a6b81662558d?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fa381508-0e25-449d-b84f-834021a0b604\",\r\n - \ \"name\": \"fa381508-0e25-449d-b84f-834021a0b604\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/26b9587a-97b3-47d7-9ec0-a6b81662558d\",\r\n + \ \"name\": \"26b9587a-97b3-47d7-9ec0-a6b81662558d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:07 GMT + - Fri, 28 Jan 2022 16:24:49 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:07 GMT + - Fri, 28 Jan 2022 16:24:49 GMT expires: - '-1' pragma: @@ -253,7 +253,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -270,12 +270,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-51-5e01e\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-32-1c304\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -284,7 +284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:09 GMT + - Fri, 28 Jan 2022 16:24:50 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -341,12 +341,12 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n + \ \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-28-51-5e01e\"\r\n }\r\n ]\r\n}" + \"2022-01-28-16-24-32-1c304\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -355,7 +355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:10 GMT + - Fri, 28 Jan 2022 16:24:51 GMT expires: - '-1' pragma: @@ -393,8 +393,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-21-20-28-51-5e01e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-21-20-28-51-5e01e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -409,9 +409,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:28:50.4025276Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:28:50.4025276Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:10 GMT + - Fri, 28 Jan 2022 16:24:52 GMT expires: - '-1' pragma: @@ -468,7 +468,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:11 GMT + - Fri, 28 Jan 2022 16:24:53 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index 67c82b956b6..d5c09f75c42 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:09 GMT + - Fri, 28 Jan 2022 16:24:50 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:09.8706184Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:50.8958015Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:09.8706184Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:50.8958015Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f78ff3a1-984d-4d35-9c30-7dfa3e71b931?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6fefdb14-68ea-4fb9-9581-863746b56bda?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:10 GMT + - Fri, 28 Jan 2022 16:24:51 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f78ff3a1-984d-4d35-9c30-7dfa3e71b931?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6fefdb14-68ea-4fb9-9581-863746b56bda?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f78ff3a1-984d-4d35-9c30-7dfa3e71b931\",\r\n - \ \"name\": \"f78ff3a1-984d-4d35-9c30-7dfa3e71b931\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6fefdb14-68ea-4fb9-9581-863746b56bda\",\r\n + \ \"name\": \"6fefdb14-68ea-4fb9-9581-863746b56bda\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:27 GMT + - Fri, 28 Jan 2022 16:25:08 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-10-172e7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-20-29-10-172e7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-28-16-24-51-21b83\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-28-16-24-51-21b83\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:09.8706184Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:50.8958015Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:09.8706184Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:50.8958015Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:27 GMT + - Fri, 28 Jan 2022 16:25:08 GMT expires: - '-1' pragma: @@ -257,7 +257,7 @@ interactions: local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At @@ -274,10 +274,10 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -287,19 +287,19 @@ interactions: Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. @@ -308,13 +308,13 @@ interactions: request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''foo'' @@ -525,55 +525,55 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. @@ -589,7 +589,7 @@ interactions: group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' @@ -602,16 +602,16 @@ interactions: for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' @@ -624,13 +624,13 @@ interactions: for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -661,7 +661,7 @@ interactions: ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -685,23 +685,23 @@ interactions: or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', - uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', + uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3LjqJAAEDRf3Exu2p5o510JigKIihvxQ0BLKCUl1RRgJ3%2b95nJ3PVNzveigRMxUfPEi8%2fvxWXn%2bYG3%2bFyUhHT4c7mskyYpYA0b8pG8hx5%2bZG29xEOKsx51BLUNXiZsmicSL4KcS3MgcDkLVlIqgpWwyiRZyDOeY5dd31J0hz1eWijrW9zm5MOFuB36DOLlHXZVO%2f9TPJJkT%2fw76RCgf%2b%2b%2fwBfHcCxgRMCwoOshRXD8hZ%2bo89snbL50AR%2bU%2f%2b0UnXX90EbORl2bq6erTsrmlrQraldI43TD2JbaPFovjlOs151PzItD1nKetnIA5cxm3gYBPRvbvDk%2b6ZpINCABg5rDq4ntnHrKkAGdjUM%2bkamAzPOb7FF77dv2ce7YYa7Dau7MOePDTFWi5uVv4Cm084sQAHsXb7OHCueD5naronoqHBPDKD0HEjk4c6J08mAfk0hV18IGe3RwnUq61MfzsdAdozSYy1ZTVkxQZMKEHV%2btx9PRUnZ25IDSOzl77UCOgm1I07U2I%2fF2YzUQVRgZIjfZGWSsajhTnRTFtKnauHbCCY1XaKWR29BJcKAkxmOeVUMZVsoj4FQ0tldd55KoMmi57ye4tppW8%2f0xHW3q5ZMrlw9f38EG4upWhgAbb83Mb1idymtUlnFg%2bpGlHnfbpsb7Sd3oqVI8TiV3oNJ1HfZwE95x%2fUY64u1nqUiylRsXUNeCuH2I5N5P52pHvfR8iufpgPnXxc%2fzKJ8aQwKUaAxLXYALpVCUxc%2fPHw%3d%3d"}' + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2fhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2fvs0O88nOeeqFORS%2bbTIpTK5Kns32saRMlF%2bqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2fPKZdbKPYdBjsLMPPRZuF6cc%2bW7zsYk9VJU8vQS5N7fztHcdOpu16%2bPah04pvrS5%2fV7WGC78x5pyu%2f0B"}' headers: cache-control: - no-cache content-length: - - '243028' + - '245146' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:29 GMT + - Fri, 28 Jan 2022 16:25:10 GMT expires: - '-1' pragma: @@ -713,8 +713,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 156c1fd7-2065-4686-a3b0-d14c58ee44c9 - - 4d346b8c-0610-4a12-bc99-6e46416268af + - ed586c25-1d97-43f3-9e20-084e42da6252 + - 1f5d5706-1d80-4019-8b0c-d161ba7085f9 status: code: 200 message: OK @@ -732,7 +732,7 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3LjqJAAEDRf3Exu2p5o510JigKIihvxQ0BLKCUl1RRgJ3%2B95nJ3PVNzveigRMxUfPEi8%2FvxWXn%2BYG3%2BFyUhHT4c7mskyYpYA0b8pG8hx5%2BZG29xEOKsx51BLUNXiZsmicSL4KcS3MgcDkLVlIqgpWwyiRZyDOeY5dd31J0hz1eWijrW9zm5MOFuB36DOLlHXZVO%2F9TPJJkT%2Fw76RCgf%2B%2B%2FwBfHcCxgRMCwoOshRXD8hZ%2Bo89snbL50AR%2BU%2F%2B0UnXX90EbORl2bq6erTsrmlrQraldI43TD2JbaPFovjlOs151PzItD1nKetnIA5cxm3gYBPRvbvDk%2B6ZpINCABg5rDq4ntnHrKkAGdjUM%2BkamAzPOb7FF77dv2ce7YYa7Dau7MOePDTFWi5uVv4Cm084sQAHsXb7OHCueD5naronoqHBPDKD0HEjk4c6J08mAfk0hV18IGe3RwnUq61MfzsdAdozSYy1ZTVkxQZMKEHV%2Btx9PRUnZ25IDSOzl77UCOgm1I07U2I%2FF2YzUQVRgZIjfZGWSsajhTnRTFtKnauHbCCY1XaKWR29BJcKAkxmOeVUMZVsoj4FQ0tldd55KoMmi57ye4tppW8%2F0xHW3q5ZMrlw9f38EG4upWhgAbb83Mb1idymtUlnFg%2BpGlHnfbpsb7Sd3oqVI8TiV3oNJ1HfZwE95x%2FUY64u1nqUiylRsXUNeCuH2I5N5P52pHvfR8iufpgPnXxc%2FzKJ8aQwKUaAxLXYALpVCUxc%2FPHw%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B response: body: string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john @@ -819,7 +819,13 @@ interactions: client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' does not have authorization to perform action 'Microsoft.Resources/deployments/write' over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope - is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westcentralus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"shared + sql and web\",\"templateLink\":{\"uri\":\"C:\\\\Users\\\\harshpatel\\\\Misc\\\\TemplateFiles\\\\empty.json\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + or more stages of deploymentStack update failed. See snapshot '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4' + for more details.\",\"details\":[{\"code\":\"InvalidContentLink\",\"message\":\"The + provided content link 'Azure.Deployments.Core.Entities.DeploymentTemplateContentLink' + is invalid or not supported. Content link must be an absolute URI not referencing + local host or UNC path.\",\"details\":[],\"additionalInfo\":[]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-01-21T20:06:54.3715401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-01-21T20:25:54.1835862Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp-shared-services\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' @@ -829,44 +835,44 @@ interactions: or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', @@ -879,7 +885,7 @@ interactions: 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One + format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations @@ -890,16 +896,16 @@ interactions: for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East + US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At @@ -1067,16 +1073,16 @@ interactions: least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:21:38.9965642Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:22:40.9252552Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JjqJAAIDhd%2fEwN2RHMOlMWGRTmEbAVi4GsIBiqaIpFrHT7z49mf%2f8J9%2fXBoHneIKoIZv91%2bbjEEZxuNlvqnHsyZ6muxSlJegAGrfpaxrANscdTaaM5APsR4gRoVM2K1KJF6mCywpK4AqWkqVMpGRBzqWdUOQ8x9L9gGf4AAOhPZgPmOBi3J4BwdOQA0I%2fQN%2fi9Z8SjmnekN9pD6n55%2f4B3jiGYylGpBiW6gcwQ7D8Ig3sI9wA9GYLxFH%2fd1BtNli5z0OgGXJ7N7HRubn%2fmksMUrZLalNOLNXincDBjHuczlplXV%2b7M%2bLVXbZj%2fIt5eV6ZVWiV1%2fOuPI3ydJRmgedcLluhFwpK1LvEKd%2fDRxLbF9mo8JGg%2bqj25A4W%2fnOZQFZnvQ9hK8Rtif6EpcJem%2bScLGJwSVV0u1bqIZh5je0jnsdekQLrKFReiaC2vutZegCiajZFqc21ttPE8kMXmqCYRieM4MlZLTvyQiBq0qd5c4JhBuLInOvnzYwN9yFcq3jRYx2eFRvWKPQXakVha3G6n8t15NY%2btb46qUJ3L7JuBecmcjLJoS75F3BCOTXf2dE2OsVTA1XdfH%2f%2fBQ%3d%3d\"}" + group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2bhE1HmzQCmuQWlt%2bTe%2b%2bzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2b1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2fzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2b60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2fGKXPzsiTN49yzlt6Rbrc%2f\"}" headers: cache-control: - no-cache content-length: - - '233939' + - '234657' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:29 GMT + - Fri, 28 Jan 2022 16:25:10 GMT expires: - '-1' pragma: @@ -1088,7 +1094,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 7066e849-0540-483f-94bb-006e797b168c + - b030e5ff-8d8d-4fd1-af44-7a9d3e846189 status: code: 200 message: OK @@ -1106,19 +1112,20 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=Jc3JjqJAAIDhd%2FEwN2RHMOlMWGRTmEbAVi4GsIBiqaIpFrHT7z49mf%2F8J9%2FXBoHneIKoIZv91%2BbjEEZxuNlvqnHsyZ6muxSlJegAGrfpaxrANscdTaaM5APsR4gRoVM2K1KJF6mCywpK4AqWkqVMpGRBzqWdUOQ8x9L9gGf4AAOhPZgPmOBi3J4BwdOQA0I%2FQN%2Fi9Z8SjmnekN9pD6n55%2F4B3jiGYylGpBiW6gcwQ7D8Ig3sI9wA9GYLxFH%2Fd1BtNli5z0OgGXJ7N7HRubn%2FmksMUrZLalNOLNXincDBjHuczlplXV%2B7M%2BLVXbZj%2FIt5eV6ZVWiV1%2FOuPI3ydJRmgedcLluhFwpK1LvEKd%2FDRxLbF9mo8JGg%2Bqj25A4W%2FnOZQFZnvQ9hK8Rtif6EpcJem%2BScLGJwSVV0u1bqIZh5je0jnsdekQLrKFReiaC2vutZegCiajZFqc21ttPE8kMXmqCYRieM4MlZLTvyQiBq0qd5c4JhBuLInOvnzYwN9yFcq3jRYx2eFRvWKPQXakVha3G6n8t15NY%2Btb46qUJ3L7JuBecmcjLJoS75F3BCOTXf2dE2OsVTA1XdfH%2F%2FBQ%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-13-7017d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-13-7017d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:13.1408157Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-10-172e7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-20-29-10-172e7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:09.8706184Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:09.8706184Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhk5c57nbw3rtmeo/snapshots/2022-01-21-20-29-17-cc727","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-21-20-29-17-cc727","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:29:17.0296955Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:17.0296955Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionhk5c57nbw3rtmeo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionhk5c57nbw3rtmeo"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-24-17-49-07-8a04c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/only4-2022-01-24-17-49-07-8a04c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-24T17:45:35.0027469Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-24T17:49:07.7304799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-26-23-26-18-6a577","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-26-23-26-18-6a577","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T23:26:17.9089129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-24-59-4ad4f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:24:59.2013866Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-28-16-24-51-21b83","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-28-16-24-51-21b83","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:50.8958015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:24:50.8958015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiona7qoiwldvgsumzw/snapshots/2022-01-28-16-25-00-aa02e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:25:00.4247672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:00.4247672Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiona7qoiwldvgsumzw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiona7qoiwldvgsumzw"}]}' headers: cache-control: - no-cache content-length: - - '100035' + - '109289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:30 GMT + - Fri, 28 Jan 2022 16:25:11 GMT expires: - '-1' pragma: @@ -1130,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ead1fd22-12a7-4d71-b407-b393c3010c47 + - 10a5a8da-c2d8-4705-a760-a4e570dc24d5 status: code: 200 message: OK @@ -1154,8 +1161,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-10-172e7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-21-20-29-10-172e7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-28-16-24-51-21b83\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-28-16-24-51-21b83\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -1170,9 +1177,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:09.8706184Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:50.8958015Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:09.8706184Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:50.8958015Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: @@ -1183,7 +1190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:31 GMT + - Fri, 28 Jan 2022 16:25:12 GMT expires: - '-1' pragma: @@ -1229,7 +1236,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:32 GMT + - Fri, 28 Jan 2022 16:25:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index 5c08fcd8aea..4dde3f104bc 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:13 GMT + - Fri, 28 Jan 2022 16:24:54 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e7ea3b3-a45d-40ca-add1-ee1f989590c4?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/483cb1cb-548c-4fa1-a95b-8772b4692cce?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:13 GMT + - Fri, 28 Jan 2022 16:24:54 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e7ea3b3-a45d-40ca-add1-ee1f989590c4?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/483cb1cb-548c-4fa1-a95b-8772b4692cce?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e7ea3b3-a45d-40ca-add1-ee1f989590c4\",\r\n - \ \"name\": \"7e7ea3b3-a45d-40ca-add1-ee1f989590c4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/483cb1cb-548c-4fa1-a95b-8772b4692cce\",\r\n + \ \"name\": \"483cb1cb-548c-4fa1-a95b-8772b4692cce\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:30 GMT + - Fri, 28 Jan 2022 16:25:11 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:31 GMT + - Fri, 28 Jan 2022 16:25:12 GMT expires: - '-1' pragma: @@ -248,8 +248,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -263,9 +263,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -276,7 +276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:31 GMT + - Fri, 28 Jan 2022 16:25:12 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -328,9 +328,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:32 GMT + - Fri, 28 Jan 2022 16:25:13 GMT expires: - '-1' pragma: @@ -378,8 +378,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-21-20-29-13-2fda2\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-21-20-29-13-2fda2\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -393,9 +393,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:13.7636343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:13.7636343Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:33 GMT + - Fri, 28 Jan 2022 16:25:14 GMT expires: - '-1' pragma: @@ -452,7 +452,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:33 GMT + - Fri, 28 Jan 2022 16:25:14 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml index bf36b75b5d4..8eeefad90cb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:17 GMT + - Fri, 28 Jan 2022 16:26:03 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ca081d6-7059-4aa9-9ce2-8e5c5fe409db?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e37c35d-2a13-4768-b879-03c393070573?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:18 GMT + - Fri, 28 Jan 2022 16:26:03 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ca081d6-7059-4aa9-9ce2-8e5c5fe409db?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e37c35d-2a13-4768-b879-03c393070573?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ca081d6-7059-4aa9-9ce2-8e5c5fe409db\",\r\n - \ \"name\": \"5ca081d6-7059-4aa9-9ce2-8e5c5fe409db\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e37c35d-2a13-4768-b879-03c393070573\",\r\n + \ \"name\": \"8e37c35d-2a13-4768-b879-03c393070573\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:35 GMT + - Fri, 28 Jan 2022 16:26:20 GMT expires: - '-1' pragma: @@ -183,8 +183,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -198,9 +198,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:35 GMT + - Fri, 28 Jan 2022 16:26:20 GMT expires: - '-1' pragma: @@ -245,12 +245,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -264,12 +264,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-30-18-fb0b5\"\r\n}" + \"2022-01-28-16-26-03-371d9\"\r\n}" headers: cache-control: - no-cache @@ -278,7 +278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:36 GMT + - Fri, 28 Jan 2022 16:26:21 GMT expires: - '-1' pragma: @@ -312,12 +312,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -331,12 +331,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-30-18-fb0b5\"\r\n}" + \"2022-01-28-16-26-03-371d9\"\r\n}" headers: cache-control: - no-cache @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:36 GMT + - Fri, 28 Jan 2022 16:26:22 GMT expires: - '-1' pragma: @@ -382,8 +382,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-21-20-30-18-fb0b5\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-21-20-30-18-fb0b5\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n @@ -397,9 +397,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:30:18.4559805Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:30:18.4559805Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: @@ -410,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:30:38 GMT + - Fri, 28 Jan 2022 16:26:23 GMT expires: - '-1' pragma: @@ -456,7 +456,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:30:38 GMT + - Fri, 28 Jan 2022 16:26:23 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml index 81fb77678aa..226e73ca7f0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:32 GMT + - Fri, 28 Jan 2022 16:25:13 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0181faec-856b-40f6-bc40-5810c941711e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28298f72-d253-4f0a-b6c1-5a4a2171bd75?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:33 GMT + - Fri, 28 Jan 2022 16:25:13 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0181faec-856b-40f6-bc40-5810c941711e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28298f72-d253-4f0a-b6c1-5a4a2171bd75?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0181faec-856b-40f6-bc40-5810c941711e\",\r\n - \ \"name\": \"0181faec-856b-40f6-bc40-5810c941711e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28298f72-d253-4f0a-b6c1-5a4a2171bd75\",\r\n + \ \"name\": \"28298f72-d253-4f0a-b6c1-5a4a2171bd75\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:50 GMT + - Fri, 28 Jan 2022 16:25:30 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:50 GMT + - Fri, 28 Jan 2022 16:25:31 GMT expires: - '-1' pragma: @@ -247,12 +247,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,12 +267,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-33-daedb\"\r\n}" + \"2022-01-28-16-25-14-94ea7\"\r\n}" headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:51 GMT + - Fri, 28 Jan 2022 16:25:33 GMT expires: - '-1' pragma: @@ -315,12 +315,12 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -335,12 +335,12 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-21-20-29-33-daedb\"\r\n}" + \"2022-01-28-16-25-14-94ea7\"\r\n}" headers: cache-control: - no-cache @@ -349,7 +349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:53 GMT + - Fri, 28 Jan 2022 16:25:33 GMT expires: - '-1' pragma: @@ -387,8 +387,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-33-daedb\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-33-daedb\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -403,9 +403,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:32.9276192Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:32.9276192Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -416,7 +416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:53 GMT + - Fri, 28 Jan 2022 16:25:34 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:54 GMT + - Fri, 28 Jan 2022 16:25:34 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index 2571f0dee12..2fe345e84d2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:35 GMT + - Fri, 28 Jan 2022 16:25:17 GMT expires: - '-1' pragma: @@ -86,14 +86,14 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b6339fe7-c757-4540-be21-4fb75d936a86?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d0195fd0-31d8-4002-ae8c-98ac19fee668?api-version=2021-05-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:36 GMT + - Fri, 28 Jan 2022 16:25:17 GMT expires: - '-1' pragma: @@ -133,11 +133,11 @@ interactions: User-Agent: - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b6339fe7-c757-4540-be21-4fb75d936a86?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d0195fd0-31d8-4002-ae8c-98ac19fee668?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b6339fe7-c757-4540-be21-4fb75d936a86\",\r\n - \ \"name\": \"b6339fe7-c757-4540-be21-4fb75d936a86\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d0195fd0-31d8-4002-ae8c-98ac19fee668\",\r\n + \ \"name\": \"d0195fd0-31d8-4002-ae8c-98ac19fee668\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:53 GMT + - Fri, 28 Jan 2022 16:25:34 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -200,9 +200,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:53 GMT + - Fri, 28 Jan 2022 16:25:35 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -267,9 +267,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -280,7 +280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:55 GMT + - Fri, 28 Jan 2022 16:25:36 GMT expires: - '-1' pragma: @@ -318,8 +318,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -334,9 +334,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:56 GMT + - Fri, 28 Jan 2022 16:25:37 GMT expires: - '-1' pragma: @@ -385,8 +385,8 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-21-20-29-37-a72fc\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-21-20-29-37-a72fc\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": @@ -401,9 +401,9 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-21T20:29:36.4935066Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-21T20:29:36.4935066Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jan 2022 20:29:56 GMT + - Fri, 28 Jan 2022 16:25:37 GMT expires: - '-1' pragma: @@ -460,7 +460,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Jan 2022 20:29:57 GMT + - Fri, 28 Jan 2022 16:25:38 GMT expires: - '-1' pragma: From 7a525ced98c6610d1fdf22cdcfe6eae9bb46be43 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 31 Jan 2022 16:23:36 -0500 Subject: [PATCH 055/139] Fixed some bugs and ready for first release, 0.1.4 [tested] --- .../cli/command_modules/resource/_help.py | 10 +- .../cli/command_modules/resource/_params.py | 7 +- .../command_modules/resource/_validators.py | 2 - .../cli/command_modules/resource/custom.py | 87 ++-- ...reate_deployment_stack_resource_group.yaml | 487 ++++++++---------- ..._create_deployment_stack_subscription.yaml | 403 +++++++++------ ...elete_deployment_stack_resource_group.yaml | 194 +++---- ...loyment_stack_snapshot_resource_group.yaml | 331 ++++++------ ...eployment_stack_snapshot_subscription.yaml | 415 ++++++++------- ..._delete_deployment_stack_subscription.yaml | 260 ++++++---- ..._list_deployment_stack_resource_group.yaml | 96 ++-- ...loyment_stack_snapshot_resource_group.yaml | 117 +++-- ...eployment_stack_snapshot_subscription.yaml | 117 +++-- ...st_list_deployment_stack_subscription.yaml | 119 +++-- ..._show_deployment_stack_resource_group.yaml | 113 ++-- ...loyment_stack_snapshot_resource_group.yaml | 119 +++-- ...eployment_stack_snapshot_subscription.yaml | 123 +++-- ...st_show_deployment_stack_subscription.yaml | 113 ++-- .../resource/tests/latest/test_resource.py | 4 +- 19 files changed, 1685 insertions(+), 1432 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 534e272b229..40c72a3d57d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2571,7 +2571,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.0.0) Manage deployment stacks at subscription or resource group scope +short-summary: (Version 0.1.4) Manage deployment stacks at subscription or resource group scope """ helps['stack sub create'] = """ @@ -2590,6 +2590,10 @@ text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" - name: Create a deployment stack and deploy at the resource group scope. text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --resource-group "ResourceGroup" --description "description" + - name: Create a deployment stack using parameters from key/value pairs + text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar + - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. + text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" """ helps['stack sub list'] = """ @@ -2634,6 +2638,10 @@ text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" - name: Create a deployment stack at a different subscription text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" + - name: Create a deployment stack using parameters from key/value pairs + text: az stack group create --name "StackName" --template-file simpleTemplate.json --resource-group "ResourceGroup" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar + - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. + text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group "ResourceGroup" """ helps['stack group list'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 01d4f047d5f..3ae63e9312c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -99,7 +99,6 @@ def load_arguments(self, _): stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_update_behavior_type = CLIArgumentType(options_list=['--update-behavior'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') - stacks_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], help='The parameter file path for template.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') @@ -649,8 +648,7 @@ def load_arguments(self, _): c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) - c.argument('parameters', arg_type=stacks_parameters_type) - c.argument('param_uri', options_list=['--params-uri'], help='The parameter uri that holds parameter file.') + c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('update_behavior', arg_type=stacks_update_behavior_type) c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) @@ -671,8 +669,7 @@ def load_arguments(self, _): c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) - c.argument('parameters', arg_type=stacks_parameters_type) - c.argument('param_uri', options_list=['--params-uri'], help='The parameter uri that holds parameter file.') + c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('update_behavior', arg_type=stacks_update_behavior_type) c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index 37066ce7622..0efa1758e92 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -46,8 +46,6 @@ def _validate_template_spec_out(namespace): def validate_deployment_stack_files(namespace): if namespace.template_file and not os.path.isfile(namespace.template_file): raise InvalidArgumentValueError('Please enter a valid template file path') - if namespace.parameters and not os.path.isfile(namespace.parameters): - raise InvalidArgumentValueError('Please enter a valid parameter file path') def _validate_deployment_name_with_template_specs(namespace): diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 5a3d9c353b3..58e5e126eb4 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2083,7 +2083,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior = None, resource_group = None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): +def create_deployment_stack_at_subscription(cmd, name, location, update_behavior = None, resource_group = None, template_file = None, template_spec = None, template_uri = None, parameters = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if not update_behavior: update_behavior = "detachResources" @@ -2107,11 +2107,11 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior else: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group - t_spec, t_uri, t_file = None, None, None - p_uri, parameters = None, None + t_spec, t_uri = None, None + template_obj = None if template_file: - t_file = template_file + pass elif template_spec: t_spec = template_spec elif template_uri: @@ -2119,35 +2119,36 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - if parameters: - parameters = json.load(open(parameters)) - elif param_uri: - p_uri = "'" + param_uri + "'" - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link + api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] elif t_uri: deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link + template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: - if is_bicep_file(t_file): - template_content = run_bicep_command(["build", "--stdout", t_file]) - input_content = _remove_comments_from_json(template_content, file_path=t_file) - input_template = json.loads(json.dumps(input_content)) + template_content = ( + run_bicep_command(["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) + template_obj = _remove_comments_from_json(template_content, file_path=template_file) + if is_bicep_file(template_file): + deployment_stack_model.template = json.loads(json.dumps(template_obj)) else: - input_template = json.load(open(t_file)) - - deployment_stack_model.template = input_template + deployment_stack_model.template = json.load(open(template_file)) - if p_uri: - parameters_link = rcf.deployment_stacks.models.DeploymentStacksParametersLink(uri = param_uri) - deployment_stack_model.parameters_link = parameters_link - elif parameters: - deployment_stack_model.parameters = parameters + template_param_defs = template_obj.get('parameters', {}) + template_obj['resources'] = template_obj.get('resources', []) + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters) + parameters = json.loads(json.dumps(parameters)) + deployment_stack_model.parameters = parameters return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) @@ -2186,7 +2187,7 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None): raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, template_file = None, template_spec = None, template_uri = None, parameters = None, param_uri = None, description = None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, template_file = None, template_spec = None, template_uri = None, parameters = None, description = None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if not update_behavior: update_behavior = "detachResources" @@ -2201,11 +2202,11 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ pass except: pass - t_spec, t_uri, t_file = None, None, None - parameters, p_uri = None, None + t_spec, t_uri = None, None + template_obj = None if template_file: - t_file = template_file + pass elif template_spec: t_spec = template_spec elif template_uri: @@ -2213,36 +2214,36 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - if parameters: - parameters = json.load(open(parameters)) - elif param_uri: - p_uri = param_uri - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, update_behavior = update_behavior) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link + api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] elif t_uri: deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link + template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: - if is_bicep_file(t_file): - template_content = run_bicep_command(["build", "--stdout", t_file]) - input_content = _remove_comments_from_json(template_content, file_path=t_file) - input_template = json.loads(json.dumps(input_content)) + template_content = ( + run_bicep_command(["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) + template_obj = _remove_comments_from_json(template_content, file_path=template_file) + if is_bicep_file(template_file): + deployment_stack_model.template = json.loads(json.dumps(template_obj)) else: - input_template = json.load(open(t_file)) - - deployment_stack_model.template = input_template - - if p_uri: - parameters_link = rcf.deployment_stacks.models.DeploymentStacksParametersLink(uri = param_uri) - deployment_stack_model.parameters_link = parameters_link - elif parameters: - deployment_stack_model.parameters = parameters + deployment_stack_model.template = json.load(open(template_file)) + template_param_defs = template_obj.get('parameters', {}) + template_obj['resources'] = template_obj.get('resources', []) + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters) + parameters = json.loads(json.dumps(parameters)) + deployment_stack_model.parameters = parameters return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index 812c41356e9..c7e0eace521 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:31 GMT + - Mon, 31 Jan 2022 21:17:25 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:31 GMT + - Mon, 31 Jan 2022 21:17:25 GMT expires: - '-1' pragma: @@ -105,27 +105,27 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:34.3150262Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:27.507167Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:34.3150262Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:27.507167Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '632' + - '630' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:34 GMT + - Mon, 31 Jan 2022 21:17:27 GMT expires: - '-1' pragma: @@ -165,7 +165,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:35.8101176Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:28.8071549Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:35.8101176Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:28.8071549Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:35 GMT + - Mon, 31 Jan 2022 21:17:28 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:36 GMT + - Mon, 31 Jan 2022 21:17:29 GMT expires: - '-1' pragma: @@ -264,7 +264,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -275,19 +276,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -300,22 +303,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:37.0720498Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.886982Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:37.0720498Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.886982Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fafba9c8-07ca-4665-9017-249e5d91106e?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5de7ced-4b2a-4a24-b826-006332a3b26c?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1607' + - '1733' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:36 GMT + - Mon, 31 Jan 2022 21:17:29 GMT expires: - '-1' pragma: @@ -345,13 +348,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fafba9c8-07ca-4665-9017-249e5d91106e?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5de7ced-4b2a-4a24-b826-006332a3b26c?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fafba9c8-07ca-4665-9017-249e5d91106e\",\r\n - \ \"name\": \"fafba9c8-07ca-4665-9017-249e5d91106e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5de7ced-4b2a-4a24-b826-006332a3b26c\",\r\n + \ \"name\": \"b5de7ced-4b2a-4a24-b826-006332a3b26c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:53 GMT + - Mon, 31 Jan 2022 21:17:46 GMT expires: - '-1' pragma: @@ -392,14 +395,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-37-fe5eb\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-37-fe5eb\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-29-f0aee\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-29-f0aee\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -412,20 +417,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:37.0720498Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.886982Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:37.0720498Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.886982Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2220' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:53 GMT + - Mon, 31 Jan 2022 21:17:47 GMT expires: - '-1' pragma: @@ -457,14 +462,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-37-fe5eb\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-37-fe5eb\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-29-f0aee\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-29-f0aee\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -477,20 +484,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:37.0720498Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.886982Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:37.0720498Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.886982Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2220' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:55 GMT + - Mon, 31 Jan 2022 21:17:47 GMT expires: - '-1' pragma: @@ -524,7 +531,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -536,7 +543,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:23:55 GMT + - Mon, 31 Jan 2022 21:17:48 GMT expires: - '-1' pragma: @@ -566,7 +573,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -582,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:56 GMT + - Mon, 31 Jan 2022 21:17:48 GMT expires: - '-1' pragma: @@ -596,9 +603,74 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --update-behavior --template-spec --parameters + User-Agent: + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:28.8071549Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:28.8071549Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": + \"v1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 31 Jan 2022 21:17:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: '{"properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -609,37 +681,39 @@ interactions: Connection: - keep-alive Content-Length: - - '265' + - '331' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:56.2666234Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:49.3017228Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:56.2666234Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:49.3017228Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/909b7eed-8ce3-4550-a19d-3b80509aa0f9?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8a5faf71-8548-43b8-b093-6d655902b1d8?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '994' + - '1122' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:56 GMT + - Mon, 31 Jan 2022 21:17:49 GMT expires: - '-1' pragma: @@ -669,13 +743,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/909b7eed-8ce3-4550-a19d-3b80509aa0f9?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8a5faf71-8548-43b8-b093-6d655902b1d8?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/909b7eed-8ce3-4550-a19d-3b80509aa0f9\",\r\n - \ \"name\": \"909b7eed-8ce3-4550-a19d-3b80509aa0f9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8a5faf71-8548-43b8-b093-6d655902b1d8\",\r\n + \ \"name\": \"8a5faf71-8548-43b8-b093-6d655902b1d8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -684,7 +758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:13 GMT + - Mon, 31 Jan 2022 21:18:06 GMT expires: - '-1' pragma: @@ -716,30 +790,32 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-56-a8900\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-56-a8900\",\r\n - \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-49-6cee7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-49-6cee7\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:56.2666234Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:49.3017228Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:56.2666234Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:49.3017228Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1481' + - '1609' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:13 GMT + - Mon, 31 Jan 2022 21:18:06 GMT expires: - '-1' pragma: @@ -771,30 +847,32 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-56-a8900\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-23-56-a8900\",\r\n - \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-49-6cee7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-49-6cee7\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:56.2666234Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:49.3017228Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:56.2666234Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:49.3017228Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1481' + - '1609' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:13 GMT + - Mon, 31 Jan 2022 21:18:07 GMT expires: - '-1' pragma: @@ -828,7 +906,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -840,7 +918,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:13 GMT + - Mon, 31 Jan 2022 21:18:07 GMT expires: - '-1' pragma: @@ -868,9 +946,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -886,7 +964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:14 GMT + - Mon, 31 Jan 2022 21:18:07 GMT expires: - '-1' pragma: @@ -900,165 +978,6 @@ interactions: status: code: 404 message: Not Found -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://aka.ms/BicepLatestRelease - response: - body: - string: '' - headers: - cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive - content-length: - - '0' - date: - - Fri, 28 Jan 2022 16:24:16 GMT - expires: - - Fri, 28 Jan 2022 16:24:16 GMT - location: - - https://api.github.com/repos/Azure/bicep/releases/latest - pragma: - - no-cache - request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e - server: - - Kestrel - strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://api.github.com/repos/Azure/bicep/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861","assets_url":"https://api.github.com/repos/Azure/bicep/releases/55233861/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/55233861/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.4.1124","id":55233861,"author":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4DSs1F","tag_name":"v0.4.1124","target_commitish":"main","name":"v0.4.1124","draft":false,"prerelease":false,"created_at":"2021-12-13T19:47:29Z","published_at":"2021-12-15T20:05:49Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707348","id":51707348,"node_id":"RA_kwDOD7S9ks4DFP3U","name":"Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16725301,"download_count":5,"created_at":"2021-12-14T02:17:48Z","updated_at":"2021-12-14T02:17:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707343","id":51707343,"node_id":"RA_kwDOD7S9ks4DFP3P","name":"Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17200818,"download_count":4,"created_at":"2021-12-14T02:17:35Z","updated_at":"2021-12-14T02:17:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.linux-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707361","id":51707361,"node_id":"RA_kwDOD7S9ks4DFP3h","name":"Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16614333,"download_count":5,"created_at":"2021-12-14T02:18:13Z","updated_at":"2021-12-14T02:18:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707354","id":51707354,"node_id":"RA_kwDOD7S9ks4DFP3a","name":"Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17110967,"download_count":6,"created_at":"2021-12-14T02:18:00Z","updated_at":"2021-12-14T02:18:01Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.osx-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707337","id":51707337,"node_id":"RA_kwDOD7S9ks4DFP3J","name":"Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16866771,"download_count":5,"created_at":"2021-12-14T02:17:24Z","updated_at":"2021-12-14T02:17:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-arm64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707332","id":51707332,"node_id":"RA_kwDOD7S9ks4DFP3E","name":"Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17147957,"download_count":8,"created_at":"2021-12-14T02:17:13Z","updated_at":"2021-12-14T02:17:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.CommandLine.win-x64.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707286","id":51707286,"node_id":"RA_kwDOD7S9ks4DFP2W","name":"Azure.Bicep.MSBuild.0.4.1124.nupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":39343,"download_count":6,"created_at":"2021-12-14T02:16:24Z","updated_at":"2021-12-14T02:16:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707287","id":51707287,"node_id":"RA_kwDOD7S9ks4DFP2X","name":"Azure.Bicep.MSBuild.0.4.1124.snupkg","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6735,"download_count":6,"created_at":"2021-12-14T02:16:26Z","updated_at":"2021-12-14T02:16:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/Azure.Bicep.MSBuild.0.4.1124.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707288","id":51707288,"node_id":"RA_kwDOD7S9ks4DFP2Y","name":"bicep-langserver.zip","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":11060401,"download_count":12,"created_at":"2021-12-14T02:16:29Z","updated_at":"2021-12-14T02:16:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707229","id":51707229,"node_id":"RA_kwDOD7S9ks4DFP1d","name":"bicep-linux-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37102900,"download_count":20,"created_at":"2021-12-14T02:14:51Z","updated_at":"2021-12-14T02:14:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707235","id":51707235,"node_id":"RA_kwDOD7S9ks4DFP1j","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37701518,"download_count":5910,"created_at":"2021-12-14T02:15:05Z","updated_at":"2021-12-14T02:15:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707224","id":51707224,"node_id":"RA_kwDOD7S9ks4DFP1Y","name":"bicep-linux-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37806767,"download_count":74531,"created_at":"2021-12-14T02:14:34Z","updated_at":"2021-12-14T02:14:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707263","id":51707263,"node_id":"RA_kwDOD7S9ks4DFP1_","name":"bicep-osx-arm64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":36940300,"download_count":6,"created_at":"2021-12-14T02:15:47Z","updated_at":"2021-12-14T02:15:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707257","id":51707257,"node_id":"RA_kwDOD7S9ks4DFP15","name":"bicep-osx-x64","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":37857926,"download_count":2628,"created_at":"2021-12-14T02:15:31Z","updated_at":"2021-12-14T02:15:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707280","id":51707280,"node_id":"RA_kwDOD7S9ks4DFP2Q","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":15038120,"download_count":1883,"created_at":"2021-12-14T02:16:13Z","updated_at":"2021-12-14T02:16:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707302","id":51707302,"node_id":"RA_kwDOD7S9ks4DFP2m","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":37100456,"download_count":12,"created_at":"2021-12-14T02:16:42Z","updated_at":"2021-12-14T02:16:50Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707284","id":51707284,"node_id":"RA_kwDOD7S9ks4DFP2U","name":"bicep-win-x64.exe","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":36662032,"download_count":47479,"created_at":"2021-12-14T02:16:21Z","updated_at":"2021-12-14T02:16:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/51707321","id":51707321,"node_id":"RA_kwDOD7S9ks4DFP25","name":"vscode-bicep.vsix","label":"","uploader":{"login":"majastrz","id":22460039,"node_id":"MDQ6VXNlcjIyNDYwMDM5","avatar_url":"https://avatars.githubusercontent.com/u/22460039?v=4","gravatar_id":"","url":"https://api.github.com/users/majastrz","html_url":"https://github.com/majastrz","followers_url":"https://api.github.com/users/majastrz/followers","following_url":"https://api.github.com/users/majastrz/following{/other_user}","gists_url":"https://api.github.com/users/majastrz/gists{/gist_id}","starred_url":"https://api.github.com/users/majastrz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/majastrz/subscriptions","organizations_url":"https://api.github.com/users/majastrz/orgs","repos_url":"https://api.github.com/users/majastrz/repos","events_url":"https://api.github.com/users/majastrz/events{/privacy}","received_events_url":"https://api.github.com/users/majastrz/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":40760109,"download_count":182,"created_at":"2021-12-14T02:17:03Z","updated_at":"2021-12-14T02:17:05Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.4.1124/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.4.1124","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.4.1124","body":"## - Highlights\r\n\r\nBicep team:\r\n\r\n* \"Insert Resource\" command implementation - (#4945)\r\n* Implement type completions & validation for resource `list*()` - functions (#5145). You will now get completions for cases like:\r\n \r\n ```bicep\r\n resource - stg ''Microsoft.Storage/storageAccounts@2019-04-01'' = { ... }\r\n\r\n var - keys = stg.\r\n ```\r\n\r\n* Updated to .net 6 (#4936)\r\n* Add ability to - suppress next line diagnostics inline (#5107). For example:\r\n \r\n ```bicep\r\n #disable-next-line - BCP081\r\n resource stg ''Microsoft.Storage/storageAccounts@2024-01-01'' - existing = {\r\n name: ''foo''\r\n }\r\n ```\r\n* Visualizer improvements - (#5158)\r\n* New linter rules\r\n * no-unnecessary-dependson (#4838)\r\n * - linter: use-protectedsettings-for-commandtoexecute-secrets (#4925)\r\n * - linter rule: outputs-should-not-contain-secrets (#4716)\r\n * Linter rule - to use stable VM image (#4883)\r\n* Added descriptions for function completions. - (#5398)\r\n* removing docs from github repo (#4978)\r\n * All docs now available - at https://aka.ms/bicep\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n\r\n* - Update error message for `if()` & add `if-else` snippet (#5302)\r\n* Improve - parser handling of single-line array/object (#4956)\r\n* Migrate brew to https://github.com/Azure/homebrew-bicep - (#5039)\r\n* Fix highlight.js finding keywords in strings (#5128)\r\n* Add - other useful CLI utils to devcontainer (#5137)\r\n* Remove \"preview\" flag - from VSCode extension (#5140)\r\n* Flow declared type information to function - arguments (#5188)\r\n* Speed up playground (#5300)\r\n* bicep restore now - logs restore failure diagnostics (#4985)\r\n* support digests in `br` module - references (#5024)\r\n* Updated to c# 10 (#5198)\r\n* added win-arm64, linux-arm64, - and osx-arm64 targets (#5346)\r\n* Fix an issue where module references are - not refreshed when cloud config changes (#4916)\r\n* Allow publishing modules - with aliases (#4926)\r\n* Implement go2def for module references with aliases - (#4934)\r\n* Add telemetry for all registered commands (#5218)\r\n* RG().location/et - al => location param in snippets (#5226)\r\n* Added support for description - upon completions (#4999)\r\n* Improve `string` + `string` error message (#5075)\r\n* - Cleaned up description decorator logic to allow loops (#5160)\r\n* Improve - test execution time (#4889)\r\n* Remove light bulb that allows disabling linter - rules in the bicep.config (#5314)\r\n* Update disable next line string in - light bulb (#5332)\r\n* Add telemetry for linter rule changes in bicepconfig.json - (#5312)\r\n* Log telemetry about linter state on bicep file open (#5352)\r\n* - Updated linter related telemetry event names (#5369)\r\n* Log telemetry on - bicep file open (#5373)\r\n\r\n\r\n@polatengin\r\n* adding devcontainer support - (#4974)\r\n\r\n@GKotfis\r\n* Increase exposure of ''Open Visualizer'' command - in context menus (#4977)\r\n\r\n@wedoazure\r\n* updated Networking visualizer - icons (#5130)\r\n* Updated Compute and Web visualizer icons (#5168)\r\n* database, - security, storage visualizer icons (#5203)\r\n* updated ai, analytics, containers, - devops and identity Visualizer icons (#5240)\r\n\r\n@miqm\r\n* Allow using - parameter as value for a discriminator property (#4887)\r\n\r\n@stan-sz\r\n* - Update required SDK (#5274)\r\n* Update the PackageProjectUrl (#5235)\r\n* - Bicep nuget packages fixes (#5254)\r\n* Fix access to the same test file (#5329)\r\n\r\n## - Docs and snippet updates\r\n\r\n@johndowns\r\n* Update Cosmos DB snippets - (#5038)\r\n\r\n@johnnyreilly\r\n* fix: correct \"as\" typo to \"at\" (#5182)\r\n\r\n@StefanIvemo\r\n* - Added --no-restore to CLI help (#5385)\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/55233861/reactions","total_count":5,"+1":0,"-1":0,"laugh":0,"hooray":3,"confused":0,"heart":0,"rocket":2,"eyes":0},"mentions_count":8}' - headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' - access-control-expose-headers: - - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, - X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, - X-GitHub-Request-Id, Deprecation, Sunset - cache-control: - - public, max-age=60, s-maxage=60 - content-length: - - '30225' - content-security-policy: - - default-src 'none' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jan 2022 16:24:14 GMT - etag: - - W/"9bdb193d7ccb618fee25d999d8d9c47a195da05ad6a50195434cb9c0a2b7c837" - last-modified: - - Wed, 15 Dec 2021 20:05:49 GMT - referrer-policy: - - origin-when-cross-origin, strict-origin-when-cross-origin - server: - - GitHub.com - strict-transport-security: - - max-age=31536000; includeSubdomains; preload - vary: - - Accept, Accept-Encoding, Accept, X-Requested-With - x-content-type-options: - - nosniff - x-frame-options: - - deny - x-github-media-type: - - github.v3; format=json - x-github-request-id: - - E312:0C60:C0EDAD:1794C89:61F418B0 - x-ratelimit-limit: - - '60' - x-ratelimit-remaining: - - '59' - x-ratelimit-reset: - - '1643390656' - x-ratelimit-resource: - - core - x-ratelimit-used: - - '1' - x-xss-protection: - - '0' - status: - code: 200 - message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": @@ -1069,7 +988,7 @@ interactions: "apiVersion": "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', parameters(''storageAccountName''))]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {}, "updateBehavior": "detachResources"}}' headers: Accept: - application/json @@ -1080,19 +999,19 @@ interactions: Connection: - keep-alive Content-Length: - - '827' + - '845' Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n @@ -1108,22 +1027,22 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:18.4930239Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:10.7531098Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:18.4930239Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:10.7531098Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1eda9c3-cc56-4eea-9fbe-3c894dfec057?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1899' + - '1922' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:17 GMT + - Mon, 31 Jan 2022 21:18:10 GMT expires: - '-1' pragma: @@ -1135,7 +1054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1151,15 +1070,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1eda9c3-cc56-4eea-9fbe-3c894dfec057?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1eda9c3-cc56-4eea-9fbe-3c894dfec057\",\r\n - \ \"name\": \"b1eda9c3-cc56-4eea-9fbe-3c894dfec057\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3\",\r\n + \ \"name\": \"2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1168,7 +1087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:34 GMT + - Mon, 31 Jan 2022 21:18:27 GMT expires: - '-1' pragma: @@ -1198,16 +1117,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-18-0cb52\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-24-18-0cb52\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-10-6c1f6\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-18-10-6c1f6\",\r\n + \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n @@ -1225,20 +1144,20 @@ interactions: \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:18.4930239Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:10.7531098Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:18.4930239Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:10.7531098Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2616' + - '2639' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:35 GMT + - Mon, 31 Jan 2022 21:18:27 GMT expires: - '-1' pragma: @@ -1270,14 +1189,14 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-18-0cb52\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-28-16-24-18-0cb52\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-10-6c1f6\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-18-10-6c1f6\",\r\n + \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n @@ -1295,20 +1214,20 @@ interactions: \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:18.4930239Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:10.7531098Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:18.4930239Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:10.7531098Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2616' + - '2639' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:36 GMT + - Mon, 31 Jan 2022 21:18:28 GMT expires: - '-1' pragma: @@ -1342,7 +1261,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -1354,7 +1273,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:36 GMT + - Mon, 31 Jan 2022 21:18:28 GMT expires: - '-1' pragma: @@ -1366,7 +1285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 0cca00be473..d8986e87311 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:27 GMT + - Mon, 31 Jan 2022 21:17:26 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:27 GMT + - Mon, 31 Jan 2022 21:17:26 GMT expires: - '-1' pragma: @@ -105,16 +105,16 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:29.3810721Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:28.1241968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:29.3810721Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:28.1241968Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:29 GMT + - Mon, 31 Jan 2022 21:17:28 GMT expires: - '-1' pragma: @@ -137,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -165,7 +165,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:31.6761119Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.2792377Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:31.6761119Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.2792377Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:31 GMT + - Mon, 31 Jan 2022 21:17:29 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -227,7 +227,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:31 GMT + - Mon, 31 Jan 2022 21:17:30 GMT expires: - '-1' pragma: @@ -263,7 +263,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -274,20 +275,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -300,22 +303,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:32.8544679Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:30.5706027Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:32.8544679Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:30.5706027Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ab1f18e-4298-44e8-b9dd-d55be71b00de?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/381ce7eb-077a-4b70-aeda-a2aded0762dd?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1660' + - '1788' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:32 GMT + - Mon, 31 Jan 2022 21:17:30 GMT expires: - '-1' pragma: @@ -345,13 +348,13 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ab1f18e-4298-44e8-b9dd-d55be71b00de?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/381ce7eb-077a-4b70-aeda-a2aded0762dd?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ab1f18e-4298-44e8-b9dd-d55be71b00de\",\r\n - \ \"name\": \"5ab1f18e-4298-44e8-b9dd-d55be71b00de\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/381ce7eb-077a-4b70-aeda-a2aded0762dd\",\r\n + \ \"name\": \"381ce7eb-077a-4b70-aeda-a2aded0762dd\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -360,7 +363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:50 GMT + - Mon, 31 Jan 2022 21:17:48 GMT expires: - '-1' pragma: @@ -392,16 +395,18 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-33-b0476\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-33-b0476\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-31-92d72\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-31-92d72\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -414,20 +419,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:32.8544679Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:30.5706027Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:32.8544679Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:30.5706027Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:50 GMT + - Mon, 31 Jan 2022 21:17:48 GMT expires: - '-1' pragma: @@ -459,16 +464,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-33-b0476\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-33-b0476\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-31-92d72\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-31-92d72\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -481,20 +488,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:32.8544679Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:30.5706027Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:32.8544679Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:30.5706027Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:51 GMT + - Mon, 31 Jan 2022 21:17:49 GMT expires: - '-1' pragma: @@ -528,7 +535,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -540,7 +547,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:23:51 GMT + - Mon, 31 Jan 2022 21:17:50 GMT expires: - '-1' pragma: @@ -570,7 +577,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -585,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:52 GMT + - Mon, 31 Jan 2022 21:17:51 GMT expires: - '-1' pragma: @@ -599,9 +606,74 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --update-behavior --location --template-spec --parameters + User-Agent: + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.2792377Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.2792377Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": + \"v1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 31 Jan 2022 21:17:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -612,38 +684,40 @@ interactions: Connection: - keep-alive Content-Length: - - '362' + - '428' Content-Type: - application/json ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:53.6749156Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:51.8729728Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:53.6749156Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:51.8729728Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d86fc3f8-2288-4c8e-823c-08a393a9a8e8?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ee0f177a-bb9e-4f1f-9394-de09cc7209a1?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1047' + - '1175' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:53 GMT + - Mon, 31 Jan 2022 21:17:52 GMT expires: - '-1' pragma: @@ -673,13 +747,13 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d86fc3f8-2288-4c8e-823c-08a393a9a8e8?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ee0f177a-bb9e-4f1f-9394-de09cc7209a1?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d86fc3f8-2288-4c8e-823c-08a393a9a8e8\",\r\n - \ \"name\": \"d86fc3f8-2288-4c8e-823c-08a393a9a8e8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ee0f177a-bb9e-4f1f-9394-de09cc7209a1\",\r\n + \ \"name\": \"ee0f177a-bb9e-4f1f-9394-de09cc7209a1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -688,7 +762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:11 GMT + - Mon, 31 Jan 2022 21:18:09 GMT expires: - '-1' pragma: @@ -720,32 +794,34 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-spec --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-54-986fb\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-54-986fb\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-52-2d700\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-52-2d700\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:53.6749156Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:51.8729728Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:53.6749156Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:51.8729728Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1436' + - '1564' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:11 GMT + - Mon, 31 Jan 2022 21:18:09 GMT expires: - '-1' pragma: @@ -777,32 +853,34 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-23-54-986fb\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-23-54-986fb\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-52-2d700\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-52-2d700\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:53.6749156Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:51.8729728Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:53.6749156Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:51.8729728Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1436' + - '1564' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:12 GMT + - Mon, 31 Jan 2022 21:18:10 GMT expires: - '-1' pragma: @@ -836,7 +914,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -848,7 +926,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:12 GMT + - Mon, 31 Jan 2022 21:18:10 GMT expires: - '-1' pragma: @@ -878,7 +956,7 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -893,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:13 GMT + - Mon, 31 Jan 2022 21:18:11 GMT expires: - '-1' pragma: @@ -914,7 +992,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' headers: Accept: - application/json @@ -925,20 +1004,22 @@ interactions: Connection: - keep-alive Content-Length: - - '721' + - '787' Content-Type: - application/json ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -951,22 +1032,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:14.4546207Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:12.230118Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:14.4546207Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:12.230118Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd006257-0438-4a3b-b6fd-58b8b57d8081?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02298c73-7e08-434e-be70-71690ea65979?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1708' + - '1834' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:14 GMT + - Mon, 31 Jan 2022 21:18:11 GMT expires: - '-1' pragma: @@ -978,7 +1059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -996,13 +1077,13 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd006257-0438-4a3b-b6fd-58b8b57d8081?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02298c73-7e08-434e-be70-71690ea65979?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd006257-0438-4a3b-b6fd-58b8b57d8081\",\r\n - \ \"name\": \"dd006257-0438-4a3b-b6fd-58b8b57d8081\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02298c73-7e08-434e-be70-71690ea65979\",\r\n + \ \"name\": \"02298c73-7e08-434e-be70-71690ea65979\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1011,7 +1092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:32 GMT + - Mon, 31 Jan 2022 21:18:29 GMT expires: - '-1' pragma: @@ -1043,16 +1124,18 @@ interactions: ParameterSetName: - --name --update-behavior --location --template-file --resource-group --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-15-0d222\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-15-0d222\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-12-1df36\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-12-1df36\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1065,20 +1148,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:14.4546207Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:12.230118Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:14.4546207Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:12.230118Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2145' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:32 GMT + - Mon, 31 Jan 2022 21:18:30 GMT expires: - '-1' pragma: @@ -1110,16 +1193,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-15-0d222\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-15-0d222\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-12-1df36\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-12-1df36\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1132,20 +1217,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:14.4546207Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:12.230118Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:14.4546207Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:12.230118Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2145' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:33 GMT + - Mon, 31 Jan 2022 21:18:31 GMT expires: - '-1' pragma: @@ -1179,7 +1264,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1191,7 +1276,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:34 GMT + - Mon, 31 Jan 2022 21:18:31 GMT expires: - '-1' pragma: @@ -1219,9 +1304,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters -g + - --name --location --template-file -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1236,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:34 GMT + - Mon, 31 Jan 2022 21:18:31 GMT expires: - '-1' pragma: @@ -1260,7 +1345,7 @@ interactions: "apiVersion": "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', parameters(''storageAccountName''))]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' + "parameters": {}, "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' headers: Accept: - application/json @@ -1271,20 +1356,20 @@ interactions: Connection: - keep-alive Content-Length: - - '972' + - '990' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters -g + - --name --location --template-file -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n @@ -1300,22 +1385,22 @@ interactions: \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:37.7651958Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:35.0078982Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:37.7651958Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:35.0078982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b64d815-b19e-477f-824b-1d5cc9cf1088?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ccc49d06-4e79-4e48-b0d9-b56574e81298?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '2000' + - '2023' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:37 GMT + - Mon, 31 Jan 2022 21:18:34 GMT expires: - '-1' pragma: @@ -1343,15 +1428,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters -g + - --name --location --template-file -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b64d815-b19e-477f-824b-1d5cc9cf1088?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ccc49d06-4e79-4e48-b0d9-b56574e81298?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b64d815-b19e-477f-824b-1d5cc9cf1088\",\r\n - \ \"name\": \"2b64d815-b19e-477f-824b-1d5cc9cf1088\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ccc49d06-4e79-4e48-b0d9-b56574e81298\",\r\n + \ \"name\": \"ccc49d06-4e79-4e48-b0d9-b56574e81298\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1360,7 +1445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:54 GMT + - Mon, 31 Jan 2022 21:18:51 GMT expires: - '-1' pragma: @@ -1390,18 +1475,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters -g + - --name --location --template-file -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-38-21ae3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-38-21ae3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-35-877b7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-35-877b7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n @@ -1419,20 +1504,20 @@ interactions: \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:37.7651958Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:35.0078982Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:37.7651958Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:35.0078982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2667' + - '2690' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:54 GMT + - Mon, 31 Jan 2022 21:18:52 GMT expires: - '-1' pragma: @@ -1464,16 +1549,16 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-28-16-24-38-21ae3\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-28-16-24-38-21ae3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-35-877b7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-35-877b7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n @@ -1491,20 +1576,20 @@ interactions: \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:37.7651958Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:35.0078982Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:37.7651958Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:35.0078982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2667' + - '2690' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:56 GMT + - Mon, 31 Jan 2022 21:18:53 GMT expires: - '-1' pragma: @@ -1538,7 +1623,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview response: @@ -1550,7 +1635,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:56 GMT + - Mon, 31 Jan 2022 21:18:53 GMT expires: - '-1' pragma: @@ -1562,7 +1647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index 68d0e1ef3ea..3b937156466 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:27 GMT + - Mon, 31 Jan 2022 21:17:25 GMT expires: - '-1' pragma: @@ -50,7 +50,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -61,19 +62,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3dcf1cf-32c9-43c3-aca9-365594821f1c?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9c8466f-b5ed-441a-ae68-7323778929cf?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1607' + - '1735' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:27 GMT + - Mon, 31 Jan 2022 21:17:26 GMT expires: - '-1' pragma: @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3dcf1cf-32c9-43c3-aca9-365594821f1c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9c8466f-b5ed-441a-ae68-7323778929cf?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3dcf1cf-32c9-43c3-aca9-365594821f1c\",\r\n - \ \"name\": \"e3dcf1cf-32c9-43c3-aca9-365594821f1c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9c8466f-b5ed-441a-ae68-7323778929cf\",\r\n + \ \"name\": \"d9c8466f-b5ed-441a-ae68-7323778929cf\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:44 GMT + - Mon, 31 Jan 2022 21:17:43 GMT expires: - '-1' pragma: @@ -178,14 +181,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-27-cfa15\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-27-cfa15\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-26-b9e63\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-26-b9e63\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -198,20 +203,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2222' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:44 GMT + - Mon, 31 Jan 2022 21:17:43 GMT expires: - '-1' pragma: @@ -243,14 +248,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-27-cfa15\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-27-cfa15\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-26-b9e63\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-26-b9e63\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -263,20 +270,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2222' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:44 GMT + - Mon, 31 Jan 2022 21:17:43 GMT expires: - '-1' pragma: @@ -308,14 +315,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-27-cfa15\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-27-cfa15\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-26-b9e63\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-26-b9e63\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -328,20 +337,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.4045879Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.4045879Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2222' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:45 GMT + - Mon, 31 Jan 2022 21:17:44 GMT expires: - '-1' pragma: @@ -375,7 +384,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -387,7 +396,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:23:45 GMT + - Mon, 31 Jan 2022 21:17:44 GMT expires: - '-1' pragma: @@ -417,7 +426,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -431,7 +440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:46 GMT + - Mon, 31 Jan 2022 21:17:44 GMT expires: - '-1' pragma: @@ -463,7 +472,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -479,7 +488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:47 GMT + - Mon, 31 Jan 2022 21:17:45 GMT expires: - '-1' pragma: @@ -500,7 +509,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -511,19 +521,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -536,22 +548,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f422dd57-78f3-4f21-b8be-06b06c746010?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1bd37dde-f431-478b-ae49-99fb814990ba?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1607' + - '1735' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:47 GMT + - Mon, 31 Jan 2022 21:17:46 GMT expires: - '-1' pragma: @@ -581,13 +593,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f422dd57-78f3-4f21-b8be-06b06c746010?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1bd37dde-f431-478b-ae49-99fb814990ba?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f422dd57-78f3-4f21-b8be-06b06c746010\",\r\n - \ \"name\": \"f422dd57-78f3-4f21-b8be-06b06c746010\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1bd37dde-f431-478b-ae49-99fb814990ba\",\r\n + \ \"name\": \"1bd37dde-f431-478b-ae49-99fb814990ba\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -596,7 +608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:04 GMT + - Mon, 31 Jan 2022 21:18:03 GMT expires: - '-1' pragma: @@ -628,14 +640,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-47-4dc1d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-47-4dc1d\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-46-5940f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-46-5940f\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -648,20 +662,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2222' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:04 GMT + - Mon, 31 Jan 2022 21:18:03 GMT expires: - '-1' pragma: @@ -693,14 +707,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-47-4dc1d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-47-4dc1d\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-46-5940f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-46-5940f\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -713,20 +729,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2222' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:05 GMT + - Mon, 31 Jan 2022 21:18:04 GMT expires: - '-1' pragma: @@ -758,14 +774,16 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-28-16-23-47-4dc1d\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-28-16-23-47-4dc1d\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-46-5940f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-46-5940f\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -778,20 +796,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:47.7321485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:47.7321485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2094' + - '2222' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:06 GMT + - Mon, 31 Jan 2022 21:18:05 GMT expires: - '-1' pragma: @@ -825,7 +843,7 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -837,7 +855,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:06 GMT + - Mon, 31 Jan 2022 21:18:05 GMT expires: - '-1' pragma: @@ -867,7 +885,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -881,7 +899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:06 GMT + - Mon, 31 Jan 2022 21:18:05 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml index 81682bcd2c0..7c76a6ed59f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:27 GMT + - Mon, 31 Jan 2022 21:17:26 GMT expires: - '-1' pragma: @@ -50,7 +50,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -61,19 +62,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.6973876Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5eecc412-95de-4960-9fc2-a8b8a99dc6ac?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1625' + - '1753' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:27 GMT + - Mon, 31 Jan 2022 21:17:26 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5eecc412-95de-4960-9fc2-a8b8a99dc6ac?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5\",\r\n - \ \"name\": \"4a4f9a29-35df-4e1c-a785-5d1d4a62a4b5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5eecc412-95de-4960-9fc2-a8b8a99dc6ac\",\r\n + \ \"name\": \"5eecc412-95de-4960-9fc2-a8b8a99dc6ac\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:44 GMT + - Mon, 31 Jan 2022 21:17:43 GMT expires: - '-1' pragma: @@ -178,14 +181,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-26-d6ad3\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -198,20 +203,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.6973876Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2249' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:44 GMT + - Mon, 31 Jan 2022 21:17:43 GMT expires: - '-1' pragma: @@ -243,14 +248,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-26-d6ad3\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -263,20 +270,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.6973876Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2249' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:45 GMT + - Mon, 31 Jan 2022 21:17:44 GMT expires: - '-1' pragma: @@ -301,7 +308,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -312,19 +320,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -337,22 +347,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:44.9152017Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a9784202-6fb2-49d8-99db-84298f6865ab?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/582bb07b-6033-4786-be9a-b3ed7bff8b67?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1625' + - '1753' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:23:45 GMT + - Mon, 31 Jan 2022 21:17:44 GMT expires: - '-1' pragma: @@ -386,13 +396,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a9784202-6fb2-49d8-99db-84298f6865ab?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/582bb07b-6033-4786-be9a-b3ed7bff8b67?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a9784202-6fb2-49d8-99db-84298f6865ab\",\r\n - \ \"name\": \"a9784202-6fb2-49d8-99db-84298f6865ab\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/582bb07b-6033-4786-be9a-b3ed7bff8b67\",\r\n + \ \"name\": \"582bb07b-6033-4786-be9a-b3ed7bff8b67\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:02 GMT + - Mon, 31 Jan 2022 21:18:02 GMT expires: - '-1' pragma: @@ -433,14 +443,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-44-8b7a4\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -453,20 +465,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:44.9152017Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2249' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:02 GMT + - Mon, 31 Jan 2022 21:18:02 GMT expires: - '-1' pragma: @@ -498,15 +510,17 @@ interactions: ParameterSetName: - --name --stack-name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-26-d6ad3\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -519,21 +533,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.6973876Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-23-27-6496c\"\r\n}" + \"2022-01-31-21-17-26-d6ad3\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '2077' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:03 GMT + - Mon, 31 Jan 2022 21:18:03 GMT expires: - '-1' pragma: @@ -565,15 +579,17 @@ interactions: ParameterSetName: - --name --stack-name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-27-6496c\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-26-d6ad3\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -586,21 +602,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:27.6617846Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.6973876Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-23-27-6496c\"\r\n}" + \"2022-01-31-21-17-26-d6ad3\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '2077' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:03 GMT + - Mon, 31 Jan 2022 21:18:02 GMT expires: - '-1' pragma: @@ -634,9 +650,9 @@ interactions: ParameterSetName: - --name --stack-name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-27-6496c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-26-d6ad3?api-version=2021-05-01-preview response: body: string: '' @@ -646,7 +662,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:04 GMT + - Mon, 31 Jan 2022 21:18:03 GMT expires: - '-1' pragma: @@ -676,7 +692,7 @@ interactions: ParameterSetName: - --stack-name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -684,8 +700,11 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-44-8b7a4\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -700,21 +719,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:23:45.8572378Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:17:44.9152017Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:17:44.9152017Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-23-45-84f06\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-17-44-8b7a4\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2194' + - '2354' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:04 GMT + - Mon, 31 Jan 2022 21:18:03 GMT expires: - '-1' pragma: @@ -746,14 +765,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-44-8b7a4\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -766,20 +787,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:44.9152017Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2249' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:05 GMT + - Mon, 31 Jan 2022 21:18:05 GMT expires: - '-1' pragma: @@ -804,7 +825,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -815,19 +837,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -840,22 +864,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:06.0349581Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:05.3383171Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b78c1313-46f2-4252-bc59-f885bc2b11ec?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b0e16ca5-4185-4d90-b014-3594da448302?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1625' + - '1753' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:05 GMT + - Mon, 31 Jan 2022 21:18:05 GMT expires: - '-1' pragma: @@ -889,13 +913,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b78c1313-46f2-4252-bc59-f885bc2b11ec?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b0e16ca5-4185-4d90-b014-3594da448302?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b78c1313-46f2-4252-bc59-f885bc2b11ec\",\r\n - \ \"name\": \"b78c1313-46f2-4252-bc59-f885bc2b11ec\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b0e16ca5-4185-4d90-b014-3594da448302\",\r\n + \ \"name\": \"b0e16ca5-4185-4d90-b014-3594da448302\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -904,7 +928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:22 GMT + - Mon, 31 Jan 2022 21:18:22 GMT expires: - '-1' pragma: @@ -936,14 +960,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-06-5557f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-06-5557f\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-18-05-ce1ac\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-05-ce1ac\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -956,20 +982,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:27.6617846Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.6973876Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:06.0349581Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:05.3383171Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2121' + - '2249' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:22 GMT + - Mon, 31 Jan 2022 21:18:22 GMT expires: - '-1' pragma: @@ -1001,15 +1027,17 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-44-8b7a4\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1022,21 +1050,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:45.8572378Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:44.9152017Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:44.9152017Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-23-45-84f06\"\r\n}" + \"2022-01-31-21-17-44-8b7a4\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '2077' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:23 GMT + - Mon, 31 Jan 2022 21:18:23 GMT expires: - '-1' pragma: @@ -1068,15 +1096,17 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-23-45-84f06\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-17-44-8b7a4\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1089,21 +1119,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:23:45.8572378Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:44.9152017Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:23:45.8572378Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:44.9152017Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-23-45-84f06\"\r\n}" + \"2022-01-31-21-17-44-8b7a4\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '2077' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:24 GMT + - Mon, 31 Jan 2022 21:18:23 GMT expires: - '-1' pragma: @@ -1137,9 +1167,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-23-45-84f06?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-17-44-8b7a4?api-version=2021-05-01-preview response: body: string: '' @@ -1149,7 +1179,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:24 GMT + - Mon, 31 Jan 2022 21:18:23 GMT expires: - '-1' pragma: @@ -1179,7 +1209,7 @@ interactions: ParameterSetName: - --stack-name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -1187,8 +1217,11 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-06-5557f\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-05-ce1ac\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -1203,21 +1236,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:06.0349581Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:05.3383171Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:06.0349581Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-06-5557f\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:05.3383171Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-18-05-ce1ac\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-06-5557f\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-05-ce1ac\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2194' + - '2354' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:24 GMT + - Mon, 31 Jan 2022 21:18:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml index 2342cde114d..9251c302878 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_snapshot_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:39 GMT + - Mon, 31 Jan 2022 21:18:30 GMT expires: - '-1' pragma: @@ -49,7 +49,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -60,20 +61,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:31.5879148Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f14d051d-341d-481a-858a-cf62df7f7fbe?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cca89f38-90f4-4588-bba6-8dc1f13ce4f7?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1806' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:40 GMT + - Mon, 31 Jan 2022 21:18:31 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f14d051d-341d-481a-858a-cf62df7f7fbe?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cca89f38-90f4-4588-bba6-8dc1f13ce4f7?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f14d051d-341d-481a-858a-cf62df7f7fbe\",\r\n - \ \"name\": \"f14d051d-341d-481a-858a-cf62df7f7fbe\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cca89f38-90f4-4588-bba6-8dc1f13ce4f7\",\r\n + \ \"name\": \"cca89f38-90f4-4588-bba6-8dc1f13ce4f7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:57 GMT + - Mon, 31 Jan 2022 21:18:48 GMT expires: - '-1' pragma: @@ -178,16 +181,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-32-ee4e8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -200,20 +205,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:31.5879148Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:57 GMT + - Mon, 31 Jan 2022 21:18:48 GMT expires: - '-1' pragma: @@ -245,16 +250,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-32-ee4e8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -267,20 +274,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:31.5879148Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:58 GMT + - Mon, 31 Jan 2022 21:18:49 GMT expires: - '-1' pragma: @@ -305,7 +312,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -316,20 +324,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -342,22 +352,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.0633755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c3774036-448a-4459-a360-8b17b8e21ccd?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3bd24495-d27c-475d-9c36-91f5495a8af7?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1806' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:59 GMT + - Mon, 31 Jan 2022 21:18:51 GMT expires: - '-1' pragma: @@ -391,13 +401,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c3774036-448a-4459-a360-8b17b8e21ccd?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3bd24495-d27c-475d-9c36-91f5495a8af7?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c3774036-448a-4459-a360-8b17b8e21ccd\",\r\n - \ \"name\": \"c3774036-448a-4459-a360-8b17b8e21ccd\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3bd24495-d27c-475d-9c36-91f5495a8af7\",\r\n + \ \"name\": \"3bd24495-d27c-475d-9c36-91f5495a8af7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -406,7 +416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:16 GMT + - Mon, 31 Jan 2022 21:19:08 GMT expires: - '-1' pragma: @@ -438,16 +448,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-51-77cbc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-51-77cbc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -460,20 +472,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.0633755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:16 GMT + - Mon, 31 Jan 2022 21:19:08 GMT expires: - '-1' pragma: @@ -505,16 +517,18 @@ interactions: ParameterSetName: - --name --stack-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-32-ee4e8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -527,21 +541,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:31.5879148Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-40-16962\"\r\n}" + \"2022-01-31-21-18-32-ee4e8\"\r\n}" headers: cache-control: - no-cache content-length: - - '1930' + - '2058' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:17 GMT + - Mon, 31 Jan 2022 21:19:09 GMT expires: - '-1' pragma: @@ -573,16 +587,18 @@ interactions: ParameterSetName: - --name --stack-name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-40-16962\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-32-ee4e8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -595,21 +611,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:39.5681099Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:31.5879148Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-40-16962\"\r\n}" + \"2022-01-31-21-18-32-ee4e8\"\r\n}" headers: cache-control: - no-cache content-length: - - '1930' + - '2058' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:18 GMT + - Mon, 31 Jan 2022 21:19:10 GMT expires: - '-1' pragma: @@ -643,9 +659,9 @@ interactions: ParameterSetName: - --name --stack-name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-40-16962?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-32-ee4e8?api-version=2021-05-01-preview response: body: string: '' @@ -655,7 +671,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:18 GMT + - Mon, 31 Jan 2022 21:19:10 GMT expires: - '-1' pragma: @@ -685,7 +701,7 @@ interactions: ParameterSetName: - --stack-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -693,9 +709,12 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-51-77cbc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -710,21 +729,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:59.2013866Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:51.0633755Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:51.0633755Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-51-77cbc\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-59-4ad4f\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-51-77cbc\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2179' + - '2339' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:19 GMT + - Mon, 31 Jan 2022 21:19:10 GMT expires: - '-1' pragma: @@ -756,16 +775,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-51-77cbc\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-51-77cbc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -778,20 +799,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.0633755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:20 GMT + - Mon, 31 Jan 2022 21:19:12 GMT expires: - '-1' pragma: @@ -816,7 +837,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -827,20 +849,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -853,22 +877,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:12.6491871Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0c6999d9-a3da-4d3f-8454-cf516d43cc96?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/95e7b835-61ef-45fe-aa98-4819ff5a93aa?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1806' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:20 GMT + - Mon, 31 Jan 2022 21:19:12 GMT expires: - '-1' pragma: @@ -902,13 +926,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0c6999d9-a3da-4d3f-8454-cf516d43cc96?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/95e7b835-61ef-45fe-aa98-4819ff5a93aa?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0c6999d9-a3da-4d3f-8454-cf516d43cc96\",\r\n - \ \"name\": \"0c6999d9-a3da-4d3f-8454-cf516d43cc96\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/95e7b835-61ef-45fe-aa98-4819ff5a93aa\",\r\n + \ \"name\": \"95e7b835-61ef-45fe-aa98-4819ff5a93aa\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -917,7 +941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:37 GMT + - Mon, 31 Jan 2022 21:19:29 GMT expires: - '-1' pragma: @@ -949,16 +973,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-12-603a3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -971,20 +997,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:12.6491871Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:38 GMT + - Mon, 31 Jan 2022 21:19:29 GMT expires: - '-1' pragma: @@ -1016,16 +1042,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-12-603a3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1038,20 +1066,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:12.6491871Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:39 GMT + - Mon, 31 Jan 2022 21:19:31 GMT expires: - '-1' pragma: @@ -1076,7 +1104,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -1087,20 +1116,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1113,22 +1144,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:40.5841768Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:31.6976428Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1c3508ba-5efc-49ca-8826-a6e6b7425f0a?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0015014c-70b2-4404-957e-67b1672aaa86?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1678' + - '1806' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:40 GMT + - Mon, 31 Jan 2022 21:19:31 GMT expires: - '-1' pragma: @@ -1144,7 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1162,13 +1193,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1c3508ba-5efc-49ca-8826-a6e6b7425f0a?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0015014c-70b2-4404-957e-67b1672aaa86?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1c3508ba-5efc-49ca-8826-a6e6b7425f0a\",\r\n - \ \"name\": \"1c3508ba-5efc-49ca-8826-a6e6b7425f0a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0015014c-70b2-4404-957e-67b1672aaa86\",\r\n + \ \"name\": \"0015014c-70b2-4404-957e-67b1672aaa86\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1177,7 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:57 GMT + - Mon, 31 Jan 2022 21:19:48 GMT expires: - '-1' pragma: @@ -1209,16 +1240,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-40-dac1c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-31-cc84c\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1231,20 +1264,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:39.5681099Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:31.5879148Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:40.5841768Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:31.6976428Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2204' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:57 GMT + - Mon, 31 Jan 2022 21:19:48 GMT expires: - '-1' pragma: @@ -1276,16 +1309,18 @@ interactions: ParameterSetName: - --name --stack-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-12-603a3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1298,21 +1333,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:21.1592798Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:12.6491871Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:12.6491871Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-25-21-d8821\"\r\n}" + \"2022-01-31-21-19-12-603a3\"\r\n}" headers: cache-control: - no-cache content-length: - - '1930' + - '2058' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:59 GMT + - Mon, 31 Jan 2022 21:19:49 GMT expires: - '-1' pragma: @@ -1344,16 +1379,18 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-21-d8821\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-12-603a3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1366,21 +1403,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:21.1592798Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:12.6491871Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:21.1592798Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:12.6491871Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-25-21-d8821\"\r\n}" + \"2022-01-31-21-19-12-603a3\"\r\n}" headers: cache-control: - no-cache content-length: - - '1930' + - '2058' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:00 GMT + - Mon, 31 Jan 2022 21:19:51 GMT expires: - '-1' pragma: @@ -1414,9 +1451,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-21-d8821?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-12-603a3?api-version=2021-05-01-preview response: body: string: '' @@ -1426,7 +1463,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:26:00 GMT + - Mon, 31 Jan 2022 21:19:51 GMT expires: - '-1' pragma: @@ -1456,7 +1493,7 @@ interactions: ParameterSetName: - --stack-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -1464,9 +1501,12 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -1481,17 +1521,20 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:25:40.5841768Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:19:31.6976428Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:25:40.5841768Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-25-40-dac1c\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:19:31.6976428Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-19-31-cc84c\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-25-40-dac1c\"\r\n },\r\n {\r\n \"properties\": + \"2022-01-31-21-19-31-cc84c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \ \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-51-77cbc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -1506,21 +1549,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:59.2013866Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:51.0633755Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:59.2013866Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-59-4ad4f\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:51.0633755Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-51-77cbc\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-59-4ad4f\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-51-77cbc\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4336' + - '4656' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:01 GMT + - Mon, 31 Jan 2022 21:19:51 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index 7b869e31138..530c3eb2b75 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:59 GMT + - Mon, 31 Jan 2022 21:18:57 GMT expires: - '-1' pragma: @@ -49,7 +49,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -60,20 +61,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd1070c1-d1fd-4858-a3d9-f2803d1312fa?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3816cec9-a431-4909-9e1f-c72f88fb4d4d?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1660' + - '1788' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:00 GMT + - Mon, 31 Jan 2022 21:18:57 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd1070c1-d1fd-4858-a3d9-f2803d1312fa?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3816cec9-a431-4909-9e1f-c72f88fb4d4d?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd1070c1-d1fd-4858-a3d9-f2803d1312fa\",\r\n - \ \"name\": \"dd1070c1-d1fd-4858-a3d9-f2803d1312fa\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3816cec9-a431-4909-9e1f-c72f88fb4d4d\",\r\n + \ \"name\": \"3816cec9-a431-4909-9e1f-c72f88fb4d4d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:17 GMT + - Mon, 31 Jan 2022 21:19:14 GMT expires: - '-1' pragma: @@ -178,16 +181,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-00-aa02e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-57-120fe\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -200,20 +205,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:18 GMT + - Mon, 31 Jan 2022 21:19:15 GMT expires: - '-1' pragma: @@ -245,16 +250,18 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-00-aa02e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-57-120fe\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -267,20 +274,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:19 GMT + - Mon, 31 Jan 2022 21:19:16 GMT expires: - '-1' pragma: @@ -312,16 +319,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-00-aa02e\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-57-120fe\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -334,20 +343,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:00.4247672Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:00.4247672Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:20 GMT + - Mon, 31 Jan 2022 21:19:17 GMT expires: - '-1' pragma: @@ -381,7 +390,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -393,7 +402,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:21 GMT + - Mon, 31 Jan 2022 21:19:17 GMT expires: - '-1' pragma: @@ -405,7 +414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -421,7 +430,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -879,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:22 GMT + - Mon, 31 Jan 2022 21:19:19 GMT expires: - '-1' pragma: @@ -891,8 +900,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - c4207921-1ce8-45f3-b58f-65d1b8ab8e6c - - 21890749-ef9b-48b3-8ed4-dce6873ebcb6 + - 1c70c3c4-fa50-4926-83e3-00431afc7df1 + - 87e2a87d-d24a-469d-a904-e84fcfefe844 status: code: 200 message: OK @@ -908,7 +917,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B response: @@ -1260,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:23 GMT + - Mon, 31 Jan 2022 21:19:19 GMT expires: - '-1' pragma: @@ -1272,7 +1281,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 3fc2cb1d-5efe-4038-9d65-cb90cc824aae + - 6d8b0ca7-4e43-481d-a7bc-9977c967b5d8 status: code: 200 message: OK @@ -1288,22 +1297,38 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-24-17-49-07-8a04c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/only4-2022-01-24-17-49-07-8a04c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-24T17:45:35.0027469Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-24T17:49:07.7304799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-26-23-26-18-6a577","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-26-23-26-18-6a577","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T23:26:17.9089129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"initializing"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:21.1592798Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:25:14.0761922Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:14.0761922Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiondhrkfxuei7cll3zlg5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiondhrkfxuei7cll3zlg5"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:25:17.5273853Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:17.5273853Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription2xno3s5lx4xcarffrm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription2xno3s5lx4xcarffrm"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-28-16-32-13-851e0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-25-40-dac1c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub/snapshots/2022-01-31-20-31-45-1b6a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-01-31-20-31-45-1b6a8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"next"},"bar":{"value":"one"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:31:44.8448442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca/snapshots/2022-01-31-20-47-02-aa353","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb/snapshots/2022-01-31-20-47-09-1fc68","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd/snapshots/2022-01-31-20-49-55-f898a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7/snapshots/2022-01-31-20-50-04-c02d1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr/snapshots/2022-01-31-20-50-11-cf3cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm/snapshots/2022-01-31-20-50-11-b3e71","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42/snapshots/2022-01-31-21-09-44-2850a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp/snapshots/2022-01-31-21-09-44-8c7f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn/snapshots/2022-01-31-21-09-51-7f2c6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n/snapshots/2022-01-31-21-09-52-1e397","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp/snapshots/2022-01-31-21-15-47-c195b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v/snapshots/2022-01-31-21-15-47-372f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn/snapshots/2022-01-31-21-15-52-4485d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj/snapshots/2022-01-31-21-15-57-551cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty/snapshots/2022-01-31-21-16-00-8a2b9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l/snapshots/2022-01-31-21-19-12-603a3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-12-603a3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:12.6491871Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-14-ce820","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:19:14.0307476Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:14.0307476Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxpii7ltks3masaeqe4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxpii7ltks3masaeqe4"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:19:15.6035138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:15.6035138Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription5yvufvjraewmywaljo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription5yvufvjraewmywaljo"}]}' headers: cache-control: - no-cache content-length: - - '108516' + - '140718' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:23 GMT + - Mon, 31 Jan 2022 21:19:20 GMT expires: - '-1' pragma: @@ -1315,7 +1340,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 195f87d0-2831-4401-ac90-42c4355cae58 + - 40e05d3f-f30a-4162-b3e5-4cfdf148f138 status: code: 200 message: OK @@ -1333,7 +1358,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1348,7 +1373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:24 GMT + - Mon, 31 Jan 2022 21:19:20 GMT expires: - '-1' pragma: @@ -1369,7 +1394,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -1380,20 +1406,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1406,22 +1434,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:24.9663663Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:21.1751602Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:24.9663663Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:21.1751602Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5f78bfbc-39bd-4fb6-acbc-03108abeca1c?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1660' + - '1788' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:25 GMT + - Mon, 31 Jan 2022 21:19:21 GMT expires: - '-1' pragma: @@ -1433,7 +1461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1451,13 +1479,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5f78bfbc-39bd-4fb6-acbc-03108abeca1c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5f78bfbc-39bd-4fb6-acbc-03108abeca1c\",\r\n - \ \"name\": \"5f78bfbc-39bd-4fb6-acbc-03108abeca1c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4\",\r\n + \ \"name\": \"7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1466,7 +1494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:42 GMT + - Mon, 31 Jan 2022 21:19:38 GMT expires: - '-1' pragma: @@ -1498,16 +1526,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-25-a2b3c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-25-a2b3c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-21-1291f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-19-21-1291f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1520,20 +1550,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:24.9663663Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:21.1751602Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:24.9663663Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:21.1751602Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:42 GMT + - Mon, 31 Jan 2022 21:19:38 GMT expires: - '-1' pragma: @@ -1565,16 +1595,18 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-25-a2b3c\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-25-a2b3c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-21-1291f\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-19-21-1291f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1587,20 +1619,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:24.9663663Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:21.1751602Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:24.9663663Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:21.1751602Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2049' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:44 GMT + - Mon, 31 Jan 2022 21:19:40 GMT expires: - '-1' pragma: @@ -1634,7 +1666,7 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1646,7 +1678,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:44 GMT + - Mon, 31 Jan 2022 21:19:40 GMT expires: - '-1' pragma: @@ -1658,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 200 message: OK @@ -1674,7 +1706,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -2132,7 +2164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:45 GMT + - Mon, 31 Jan 2022 21:19:41 GMT expires: - '-1' pragma: @@ -2144,8 +2176,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 8a2bac0c-3be8-4fad-b300-8a872ef69f0c - - 9ea9feb0-0821-4929-a038-8164e4b6bb74 + - 339384f3-80d0-48e1-b40e-4277b0dce7ed + - 5545d98a-f14f-4ebb-a0f1-e5921d66eae5 status: code: 200 message: OK @@ -2161,7 +2193,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B response: @@ -2513,7 +2545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:45 GMT + - Mon, 31 Jan 2022 21:19:41 GMT expires: - '-1' pragma: @@ -2525,7 +2557,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - a6af5668-9581-4dbb-9102-ceea725b611f + - 3afe3b6f-6565-4506-b216-4eac0c96219e status: code: 200 message: OK @@ -2541,22 +2573,38 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-24-17-49-07-8a04c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/only4-2022-01-24-17-49-07-8a04c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-24T17:45:35.0027469Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-24T17:49:07.7304799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-26-23-26-18-6a577","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-26-23-26-18-6a577","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T23:26:17.9089129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-28-16-32-13-851e0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-25-40-dac1c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub/snapshots/2022-01-31-20-31-45-1b6a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-01-31-20-31-45-1b6a8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"next"},"bar":{"value":"one"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:31:44.8448442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca/snapshots/2022-01-31-20-47-02-aa353","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb/snapshots/2022-01-31-20-47-09-1fc68","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd/snapshots/2022-01-31-20-49-55-f898a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7/snapshots/2022-01-31-20-50-04-c02d1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr/snapshots/2022-01-31-20-50-11-cf3cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm/snapshots/2022-01-31-20-50-11-b3e71","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42/snapshots/2022-01-31-21-09-44-2850a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp/snapshots/2022-01-31-21-09-44-8c7f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn/snapshots/2022-01-31-21-09-51-7f2c6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n/snapshots/2022-01-31-21-09-52-1e397","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp/snapshots/2022-01-31-21-15-47-c195b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v/snapshots/2022-01-31-21-15-47-372f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn/snapshots/2022-01-31-21-15-52-4485d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj/snapshots/2022-01-31-21-15-57-551cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty/snapshots/2022-01-31-21-16-00-8a2b9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l/snapshots/2022-01-31-21-19-31-cc84c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:31.6976428Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"}]}' headers: cache-control: - no-cache content-length: - - '105925' + - '137836' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:46 GMT + - Mon, 31 Jan 2022 21:19:42 GMT expires: - '-1' pragma: @@ -2568,7 +2616,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 52798726-cd53-42a9-8044-33ff3bff7837 + - 52447020-4384-4238-8b88-d325960d5b4a status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index eeb4c07d1a7..ff9c30b5da6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:10 GMT + - Mon, 31 Jan 2022 21:18:09 GMT expires: - '-1' pragma: @@ -50,7 +50,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -61,19 +62,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbfd55da-77a5-4dfa-b689-f0d76f558812?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3762a0d-e49d-4f23-89fc-e0f724e5fdf8?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1603' + - '1731' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:10 GMT + - Mon, 31 Jan 2022 21:18:09 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbfd55da-77a5-4dfa-b689-f0d76f558812?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3762a0d-e49d-4f23-89fc-e0f724e5fdf8?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbfd55da-77a5-4dfa-b689-f0d76f558812\",\r\n - \ \"name\": \"cbfd55da-77a5-4dfa-b689-f0d76f558812\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3762a0d-e49d-4f23-89fc-e0f724e5fdf8\",\r\n + \ \"name\": \"b3762a0d-e49d-4f23-89fc-e0f724e5fdf8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:27 GMT + - Mon, 31 Jan 2022 21:18:26 GMT expires: - '-1' pragma: @@ -178,14 +181,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-11-3b947\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-28-16-24-11-3b947\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-09-85bcf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-31-21-18-09-85bcf\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -198,20 +203,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2088' + - '2216' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:27 GMT + - Mon, 31 Jan 2022 21:18:26 GMT expires: - '-1' pragma: @@ -243,16 +248,19 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: body: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-11-3b947\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-09-85bcf\",\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-28-16-24-11-3b947\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-31-21-18-09-85bcf\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -267,9 +275,9 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n },\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" @@ -277,11 +285,11 @@ interactions: cache-control: - no-cache content-length: - - '2325' + - '2485' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:28 GMT + - Mon, 31 Jan 2022 21:18:27 GMT expires: - '-1' pragma: @@ -313,14 +321,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-11-3b947\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-28-16-24-11-3b947\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-09-85bcf\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-31-21-18-09-85bcf\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -333,20 +343,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:11.1825185Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:11.1825185Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2088' + - '2216' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:29 GMT + - Mon, 31 Jan 2022 21:18:28 GMT expires: - '-1' pragma: @@ -380,7 +390,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -392,7 +402,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:29 GMT + - Mon, 31 Jan 2022 21:18:28 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml index b7e18b1b2b3..a78de74fbcd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:29 GMT + - Mon, 31 Jan 2022 21:18:28 GMT expires: - '-1' pragma: @@ -50,7 +50,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -61,19 +62,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:28.9294672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:28.9294672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1388d19c-136f-4066-8d93-dada60589b85?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53670a1d-5ad7-4ce1-9d8c-4744af60c380?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1610' + - '1738' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:29 GMT + - Mon, 31 Jan 2022 21:18:28 GMT expires: - '-1' pragma: @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1388d19c-136f-4066-8d93-dada60589b85?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53670a1d-5ad7-4ce1-9d8c-4744af60c380?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1388d19c-136f-4066-8d93-dada60589b85\",\r\n - \ \"name\": \"1388d19c-136f-4066-8d93-dada60589b85\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53670a1d-5ad7-4ce1-9d8c-4744af60c380\",\r\n + \ \"name\": \"53670a1d-5ad7-4ce1-9d8c-4744af60c380\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:46 GMT + - Mon, 31 Jan 2022 21:18:45 GMT expires: - '-1' pragma: @@ -178,14 +181,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-18-28-4ee97\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-31-21-18-28-4ee97\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -198,20 +203,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:28.9294672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:28.9294672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2097' + - '2225' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:46 GMT + - Mon, 31 Jan 2022 21:18:45 GMT expires: - '-1' pragma: @@ -243,7 +248,7 @@ interactions: ParameterSetName: - --stack-name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -251,8 +256,11 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-31-21-18-28-4ee97\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -267,21 +275,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:28.9294672Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:28.9294672Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-18-28-4ee97\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-29-f83dc\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-28-4ee97\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2185' + - '2345' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:46 GMT + - Mon, 31 Jan 2022 21:18:46 GMT expires: - '-1' pragma: @@ -313,7 +321,7 @@ interactions: ParameterSetName: - --stack User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots?api-version=2021-05-01-preview response: @@ -321,8 +329,11 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-31-21-18-28-4ee97\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -337,21 +348,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:28.9294672Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:28.9294672Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-18-28-4ee97\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-29-f83dc\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-28-4ee97\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2185' + - '2345' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:47 GMT + - Mon, 31 Jan 2022 21:18:46 GMT expires: - '-1' pragma: @@ -383,14 +394,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-28-16-24-29-f83dc\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-28-16-24-29-f83dc\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002/snapshots/2022-01-31-21-18-28-4ee97\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-snapshot-res-2022-01-31-21-18-28-4ee97\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -403,20 +416,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:29.1462394Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:28.9294672Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:29.1462394Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:28.9294672Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-snapshot-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2097' + - '2225' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:48 GMT + - Mon, 31 Jan 2022 21:18:47 GMT expires: - '-1' pragma: @@ -450,7 +463,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-snapshot-resource-group000002?api-version=2021-05-01-preview response: @@ -462,7 +475,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:48 GMT + - Mon, 31 Jan 2022 21:18:47 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml index 311c0786b5d..52411dbf85f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_snapshot_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:31 GMT + - Mon, 31 Jan 2022 21:18:30 GMT expires: - '-1' pragma: @@ -49,7 +49,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -60,20 +61,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:30.7694176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:30.7694176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/26b9587a-97b3-47d7-9ec0-a6b81662558d?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a032628-dc6f-42e4-8177-ec0b75d4fddd?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1674' + - '1802' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:32 GMT + - Mon, 31 Jan 2022 21:18:30 GMT expires: - '-1' pragma: @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/26b9587a-97b3-47d7-9ec0-a6b81662558d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a032628-dc6f-42e4-8177-ec0b75d4fddd?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/26b9587a-97b3-47d7-9ec0-a6b81662558d\",\r\n - \ \"name\": \"26b9587a-97b3-47d7-9ec0-a6b81662558d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a032628-dc6f-42e4-8177-ec0b75d4fddd\",\r\n + \ \"name\": \"9a032628-dc6f-42e4-8177-ec0b75d4fddd\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:49 GMT + - Mon, 31 Jan 2022 21:18:47 GMT expires: - '-1' pragma: @@ -178,16 +181,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-31-a8148\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-18-31-a8148\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -200,20 +205,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:30.7694176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:30.7694176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2070' + - '2198' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:49 GMT + - Mon, 31 Jan 2022 21:18:48 GMT expires: - '-1' pragma: @@ -245,7 +250,7 @@ interactions: ParameterSetName: - --stack-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -253,9 +258,12 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-18-31-a8148\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -270,21 +278,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:30.7694176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:30.7694176Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-31-a8148\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-32-1c304\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-31-a8148\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '2337' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:50 GMT + - Mon, 31 Jan 2022 21:18:49 GMT expires: - '-1' pragma: @@ -316,7 +324,7 @@ interactions: ParameterSetName: - --stack User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots?api-version=2021-05-01-preview response: @@ -324,9 +332,12 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-18-31-a8148\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": + \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \"metadata\": {\r\n \"description\": @@ -341,21 +352,21 @@ interactions: \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n \"lastModifiedBy\": + \ \"createdAt\": \"2022-01-31T21:18:30.7694176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n + \ \"lastModifiedAt\": \"2022-01-31T21:18:30.7694176Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-31-a8148\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-24-32-1c304\"\r\n }\r\n ]\r\n}" + \"2022-01-31-21-18-31-a8148\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '2337' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:51 GMT + - Mon, 31 Jan 2022 21:18:50 GMT expires: - '-1' pragma: @@ -387,16 +398,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-28-16-24-32-1c304\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-28-16-24-32-1c304\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001/snapshots/2022-01-31-21-18-31-a8148\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-18-31-a8148\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -409,20 +422,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:32.2676217Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:30.7694176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:32.2676217Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:30.7694176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-snapshot-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2070' + - '2198' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:52 GMT + - Mon, 31 Jan 2022 21:18:51 GMT expires: - '-1' pragma: @@ -456,7 +469,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription000001?api-version=2021-05-01-preview response: @@ -468,7 +481,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:24:53 GMT + - Mon, 31 Jan 2022 21:18:52 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index d5c09f75c42..d67728515ef 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:50 GMT + - Mon, 31 Jan 2022 21:18:50 GMT expires: - '-1' pragma: @@ -49,7 +49,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -60,20 +61,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:50.8958015Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:51.2245549Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:50.8958015Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.2245549Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6fefdb14-68ea-4fb9-9581-863746b56bda?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/150a76e0-8785-4c34-9dcd-bcf62c6a77ba?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1656' + - '1784' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:51 GMT + - Mon, 31 Jan 2022 21:18:51 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6fefdb14-68ea-4fb9-9581-863746b56bda?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/150a76e0-8785-4c34-9dcd-bcf62c6a77ba?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6fefdb14-68ea-4fb9-9581-863746b56bda\",\r\n - \ \"name\": \"6fefdb14-68ea-4fb9-9581-863746b56bda\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/150a76e0-8785-4c34-9dcd-bcf62c6a77ba\",\r\n + \ \"name\": \"150a76e0-8785-4c34-9dcd-bcf62c6a77ba\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:08 GMT + - Mon, 31 Jan 2022 21:19:08 GMT expires: - '-1' pragma: @@ -178,16 +181,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-28-16-24-51-21b83\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-28-16-24-51-21b83\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-51-32277\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-18-51-32277\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -200,20 +205,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:50.8958015Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:51.2245549Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:50.8958015Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.2245549Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2043' + - '2171' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:08 GMT + - Mon, 31 Jan 2022 21:19:08 GMT expires: - '-1' pragma: @@ -243,7 +248,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview response: @@ -701,7 +706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:10 GMT + - Mon, 31 Jan 2022 21:19:10 GMT expires: - '-1' pragma: @@ -713,8 +718,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ed586c25-1d97-43f3-9e20-084e42da6252 - - 1f5d5706-1d80-4019-8b0c-d161ba7085f9 + - 180da15d-b817-4070-8870-622e776f50d8 + - 777f121b-b9ae-4cc9-bc50-24da2a8d875a status: code: 200 message: OK @@ -730,7 +735,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B response: @@ -1082,7 +1087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:10 GMT + - Mon, 31 Jan 2022 21:19:11 GMT expires: - '-1' pragma: @@ -1094,7 +1099,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b030e5ff-8d8d-4fd1-af44-7a9d3e846189 + - b7adcefc-358d-4ca1-94ed-23cdbfc28e1e status: code: 200 message: OK @@ -1110,22 +1115,38 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4/snapshots/2022-01-24-17-49-07-8a04c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/only4-2022-01-24-17-49-07-8a04c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-24T17:45:35.0027469Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-24T17:49:07.7304799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/only4","type":"Microsoft.Resources/deploymentStacks","name":"only4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-26-23-26-18-6a577","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-26-23-26-18-6a577","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T23:26:17.9089129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-24-59-4ad4f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-24-59-4ad4f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:24:59.2013866Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-28-16-24-51-21b83","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-28-16-24-51-21b83","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:50.8958015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:24:50.8958015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiona7qoiwldvgsumzw/snapshots/2022-01-28-16-25-00-aa02e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-28-16-25-00-aa02e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:25:00.4247672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:00.4247672Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiona7qoiwldvgsumzw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiona7qoiwldvgsumzw"}]}' + string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-28-16-32-13-851e0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-25-40-dac1c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub/snapshots/2022-01-31-20-31-45-1b6a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-01-31-20-31-45-1b6a8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"next"},"bar":{"value":"one"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:31:44.8448442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca/snapshots/2022-01-31-20-47-02-aa353","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb/snapshots/2022-01-31-20-47-09-1fc68","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd/snapshots/2022-01-31-20-49-55-f898a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7/snapshots/2022-01-31-20-50-04-c02d1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr/snapshots/2022-01-31-20-50-11-cf3cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm/snapshots/2022-01-31-20-50-11-b3e71","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42/snapshots/2022-01-31-21-09-44-2850a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp/snapshots/2022-01-31-21-09-44-8c7f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn/snapshots/2022-01-31-21-09-51-7f2c6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n/snapshots/2022-01-31-21-09-52-1e397","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp/snapshots/2022-01-31-21-15-47-c195b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v/snapshots/2022-01-31-21-15-47-372f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn/snapshots/2022-01-31-21-15-52-4485d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj/snapshots/2022-01-31-21-15-57-551cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty/snapshots/2022-01-31-21-16-00-8a2b9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l/snapshots/2022-01-31-21-18-51-77cbc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-51-77cbc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:18:51.0633755Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-51-32277","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-18-51-32277","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:51.2245549Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:18:51.2245549Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniqpnwes4cxfv2d5/snapshots/2022-01-31-21-18-57-120fe","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:57.2857285Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:18:57.2857285Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniqpnwes4cxfv2d5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniqpnwes4cxfv2d5"}]}' headers: cache-control: - no-cache content-length: - - '109289' + - '141107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:11 GMT + - Mon, 31 Jan 2022 21:19:11 GMT expires: - '-1' pragma: @@ -1137,7 +1158,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 10a5a8da-c2d8-4705-a760-a4e570dc24d5 + - 9a788e81-7fe0-4fd8-81d2-97af1f92ed3b status: code: 200 message: OK @@ -1155,16 +1176,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-28-16-24-51-21b83\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-28-16-24-51-21b83\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-51-32277\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-18-51-32277\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -1177,20 +1200,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:50.8958015Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:51.2245549Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:50.8958015Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.2245549Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2043' + - '2171' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:12 GMT + - Mon, 31 Jan 2022 21:19:12 GMT expires: - '-1' pragma: @@ -1224,7 +1247,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -1236,7 +1259,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:12 GMT + - Mon, 31 Jan 2022 21:19:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index 4dde3f104bc..eb167e3df5d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:54 GMT + - Mon, 31 Jan 2022 21:18:53 GMT expires: - '-1' pragma: @@ -50,7 +50,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -61,19 +62,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/483cb1cb-548c-4fa1-a95b-8772b4692cce?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9ef3ace7-1ece-448d-b130-ff3556cf6654?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1603' + - '1731' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:24:54 GMT + - Mon, 31 Jan 2022 21:18:53 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/483cb1cb-548c-4fa1-a95b-8772b4692cce?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9ef3ace7-1ece-448d-b130-ff3556cf6654?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/483cb1cb-548c-4fa1-a95b-8772b4692cce\",\r\n - \ \"name\": \"483cb1cb-548c-4fa1-a95b-8772b4692cce\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9ef3ace7-1ece-448d-b130-ff3556cf6654\",\r\n + \ \"name\": \"9ef3ace7-1ece-448d-b130-ff3556cf6654\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:11 GMT + - Mon, 31 Jan 2022 21:19:10 GMT expires: - '-1' pragma: @@ -178,14 +181,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -198,20 +203,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2088' + - '2216' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:12 GMT + - Mon, 31 Jan 2022 21:19:11 GMT expires: - '-1' pragma: @@ -243,14 +248,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -263,20 +270,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2088' + - '2216' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:12 GMT + - Mon, 31 Jan 2022 21:19:11 GMT expires: - '-1' pragma: @@ -308,14 +315,16 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -328,20 +337,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2088' + - '2216' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:13 GMT + - Mon, 31 Jan 2022 21:19:12 GMT expires: - '-1' pragma: @@ -373,14 +382,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-28-16-24-55-34c4b\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-28-16-24-55-34c4b\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -393,20 +404,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:24:55.5856241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:24:55.5856241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2088' + - '2216' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:14 GMT + - Mon, 31 Jan 2022 21:19:13 GMT expires: - '-1' pragma: @@ -440,7 +451,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -452,7 +463,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:14 GMT + - Mon, 31 Jan 2022 21:19:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml index 8eeefad90cb..c7b6dbf6e8f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_resource_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:03 GMT + - Mon, 31 Jan 2022 21:19:54 GMT expires: - '-1' pragma: @@ -50,7 +50,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources"}}' headers: Accept: - application/json @@ -61,19 +62,21 @@ interactions: Connection: - keep-alive Content-Length: - - '576' + - '642' Content-Type: - application/json ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:54.7546609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:54.7546609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e37c35d-2a13-4768-b879-03c393070573?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a0f17491-68f1-4eed-895f-29a59deb86de?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1593' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:03 GMT + - Mon, 31 Jan 2022 21:19:54 GMT expires: - '-1' pragma: @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e37c35d-2a13-4768-b879-03c393070573?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a0f17491-68f1-4eed-895f-29a59deb86de?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e37c35d-2a13-4768-b879-03c393070573\",\r\n - \ \"name\": \"8e37c35d-2a13-4768-b879-03c393070573\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a0f17491-68f1-4eed-895f-29a59deb86de\",\r\n + \ \"name\": \"a0f17491-68f1-4eed-895f-29a59deb86de\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:20 GMT + - Mon, 31 Jan 2022 21:20:11 GMT expires: - '-1' pragma: @@ -178,14 +181,16 @@ interactions: ParameterSetName: - --name --resource-group --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-31-21-19-54-2a6c7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-31-21-19-54-2a6c7\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -198,20 +203,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:54.7546609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:54.7546609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2073' + - '2201' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:20 GMT + - Mon, 31 Jan 2022 21:20:11 GMT expires: - '-1' pragma: @@ -243,15 +248,17 @@ interactions: ParameterSetName: - --stack-name --name --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-31-21-19-54-2a6c7?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-31-21-19-54-2a6c7\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -264,21 +271,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:54.7546609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:54.7546609Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-31-21-19-54-2a6c7\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-26-03-371d9\"\r\n}" + \"2022-01-31-21-19-54-2a6c7\"\r\n}" headers: cache-control: - no-cache content-length: - - '1933' + - '2061' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:21 GMT + - Mon, 31 Jan 2022 21:20:11 GMT expires: - '-1' pragma: @@ -310,15 +317,17 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-31-21-19-54-2a6c7?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-31-21-19-54-2a6c7\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -331,21 +340,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:54.7546609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:54.7546609Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-31-21-19-54-2a6c7\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-26-03-371d9\"\r\n}" + \"2022-01-31-21-19-54-2a6c7\"\r\n}" headers: cache-control: - no-cache content-length: - - '1933' + - '2061' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:22 GMT + - Mon, 31 Jan 2022 21:20:12 GMT expires: - '-1' pragma: @@ -377,14 +386,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-28-16-26-03-371d9\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-28-16-26-03-371d9\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002/snapshots/2022-01-31-21-19-54-2a6c7\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-deployment-stack-resource-gro-2022-01-31-21-19-54-2a6c7\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -397,20 +408,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:26:03.8369631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:54.7546609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:26:03.8369631Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:54.7546609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2073' + - '2201' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:26:23 GMT + - Mon, 31 Jan 2022 21:20:13 GMT expires: - '-1' pragma: @@ -444,7 +455,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-deployment-stack-resource-group000002?api-version=2021-05-01-preview response: @@ -456,7 +467,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:26:23 GMT + - Mon, 31 Jan 2022 21:20:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml index 226e73ca7f0..51a3b72637e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_snapshot_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:13 GMT + - Mon, 31 Jan 2022 21:19:13 GMT expires: - '-1' pragma: @@ -49,7 +49,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -60,20 +61,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:14.0307476Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:14.0307476Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28298f72-d253-4f0a-b6c1-5a4a2171bd75?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cae5acba-27b1-45fd-be69-f00d559fc45c?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1654' + - '1782' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:13 GMT + - Mon, 31 Jan 2022 21:19:14 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28298f72-d253-4f0a-b6c1-5a4a2171bd75?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cae5acba-27b1-45fd-be69-f00d559fc45c?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28298f72-d253-4f0a-b6c1-5a4a2171bd75\",\r\n - \ \"name\": \"28298f72-d253-4f0a-b6c1-5a4a2171bd75\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cae5acba-27b1-45fd-be69-f00d559fc45c\",\r\n + \ \"name\": \"cae5acba-27b1-45fd-be69-f00d559fc45c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:30 GMT + - Mon, 31 Jan 2022 21:19:31 GMT expires: - '-1' pragma: @@ -178,16 +181,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-14-ce820\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-14-ce820\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -200,20 +205,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:14.0307476Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:14.0307476Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2040' + - '2168' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:31 GMT + - Mon, 31 Jan 2022 21:19:31 GMT expires: - '-1' pragma: @@ -245,16 +250,18 @@ interactions: ParameterSetName: - --name --stack-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-14-ce820?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-14-ce820\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -267,21 +274,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:14.0307476Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:14.0307476Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-14-ce820\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-25-14-94ea7\"\r\n}" + \"2022-01-31-21-19-14-ce820\"\r\n}" headers: cache-control: - no-cache content-length: - - '1918' + - '2046' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:33 GMT + - Mon, 31 Jan 2022 21:19:32 GMT expires: - '-1' pragma: @@ -313,16 +320,18 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-14-ce820?api-version=2021-05-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-14-ce820\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -335,21 +344,21 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:14.0307476Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:14.0307476Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-14-ce820\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks/snapshots\",\r\n \"name\": - \"2022-01-28-16-25-14-94ea7\"\r\n}" + \"2022-01-31-21-19-14-ce820\"\r\n}" headers: cache-control: - no-cache content-length: - - '1918' + - '2046' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:33 GMT + - Mon, 31 Jan 2022 21:19:33 GMT expires: - '-1' pragma: @@ -381,16 +390,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-14-94ea7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-14-94ea7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-14-ce820\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-14-ce820\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -403,20 +414,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:14.0761922Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:14.0307476Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:14.0761922Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:14.0307476Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2040' + - '2168' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:34 GMT + - Mon, 31 Jan 2022 21:19:34 GMT expires: - '-1' pragma: @@ -450,7 +461,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -462,7 +473,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:34 GMT + - Mon, 31 Jan 2022 21:19:34 GMT expires: - '-1' pragma: @@ -474,7 +485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index 2fe345e84d2..4ca03b726c7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:17 GMT + - Mon, 31 Jan 2022 21:19:14 GMT expires: - '-1' pragma: @@ -49,7 +49,8 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": + "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: - application/json @@ -60,20 +61,22 @@ interactions: Connection: - keep-alive Content-Length: - - '673' + - '739' Content-Type: - application/json ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -86,22 +89,22 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d0195fd0-31d8-4002-ae8c-98ac19fee668?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f760f4bb-9459-4893-aaa9-da3eeabf1919?api-version=2021-05-01-preview cache-control: - no-cache content-length: - - '1654' + - '1782' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:17 GMT + - Mon, 31 Jan 2022 21:19:15 GMT expires: - '-1' pragma: @@ -113,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -131,13 +134,13 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d0195fd0-31d8-4002-ae8c-98ac19fee668?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f760f4bb-9459-4893-aaa9-da3eeabf1919?api-version=2021-05-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d0195fd0-31d8-4002-ae8c-98ac19fee668\",\r\n - \ \"name\": \"d0195fd0-31d8-4002-ae8c-98ac19fee668\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f760f4bb-9459-4893-aaa9-da3eeabf1919\",\r\n + \ \"name\": \"f760f4bb-9459-4893-aaa9-da3eeabf1919\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:34 GMT + - Mon, 31 Jan 2022 21:19:33 GMT expires: - '-1' pragma: @@ -178,16 +181,18 @@ interactions: ParameterSetName: - --name --location --update-behavior --template-file --parameters User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -200,20 +205,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2040' + - '2168' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:35 GMT + - Mon, 31 Jan 2022 21:19:33 GMT expires: - '-1' pragma: @@ -245,16 +250,18 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -267,20 +274,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2040' + - '2168' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:36 GMT + - Mon, 31 Jan 2022 21:19:34 GMT expires: - '-1' pragma: @@ -312,16 +319,18 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -334,20 +343,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2040' + - '2168' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:37 GMT + - Mon, 31 Jan 2022 21:19:35 GMT expires: - '-1' pragma: @@ -379,16 +388,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-28-16-25-18-32aea\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-28-16-25-18-32aea\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n + \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n \ \"metadata\": {\r\n \"description\": \"description\"\r\n @@ -401,20 +412,20 @@ interactions: \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-28T16:25:17.5273853Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-28T16:25:17.5273853Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2040' + - '2168' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jan 2022 16:25:37 GMT + - Mon, 31 Jan 2022 21:19:36 GMT expires: - '-1' pragma: @@ -448,7 +459,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview response: @@ -460,7 +471,7 @@ interactions: content-length: - '0' date: - - Fri, 28 Jan 2022 16:25:38 GMT + - Mon, 31 Jan 2022 21:19:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index d27c31e57e2..9a36b24e9ba 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2075,7 +2075,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub delete --name {name} --yes') # create deployment stack with bicep file and rg scope - self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --parameters "{parameter-file}" -g {resource-group}', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" -g {resource-group}', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2210,7 +2210,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # create deployment stack with bicep file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') From 9820bcf10c4c708991c49268f649ab38a7642353 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 22 Aug 2022 11:59:14 -0400 Subject: [PATCH 056/139] Added switches for actionOnUnmanage (removed updateBehavior), removed snapshot commands, added exportTemplate commands [not tested int] --- .../azure/cli/core/commands/client_factory.py | 2 +- .../azure/cli/core/profiles/_shared.py | 2 +- .../cli/command_modules/resource/_params.py | 15 +- .../cli/command_modules/resource/commands.py | 12 +- .../cli/command_modules/resource/custom.py | 169 ++++++++++++++++-- 5 files changed, 169 insertions(+), 31 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/commands/client_factory.py b/src/azure-cli-core/azure/cli/core/commands/client_factory.py index 6f7b3e0813f..dfd58b61f38 100644 --- a/src/azure-cli-core/azure/cli/core/commands/client_factory.py +++ b/src/azure-cli-core/azure/cli/core/commands/client_factory.py @@ -227,7 +227,7 @@ def _get_mgmt_service_client(cli_ctx, client_kwargs.update(_prepare_mgmt_client_kwargs_track2(cli_ctx, cred)) if subscription_bound: - client = client_type(cred, subscription_id, **client_kwargs) + client = client_type(cred, subscription_id,subscription_id, **client_kwargs) else: client = client_type(cred, **client_kwargs) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 134c82406cb..c6daed2127e 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -176,7 +176,7 @@ def default_api_version(self): ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS: '2019-11-01', ResourceType.MGMT_RESOURCE_DEPLOYMENTSCRIPTS: '2020-10-01', ResourceType.MGMT_RESOURCE_TEMPLATESPECS: '2021-05-01', - ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS: '2021-05-01-preview', + ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS: '2022-08-01-preview', ResourceType.MGMT_RESOURCE_PRIVATELINKS: '2020-05-01', ResourceType.MGMT_NETWORK_DNS: '2018-05-01', ResourceType.MGMT_KEYVAULT: SDKProfile('2021-04-01-preview', { diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index bad38de431d..e9a98fd8ae7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -99,14 +99,13 @@ def load_arguments(self, _): stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') - stacks_update_behavior_type = CLIArgumentType(options_list=['--update-behavior'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') + stacks_action_on_unmanage_type = CLIArgumentType(options_list=['--action-on-unmanage'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') - - - + stacks_unmanage_action_resources_type = CLIArgumentType(options_list=['--unmanage-action-resources'], help='<>') + stacks_unmanage_action_resource_groups_type = CLIArgumentType(options_list=['--unmanage-action-resource-groups'], help='<>') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') @@ -665,7 +664,7 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') - c.argument('update_behavior', arg_type=stacks_update_behavior_type) + c.argument('action_on_unmanage', arg_type=stacks_action_on_unmanage_type) c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) @@ -678,6 +677,8 @@ def load_arguments(self, _): c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) + c.argument('unmanage_action_resources', arg_type=stacks_unmanage_action_resources_type) + c.argument('unmanage_action_resource_groups', arg_type=stacks_unmanage_action_resource_groups_type) with self.argument_context('stack group create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) @@ -686,7 +687,7 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') - c.argument('update_behavior', arg_type=stacks_update_behavior_type) + c.argument('action_on_unmanage', arg_type=stacks_action_on_unmanage_type) c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) @@ -706,6 +707,8 @@ def load_arguments(self, _): c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) + c.argument('unmanage_action_resources', arg_type=stacks_unmanage_action_resources_type) + c.argument('unmanage_action_resource_groups', arg_type=stacks_unmanage_action_resource_groups_type) with self.argument_context('stack snapshot sub show') as c: c.argument('name', arg_type=stacks_snapshot_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index e8a66ef8dd5..290f203dbdb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -403,22 +403,14 @@ def load_command_table(self, _): g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation = True) g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export template', 'export_template_deployment_stack_at_subscription') with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation = True) g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - - with self.command_group('stack snapshot sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_snapshot_at_subscription', table_transformer=transform_stacks) - g.custom_command('list', 'list_deployment_stack_snapshot_at_subscription', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_snapshot_at_subscription', confirmation = True) - - with self.command_group('stack snapshot group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_snapshot_at_resource_group', table_transformer=transform_stacks) - g.custom_command('list', 'list_deployment_stack_snapshot_at_resource_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_snapshot_at_resource_group', confirmation = True) + g.custom_command('export template', 'export_template_deployment_stack_at_resource_group') # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 1ccc2e75e93..576afe950a9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2073,10 +2073,40 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, update_behavior = None, resource_group = None, template_file = None, template_spec = None, template_uri = None, parameters = None, description = None): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=None, delete_resource_groups=None, delete_all=None, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if not update_behavior: - update_behavior = "detachResources" + + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + + if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") + if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") + if delete_all != None and delete_all != "detach" and delete_all != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") + + from knack.prompting import prompt_y_n + if delete_all == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resource_groups == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resource groups?") + if confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resources == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2109,7 +2139,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, update_behavior else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, update_behavior = update_behavior, deployment_scope = deployment_scope) + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2159,7 +2190,39 @@ def list_deployment_stack_at_subscription(cmd): return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, id=None): +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=None, delete_resource_groups=None, delete_all=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach + + if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") + if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") + if delete_all != None and delete_all != "detach" and delete_all != "delete" and not delete_all: + raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") + + from knack.prompting import prompt_y_n + if delete_all == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + else: + return None + if delete_resource_groups == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resource groups?") + if confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + else: + return None + if delete_resources == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete + else: + return None + if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_name = None @@ -2173,14 +2236,51 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None): rcf.deployment_stacks.get_at_subscription(name) except: raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current subscription scope.") - return rcf.deployment_stacks.begin_delete_at_subscription(delete_name) + return rcf.deployment_stacks.begin_delete_at_subscription(delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") +def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): + if name or id: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.export_template_at_subscription(name) + return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) + raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_behavior=None, template_file = None, template_spec = None, template_uri = None, parameters = None, description = None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=None, delete_resource_groups=None, delete_all=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if not update_behavior: - update_behavior = "detachResources" + + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + + if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") + if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") + if delete_all != None and delete_all != "detach" and delete_all != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") + + from knack.prompting import prompt_y_n + if delete_all == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resource_groups == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resource groups?") + if confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resources == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2204,7 +2304,8 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, update_ else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, update_behavior = update_behavior) + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2257,14 +2358,46 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = None, id=None): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=None, delete_resource_groups=None, delete_all=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach + + if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") + if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") + if delete_all != None and delete_all != "detach" and delete_all != "delete": + raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") + + + from knack.prompting import prompt_y_n + if delete_all == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + else: + return None + if delete_resource_groups == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resource groups?") + if confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + else: + return None + if delete_resources == "delete": + confirmation = prompt_y_n("Are you sure you want to delete resources?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete + else: + return None + if name and resource_group: try: rcf.deployment_stacks.get_at_resource_group(resource_group,name) except: raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") - return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name) + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) if id: stack_arr = id.split('/') if len(stack_arr) < 5: @@ -2275,9 +2408,19 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group = N rcf.deployment_stacks.get_at_resource_group(stack_rg, name) except: raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") - return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, name) + return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") +def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name and resource_group: + return rcf.deployment_stacks.export_template_at_resource_group(resource_group, name) + if id: + stack_arr = id.split('/') + if len(stack_arr) < 5: + raise InvalidArgumentValueError("Please enter a valid id") + return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) + raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) From 53c41f81517c35bb1bbd319e60ede279de224ed6 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 31 Aug 2022 13:34:38 -0400 Subject: [PATCH 057/139] Strings to switchs: deleteResources/RG/All --- .../cli/command_modules/resource/commands.py | 7 + .../cli/command_modules/resource/custom.py | 169 +++++++++++++----- 2 files changed, 129 insertions(+), 47 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 290f203dbdb..f9426f1127f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -398,6 +398,13 @@ def load_command_table(self, _): g.custom_command('list', 'list_template_specs') g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) + with self.command_group('stack mg', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: + g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) + g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) + g.custom_command('delete', 'delete_deployment_stack_at_management_group', confirmation = True) + g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export template', 'export_template_deployment_stack_at_management_group') + with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 3ec12802ab9..df90b6ed19c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,34 +2055,27 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=None, delete_resource_groups=None, delete_all=None, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") - if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") - if delete_all != None and delete_all != "detach" and delete_all != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") - from knack.prompting import prompt_y_n - if delete_all == "delete": + if delete_all: confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None - if delete_resource_groups == "delete": + if delete_resource_groups: confirmation = prompt_y_n("Are you sure you want to delete resource groups?") if confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None - if delete_resources == "delete": + if delete_resources: confirmation = prompt_y_n("Are you sure you want to delete resources?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2167,38 +2160,29 @@ def show_deployment_stack_at_subscription(cmd, name=None, id=None): def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - rcf.deployment_stacks.list_at_subscription() - return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=None, delete_resource_groups=None, delete_all=None): +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") - if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") - if delete_all != None and delete_all != "detach" and delete_all != "delete" and not delete_all: - raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") - from knack.prompting import prompt_y_n - if delete_all == "delete": + if delete_all: confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete else: return None - if delete_resource_groups == "delete": + if delete_resource_groups: confirmation = prompt_y_n("Are you sure you want to delete resource groups?") if confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete else: return None - if delete_resources == "delete": + if delete_resources: confirmation = prompt_y_n("Are you sure you want to delete resources?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete @@ -2229,34 +2213,27 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=None, delete_resource_groups=None, delete_all=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") - if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") - if delete_all != None and delete_all != "detach" and delete_all != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") - from knack.prompting import prompt_y_n - if delete_all == "delete": + if delete_all: confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None - if delete_resource_groups == "delete": + if delete_resource_groups: confirmation = prompt_y_n("Are you sure you want to delete resource groups?") if confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None - if delete_resources == "delete": + if delete_resources: confirmation = prompt_y_n("Are you sure you want to delete resources?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2340,34 +2317,26 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=None, delete_resource_groups=None, delete_all=None): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - if delete_resources != None and delete_resources != "detach" and delete_resources != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resources: delete or detach.") - if delete_resource_groups != None and delete_resource_groups != "detach" and delete_resource_groups != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-resource-groups: delete or detach.") - if delete_all != None and delete_all != "detach" and delete_all != "delete": - raise InvalidArgumentValueError("Please enter only one of the following for delete-all: delete or detach.") - - from knack.prompting import prompt_y_n - if delete_all == "delete": + if delete_all: confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete else: return None - if delete_resource_groups == "delete": + if delete_resource_groups: confirmation = prompt_y_n("Are you sure you want to delete resource groups?") if confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete else: return None - if delete_resources == "delete": + if delete_resources: confirmation = prompt_y_n("Are you sure you want to delete resources?") if confirmation: delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete @@ -2404,6 +2373,112 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") +def create_deployment_stack_at_management_group(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + + from knack.prompting import prompt_y_n + if delete_all: + confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resource_groups: + confirmation = prompt_y_n("Are you sure you want to delete resource groups?") + if confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resources: + confirmation = prompt_y_n("Are you sure you want to delete resources?") + if confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + + if [template_file, template_spec, template_uri].count(None) != 2: + raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") + try: + get_subscription_response = rcf.deployment_stacks.get_at_subscription(name) + if get_subscription_response: + if get_subscription_response.location != location: + raise CLIError("Cannot change location of an already existing stack at subscription scope.") + from knack.prompting import prompt_y_n + confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it?".format(name)) + if not confirmation: + return None + pass + except: + pass + + #"/providers/Microsoft.Management/managementGroups/f686d426-8d16-42db-81b7-ab578e110ccdp/subscriptions/" + get_subscription_id(cmd.cli_ctx) + if not resource_group: + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + else: + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group + + t_spec, t_uri = None, None + template_obj = None + + if template_file: + pass + elif template_spec: + t_spec = template_spec + elif template_uri: + t_uri = template_uri + else: + raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") + + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope) + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + + if t_spec: + deployment_stacks_template_link.id = t_spec + deployment_stack_model.template_link = deployment_stacks_template_link + api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] + elif t_uri: + deployment_stacks_template_link.uri = t_uri + deployment_stack_model.template_link = deployment_stacks_template_link + template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) + else: + template_content = ( + run_bicep_command(["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) + template_obj = _remove_comments_from_json(template_content, file_path=template_file) + if is_bicep_file(template_file): + deployment_stack_model.template = json.loads(json.dumps(template_obj)) + else: + deployment_stack_model.template = json.load(open(template_file)) + + template_param_defs = template_obj.get('parameters', {}) + template_obj['resources'] = template_obj.get('resources', []) + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters) + parameters = json.loads(json.dumps(parameters)) + deployment_stack_model.parameters = parameters + + return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_management_group,name, deployment_stack_model) + +def show_deployment_stack_at_management_group(cmd, name=None, id=None): + if name or id: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.get_at_management_group(name) + return rcf.deployment_stacks.get_at_management_group(id.split('/')[-1]) + raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") + +def list_deployment_stack_at_management_group(cmd): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + return rcf.deployment_stacks.list_at_management_group() + def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if id: From 5bc1ebcf65ba98d90c681227aa75d467cafa3be3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 14 Sep 2022 12:59:14 -0400 Subject: [PATCH 058/139] Added mg functionality, still need to add mg delete [not tested] --- .../azure/cli/core/commands/client_factory.py | 2 +- .../cli/command_modules/resource/custom.py | 20 +++++++++---------- .../resource/tests/latest/test_resource.py | 1 + 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/commands/client_factory.py b/src/azure-cli-core/azure/cli/core/commands/client_factory.py index dfd58b61f38..6f7b3e0813f 100644 --- a/src/azure-cli-core/azure/cli/core/commands/client_factory.py +++ b/src/azure-cli-core/azure/cli/core/commands/client_factory.py @@ -227,7 +227,7 @@ def _get_mgmt_service_client(cli_ctx, client_kwargs.update(_prepare_mgmt_client_kwargs_track2(cli_ctx, cred)) if subscription_bound: - client = client_type(cred, subscription_id,subscription_id, **client_kwargs) + client = client_type(cred, subscription_id, **client_kwargs) else: client = client_type(cred, **client_kwargs) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index df90b6ed19c..987a4457c0e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2373,7 +2373,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, subscription_switch=False, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2415,11 +2415,9 @@ def create_deployment_stack_at_management_group(cmd, name, location, delete_reso except: pass - #"/providers/Microsoft.Management/managementGroups/f686d426-8d16-42db-81b7-ab578e110ccdp/subscriptions/" + get_subscription_id(cmd.cli_ctx) - if not resource_group: + deployment_scope = None + if subscription_switch: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) - else: - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group t_spec, t_uri = None, None template_obj = None @@ -2465,19 +2463,19 @@ def create_deployment_stack_at_management_group(cmd, name, location, delete_reso parameters = json.loads(json.dumps(parameters)) deployment_stack_model.parameters = parameters - return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_management_group,name, deployment_stack_model) + return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_management_group, management_group_id, name, deployment_stack_model) -def show_deployment_stack_at_management_group(cmd, name=None, id=None): +def show_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: - return rcf.deployment_stacks.get_at_management_group(name) - return rcf.deployment_stacks.get_at_management_group(id.split('/')[-1]) + return rcf.deployment_stacks.get_at_management_group(management_group_id, name) + return rcf.deployment_stacks.get_at_management_group(management_group_id, id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def list_deployment_stack_at_management_group(cmd): +def list_deployment_stack_at_management_group(cmd, management_group_id): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - return rcf.deployment_stacks.list_at_management_group() + return rcf.deployment_stacks.list_at_management_group(management_group_id) def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 4ee20105e4d..49ef4832e64 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2084,6 +2084,7 @@ class DeploymentStacksTest(ScenarioTest): location = "westus2" @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_subscription(self, resource_group): + print("hekdkkkdkddkdkdk") curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) template_spec_name = self.create_random_name('cli-test-template-spec', 60) From 216bf7d45b1c8a54afe26ad85fbf470aadefb27c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Sep 2022 13:28:43 -0400 Subject: [PATCH 059/139] Added testing for sub - delete--resources --- .../cli/command_modules/resource/custom.py | 31 ++-- .../simple_template_resource_group.json | 23 +++ .../tests/latest/simple_template_spec.json | 57 +++++++ .../resource/tests/latest/test_resource.py | 143 ++++++++++++++---- src/azure-cli/setup.py | 2 +- 5 files changed, 214 insertions(+), 42 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_resource_group.json create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_spec.json diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 987a4457c0e..ca5b479391b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,29 +2055,32 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - from knack.prompting import prompt_y_n + from knack.prompting import prompt_y_n if delete_all: - confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") + if yes or confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resource_groups: - confirmation = prompt_y_n("Are you sure you want to delete resource groups?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") + if yes or confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resources: - confirmation = prompt_y_n("Are you sure you want to delete resources?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") + if yes or confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None @@ -2216,7 +2219,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach from knack.prompting import prompt_y_n @@ -2373,10 +2376,10 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, subscription_switch=False, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach from knack.prompting import prompt_y_n @@ -2415,9 +2418,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, except: pass - deployment_scope = None - if subscription_switch: - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) t_spec, t_uri = None, None template_obj = None diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_resource_group.json b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_resource_group.json new file mode 100644 index 00000000000..a8d5c469e6b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_resource_group.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "rgLocation": { + "type": "string", + "defaultValue": "WestUS2" + }, + "name": { + "type": "string" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2018-05-01", + "location": "[parameters('rgLocation')]", + "name": "[parameters('name')]" + } + ], + "outputs": {} +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_spec.json b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_spec.json new file mode 100644 index 00000000000..235242a72a0 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/simple_template_spec.json @@ -0,0 +1,57 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "metadata": { + "_generator": { + "name": "bicep", + "version": "0.10.61.36676", + "templateHash": "11934527272858304086" + } + }, + "parameters": { + "name": { + "type": "string" + }, + "specVersionName": { + "type": "string", + "defaultValue": "v1" + }, + "location": { + "type": "string", + "defaultValue": "[resourceGroup().location]" + } + }, + "resources": [ + { + "type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", + "name": "[parameters('name')]", + "location": "[parameters('location')]", + "properties": { + "displayName": "DanteTemplateSpec", + "description": "Template Spec for testing stacks." + } + }, + { + "type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", + "name": "[format('{0}/{1}', parameters('name'), parameters('specVersionName'))]", + "location": "[parameters('location')]", + "properties": { + "description": "generated version number for testing stacks", + "mainTemplate": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "functions": [], + "variables": {}, + "resources": [], + "outputs": {} + } + }, + "dependsOn": [ + "[resourceId('Microsoft.Resources/templateSpecs', parameters('name'))]" + ] + } + ] +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 49ef4832e64..a754da0b8e5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -20,6 +20,7 @@ from azure.cli.testsdk.constants import AUX_SUBSCRIPTION, AUX_TENANT from azure.cli.core.util import get_file_json from knack.util import CLIError +from azure.cli.core.azclierror import ResourceNotFoundError class ResourceGroupScenarioTest(ScenarioTest): @@ -2084,23 +2085,30 @@ class DeploymentStacksTest(ScenarioTest): location = "westus2" @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_subscription(self, resource_group): - print("hekdkkkdkddkdkdk") curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_three = self.create_random_name('cli-test-resource-three', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) self.kwargs.update({ 'name': deployment_stack_name, 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), - 'update-behavior': "detachResources", 'template-spec-name': template_spec_name, 'template-spec-version': "v1", - 'resource-group': resource_group + 'resource-group': resource_group, + 'resource-group-two': resource_group_two, + 'resource-one': resource_one, + 'resource-two': resource_two, + 'resource-three': resource_three, + 'resource-type-specs': "Microsoft.Resources/templateSpecs" }) - # create template spec basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() template_spec_id = basic_template_spec['id'] @@ -2108,19 +2116,19 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # deploy to rg - self.cmd('stack sub create --name {name} --update-behavior {update-behavior} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2131,20 +2139,52 @@ def test_create_deployment_stack_subscription(self, resource_group): # cleanup self.cmd('stack sub delete --name {name} --yes') + # create new resource group - Lines 2142 - 2171 test delete flag --delete-resources + self.cmd('az group create --location {location} --name {resource-group-two}') + + # create stack with resource1 + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # update stack with resource2 set to detach + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check resource2 exists in Azure + self.cmd('resource show -n {resource-two} -g {resource-group-two} --resource-type {resource-type-specs}') + + # update stack with resource3 set to delete + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + + # check resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check resource3 exists in Azure + self.cmd('resource show -n {resource-three} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check resource2 does not exist in Azure - should have been purged + #fix and check in PROD - why does rg contain 4 instead of 2 + self.cmd('resource list -g {resource-group-two}', self.check('length([])', 4)) + + # delete resource group two + self.cmd('az group delete --name {resource-group-two} --yes') + + # cleanup + self.cmd('stack sub delete --name {name} --yes') def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) self.kwargs.update({ 'name': deployment_stack_name, - 'update-behavior': "detachResources", 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2166,20 +2206,17 @@ def test_list_deployment_stack_subscription(self): self.kwargs.update({ 'name': deployment_stack_name, - 'update-behavior': "detachResources", 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() - print(list_deployment_stacks) - self.assertTrue(len(list_deployment_stacks) > 0) self.assertTrue(list_deployment_stacks[0]['name'], '{name}') @@ -2196,11 +2233,10 @@ def test_delete_deployment_stack_subscription(self): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", }) # create stack - self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) @@ -2212,7 +2248,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id - created_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) @@ -2222,6 +2258,34 @@ def test_delete_deployment_stack_subscription(self): #confirm stack is deleted self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + + def test_export_template_deployment_stack_subscription(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + + }) + + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] + + self.kwargs.update({'deployment-stack-id': deployment_stack_id}) + + # show stack with stack name + self.cmd('stack sub export template --name {name}') + + # show stack with stack id + self.cmd('stack sub export template --id {deployment-stack-id}') + + # show stack with stack name + self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) + + # cleanup + self.cmd('stack sub delete --name {name} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) @@ -2237,7 +2301,6 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), - 'update-behavior': "detachResources", 'template-spec-name': template_spec_name, 'template-spec-version': "v1", }) @@ -2249,13 +2312,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @@ -2276,10 +2339,9 @@ def test_show_deployment_stack_resource_group(self, resource_group): 'resource-group': resource_group, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", }) - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2304,10 +2366,9 @@ def test_list_deployment_stack_resource_group(self, resource_group): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", }) - self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks in rg list_deployment_stacks_rg = self.cmd('stack group list --resource-group {resource-group}').get_output_in_json() @@ -2329,11 +2390,10 @@ def test_delete_deployment_stack_resource_group(self, resource_group): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", }) # create stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2344,7 +2404,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id':stack_id}) @@ -2356,8 +2416,39 @@ def test_delete_deployment_stack_resource_group(self, resource_group): #confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) + def test_export_template_deployment_stack_resource_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-show-deployment-stack-resource-group', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'resource-group': resource_group, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + }) + + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] + + self.kwargs.update({'deployment-stack-id': deployment_stack_id}) + + # export stack with stack name + self.cmd('stack group export template --name {name} --resource-group {resource-group}') + # export stack with stack id + self.cmd('stack group export template --id {deployment-stack-id}') + + # show stack with stack name + self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) + + # cleanup + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + +class DeploymentStacksSnapshotTest(ScenarioTest): + global location + location = "westus2" def test_show_deployment_stack_snapshot_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 350639ef2af..1bfa26546e9 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -115,7 +115,7 @@ 'azure-mgmt-redis~=13.1.0', 'azure-mgmt-relay~=0.1.0', 'azure-mgmt-reservations==2.0.0', # TODO: Use requirements.txt instead of '==' #9781 - 'azure-mgmt-resource==21.1.0b1', + 'azure-mgmt-resource==21.1.0', 'azure-mgmt-search~=8.0', 'azure-mgmt-security==2.0.0b1', 'azure-mgmt-servicebus~=8.1.0', From f7a8c562043d5e0569ff6290f04437dd132c65e7 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 30 Sep 2022 17:02:10 -0400 Subject: [PATCH 060/139] Added integration tests for RG & SUB delete flags [tested] --- .../cli/command_modules/resource/commands.py | 10 +- .../cli/command_modules/resource/custom.py | 73 ++-- .../resource/tests/latest/test_resource.py | 334 +++++++++++++++++- .../tests/latest/tracked_resource_group.json | 69 ++++ .../latest/tracked_resource_group_only.json | 60 ++++ 5 files changed, 499 insertions(+), 47 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group.json create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group_only.json diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index f9426f1127f..2a27a9a3aa5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -403,21 +403,21 @@ def load_command_table(self, _): g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_management_group', confirmation = True) g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export template', 'export_template_deployment_stack_at_management_group') + g.custom_command('exportTemplate', 'export_template_deployment_stack_at_management_group') with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation = True) + g.custom_command('delete', 'delete_deployment_stack_at_subscription') g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export template', 'export_template_deployment_stack_at_subscription') + g.custom_command('exportTemplate', 'export_template_deployment_stack_at_subscription') with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation = True) + g.custom_command('delete', 'delete_deployment_stack_at_resource_group') g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export template', 'export_template_deployment_stack_at_resource_group') + g.custom_command('exportTemplate', 'export_template_deployment_stack_at_resource_group') # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index ca5b479391b..caaa48cd997 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2166,29 +2166,32 @@ def list_deployment_stack_at_subscription(cmd): return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - from knack.prompting import prompt_y_n + from knack.prompting import prompt_y_n if delete_all: - confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") - if confirmation: - delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") + if yes or confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resource_groups: - confirmation = prompt_y_n("Are you sure you want to delete resource groups?") - if confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") + if yes or confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resources: - confirmation = prompt_y_n("Are you sure you want to delete resources?") - if confirmation: - delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") + if yes or confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None @@ -2216,29 +2219,32 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - from knack.prompting import prompt_y_n + from knack.prompting import prompt_y_n if delete_all: - confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") + if yes or confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resource_groups: - confirmation = prompt_y_n("Are you sure you want to delete resource groups?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") + if yes or confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resources: - confirmation = prompt_y_n("Are you sure you want to delete resources?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") + if yes or confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None @@ -2320,29 +2326,32 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - from knack.prompting import prompt_y_n + from knack.prompting import prompt_y_n if delete_all: - confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") - if confirmation: - delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") + if yes or confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resource_groups: - confirmation = prompt_y_n("Are you sure you want to delete resource groups?") - if confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Delete + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") + if yes or confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resources: - confirmation = prompt_y_n("Are you sure you want to delete resources?") - if confirmation: - delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Delete + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") + if yes or confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index a754da0b8e5..34ddadc33a3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2100,6 +2100,8 @@ def test_create_deployment_stack_subscription(self, resource_group): 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, 'template-spec-version': "v1", 'resource-group': resource_group, @@ -2139,7 +2141,7 @@ def test_create_deployment_stack_subscription(self, resource_group): # cleanup self.cmd('stack sub delete --name {name} --yes') - # create new resource group - Lines 2142 - 2171 test delete flag --delete-resources + # create new resource group - delete flag --delete-resources self.cmd('az group create --location {location} --name {resource-group-two}') # create stack with resource1 @@ -2164,8 +2166,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('resource show -n {resource-three} -g {resource-group-two} --resource-type {resource-type-specs}') # check resource2 does not exist in Azure - should have been purged - #fix and check in PROD - why does rg contain 4 instead of 2 - self.cmd('resource list -g {resource-group-two}', self.check('length([])', 4)) + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{resource-two}'])", 0)) # delete resource group two self.cmd('az group delete --name {resource-group-two} --yes') @@ -2173,6 +2174,61 @@ def test_create_deployment_stack_subscription(self, resource_group): # cleanup self.cmd('stack sub delete --name {name} --yes') + # test delete flag --delete-resource-groups - create stack with resource1 + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # update stack with resource2 set to detach + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # check resource2 exists in Azure + self.cmd('group show -n {resource-two}') + + # update stack with resource3 set to delete + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # check resource3 exists in Azure + self.cmd('group show -n {resource-three}') + + # check resource2 does not exist in Azure - should have been purged + self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup + self.cmd('stack sub delete --name {name} --yes') + + #new code + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check template spec exists in Azure + self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + + # confirm template spec has been removed from azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + + # cleanup - delete resource group two + self.cmd('stack sub delete --name {name} --yes') + def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) @@ -2227,12 +2283,29 @@ def test_list_deployment_stack_subscription(self): def test_delete_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-subscription', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_three = self.create_random_name('cli-test-resource-three', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) self.kwargs.update({ 'name': deployment_stack_name, 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + 'resource-one': resource_one, + 'resource-two': resource_two, + 'resource-three': resource_three, + 'resource-group-two': resource_group_two, + 'resource-type-specs': "Microsoft.Resources/templateSpecs" }) # create stack @@ -2245,7 +2318,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stack sub delete --name {name} --yes') #confirm stack is deleted - self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() @@ -2257,8 +2330,81 @@ def test_delete_deployment_stack_subscription(self): self.cmd('stack sub delete --id {id} --yes') #confirm stack is deleted - self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) - + #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + + # create new resource group - delete flag --delete-resources + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack with resource1 to check if resources are being detached on delete + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack set to (default) detach + self.cmd('stack sub delete --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') + + # create stack with resource2 to check if resources are being purged on delete + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource2 set to delete + self.cmd('stack sub delete --name {name} --delete-resources --yes') + + #confirm resource2 has been removed from Azure + self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup - delete resource group two + self.cmd('az group delete --name {resource-group-two} --yes') + + # test delete flag --delete-resource-groups - create stack with resource1 + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource1 set to detach + self.cmd('stack sub delete --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # update stack with resource3 set to delete + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource1 set to detach + self.cmd('stack sub delete --name {name} --delete-resources --delete-resource-groups --yes') + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + #confirm resource2 has been removed from Azure + self.cmd('group list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup + self.cmd('group delete --name {resource-one} --yes') + + #new code + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check template spec exists in Azure + self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack sub delete --name {name} --delete-all --yes') + + # confirm template spec has been removed from azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + def test_export_template_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) @@ -2276,10 +2422,10 @@ def test_export_template_deployment_stack_subscription(self): self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stack sub export template --name {name}') + self.cmd('stack sub exportTemplate --name {name}') # show stack with stack id - self.cmd('stack sub export template --id {deployment-stack-id}') + self.cmd('stack sub exportTemplate --id {deployment-stack-id}') # show stack with stack name self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) @@ -2293,16 +2439,30 @@ def test_create_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-resource-group', 60) template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_three = self.create_random_name('cli-test-resource-three', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) self.kwargs.update({ 'name': deployment_stack_name, 'resource-group': resource_group, 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, 'template-spec-version': "v1", + 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file-only': os.path.join(curr_dir, 'tracked_resource_group_only.json').replace('\\', '\\\\'), + 'resource-group': resource_group, + 'resource-group-two': resource_group_two, + 'resource-one': resource_one, + 'resource-two': resource_two, + 'resource-three': resource_three, + 'resource-type-specs': "Microsoft.Resources/templateSpecs" }) # create templete spec @@ -2328,6 +2488,80 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + + # test flag: delete--resources, create deployment stack + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + + # update stack, default actionOnUnmanage settings should be detached + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + + # check that resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group} --resource-type {resource-type-specs}') + + # check that resource2 exists in Azure + self.cmd('resource show -n {resource-two} -g {resource-group} --resource-type {resource-type-specs}') + + # update stack with resource3 with delete-resources flag + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + + # check that resource3 exists in Azure + self.cmd('resource show -n {resource-three} -g {resource-group} --resource-type {resource-type-specs}') + + # check resource2 does not exist in Azure - should have been purged + #find a way to check that resource2 does not exist in Azure + #self.cmd('resource list -g {resource-group-two}', self.check('length([])', 4)) + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + + #new code - not tested yet + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check template spec exists in Azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 1)) + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + + # confirm template spec has been removed from azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + + #new code #2 + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): @@ -2383,6 +2617,10 @@ def test_list_deployment_stack_resource_group(self, resource_group): def test_delete_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-resource-group', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) self.kwargs.update({ 'name': deployment_stack_name, @@ -2390,6 +2628,15 @@ def test_delete_deployment_stack_resource_group(self, resource_group): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file-only': os.path.join(curr_dir, 'tracked_resource_group_only.json').replace('\\', '\\\\'), + 'resource-group-two': resource_group_two, + 'resource-one': resource_one, + 'resource-two': resource_two, + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + 'resource-type-specs': "Microsoft.Resources/templateSpecs" }) # create stack @@ -2416,6 +2663,73 @@ def test_delete_deployment_stack_resource_group(self, resource_group): #confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) + + # create new resource group - delete flag --delete-resources + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack with resource1 to check if resources are being detached on delete + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + + # delete stack set to (default) detach + self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') + + # create stack with resource2 to check if resources are being detached on delete + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource2 set to delete + self.cmd('stack group delete -g {resource-group-two} --name {name} --delete-resources --yes') + + #confirm resource2 has been removed from Azure + self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup - delete resource group two + self.cmd('az group delete --name {resource-group-two} --yes') + + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check template spec exists in Azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 1)) + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack group delete --name {name} -g {resource-group-two} --delete-all --yes') + + # confirm template spec has been removed from azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + + # new #2 + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # delete stack with delete-all set + self.cmd('stack group delete --name {name} -g {resource-group-two} --delete-all --yes') + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_export_template_deployment_stack_resource_group(self, resource_group): @@ -2435,10 +2749,10 @@ def test_export_template_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # export stack with stack name - self.cmd('stack group export template --name {name} --resource-group {resource-group}') + self.cmd('stack group exportTemplate --name {name} --resource-group {resource-group}') # export stack with stack id - self.cmd('stack group export template --id {deployment-stack-id}') + self.cmd('stack group exportTemplate --id {deployment-stack-id}') # show stack with stack name self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group.json b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group.json new file mode 100644 index 00000000000..fa83a99d07f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group.json @@ -0,0 +1,69 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "metadata": { + "_generator": { + "name": "bicep", + "version": "0.10.97.17786", + "templateHash": "66565252327750708" + } + }, + "parameters": { + "rgname": { + "type": "string" + }, + "tsname": { + "type": "string" + } + }, + "resources": [ + { + "type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", + "name": "[parameters('tsname')]", + "location": "[resourceGroup().location]" + }, + { + "type": "Microsoft.Resources/deployments", + "apiVersion": "2020-10-01", + "name": "deploy-rg", + "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", + "properties": { + "expressionEvaluationOptions": { + "scope": "inner" + }, + "mode": "Incremental", + "parameters": { + "rgname": { + "value": "[parameters('rgname')]" + } + }, + "template": { + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "metadata": { + "_generator": { + "name": "bicep", + "version": "0.10.97.17786", + "templateHash": "16612974451088724402" + } + }, + "parameters": { + "rgname": { + "type": "string" + } + }, + "resources": [ + { + "type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", + "name": "[parameters('rgname')]", + "location": "[deployment().location]" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group_only.json b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group_only.json new file mode 100644 index 00000000000..7c0630cbaba --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/tracked_resource_group_only.json @@ -0,0 +1,60 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "metadata": { + "_generator": { + "name": "bicep", + "version": "0.10.97.17786", + "templateHash": "66565252327750708" + } + }, + "parameters": { + "rgname": { + "type": "string" + } + }, + "resources": [ + { + "type": "Microsoft.Resources/deployments", + "apiVersion": "2020-10-01", + "name": "deploy-rg", + "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", + "properties": { + "expressionEvaluationOptions": { + "scope": "inner" + }, + "mode": "Incremental", + "parameters": { + "rgname": { + "value": "[parameters('rgname')]" + } + }, + "template": { + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "metadata": { + "_generator": { + "name": "bicep", + "version": "0.10.97.17786", + "templateHash": "16612974451088724402" + } + }, + "parameters": { + "rgname": { + "type": "string" + } + }, + "resources": [ + { + "type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", + "name": "[parameters('rgname')]", + "location": "[deployment().location]" + } + ] + } + } + } + ] +} \ No newline at end of file From f78facec55e80cb9874f0c5852c4dacde2b8e8fc Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 5 Oct 2022 16:11:13 -0400 Subject: [PATCH 061/139] Working on mg integration tests --- .../cli/command_modules/resource/custom.py | 74 +++- .../resource/tests/latest/test_resource.py | 392 +++++++++++++++++- 2 files changed, 448 insertions(+), 18 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index caaa48cd997..39ae9df9bd5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2141,7 +2141,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource deployment_stack_model.template = json.loads(json.dumps(template_obj)) else: deployment_stack_model.template = json.load(open(template_file)) - + template_param_defs = template_obj.get('parameters', {}) template_obj['resources'] = template_obj.get('resources', []) parameters = _process_parameters(template_param_defs, parameters) or {} @@ -2151,7 +2151,6 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) - def show_deployment_stack_at_subscription(cmd, name=None, id=None): if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2160,12 +2159,10 @@ def show_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.get_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") - def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_subscription() - def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2306,7 +2303,6 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) - def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: @@ -2318,14 +2314,12 @@ def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") - def list_deployment_stack_at_resource_group(cmd, resource_group): if resource_group: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_resource_group(resource_group) raise InvalidArgumentValueError("Please enter the resource group") - def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2385,29 +2379,32 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - from knack.prompting import prompt_y_n + from knack.prompting import prompt_y_n if delete_all: - confirmation = prompt_y_n("Are you sure you want to delete resources and resource groups?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") + if yes or confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resource_groups: - confirmation = prompt_y_n("Are you sure you want to delete resource groups?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") + if yes or confirmation: delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None if delete_resources: - confirmation = prompt_y_n("Are you sure you want to delete resources?") - if confirmation: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") + if yes or confirmation: delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None @@ -2487,6 +2484,51 @@ def list_deployment_stack_at_management_group(cmd, management_group_id): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_management_group(management_group_id) +def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach + + from knack.prompting import prompt_y_n + if delete_all: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") + if yes or confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resource_groups: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") + if yes or confirmation: + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + if delete_resources: + if not yes: + confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") + if yes or confirmation: + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + else: + return None + + if name or id: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + delete_name = None + try: + if name: + delete_name = name + rcf.deployment_stacks.get_at_management_group(management_group_id, name) + else: + name = id.split('/')[-1] + delete_name = name + rcf.deployment_stacks.get_at_management_group(management_group_id, name) + except: + raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current management group scope.") + return rcf.deployment_stacks.begin_delete_at_management_group(management_group_id, delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) + raise InvalidArgumentValueError("Please enter the stack name or stack resource id") + def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if id: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 34ddadc33a3..f0384fddee0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2141,7 +2141,7 @@ def test_create_deployment_stack_subscription(self, resource_group): # cleanup self.cmd('stack sub delete --name {name} --yes') - # create new resource group - delete flag --delete-resources + # create new resource group - test delete flag --delete-resources self.cmd('az group create --location {location} --name {resource-group-two}') # create stack with resource1 @@ -2562,7 +2562,6 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup - delete resource group two self.cmd('group delete --name {resource-group-two} --yes') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2760,6 +2759,395 @@ def test_export_template_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) + def test_create_deployment_stack_management_group(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_three = self.create_random_name('cli-test-resource-three', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + 'resource-group': resource_group, + 'resource-group-two': resource_group_two, + 'resource-one': resource_one, + 'resource-two': resource_two, + 'resource-three': resource_three, + 'resource-type-specs': "Microsoft.Resources/templateSpecs", + 'actual-mg': self.create_random_name('azure-cli-management', 30), + 'mg': "AzGovBlueprint" + }) + # create mg + #self.cmd('account management-group create --name {mg}', checks=[]) + + # create template spec + basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() + template_spec_id = basic_template_spec['id'] + + self.kwargs.update({'template-spec-id': template_spec_id}) + + # create deployment stack with template file and parameter file + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + + #create deployment stack with template spec and parameter file + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + + # create deployment stack with bicep file and rg scope + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{bicep-file}"', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + + # test delete flag --delete-resource-groups - create stack with resource1 + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + + # update stack with resource2 set to detach + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # check resource2 exists in Azure + self.cmd('group show -n {resource-two}') + + # update stack with resource3 set to delete + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # check resource3 exists in Azure + self.cmd('group show -n {resource-three}') + + # check resource2 does not exist in Azure - should have been purged + self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + + def test_show_deployment_stack_management_group(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'mg': "AzGovBlueprint", + 'actual-mg':self.create_random_name('azure-cli-management', 30) + }) + + #self.cmd('account management-group create --name {mg}', checks=[]) + + created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] + + self.kwargs.update({'deployment-stack-id': deployment_stack_id}) + + # show stack with stack name + self.cmd('stack mg show --name {name} --management-group-id {mg}', checks=self.check('name', '{name}')) + + # show stack with stack id + self.cmd('stack mg show --id {deployment-stack-id} --management-group-id {mg}', checks=self.check('name', '{name}')) + + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + + def test_delete_deployment_stack_management_group(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-subscription', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_three = self.create_random_name('cli-test-resource-three', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + 'resource-one': resource_one, + 'resource-two': resource_two, + 'resource-three': resource_three, + 'resource-group-two': resource_group_two, + 'resource-type-specs': "Microsoft.Resources/templateSpecs" + }) + + # create stack + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + # check stack to make sure it exists + self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) + + # delete stack with stack name + self.cmd('stack sub delete --name {name} --yes') + + #confirm stack is deleted + #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + + #add delete with stack id + created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + stack_id = created_stack['id'] + + self.kwargs.update({'id': stack_id}) + + # delete stack with id + self.cmd('stack sub delete --id {id} --yes') + + #confirm stack is deleted + #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + + # create new resource group - delete flag --delete-resources + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack with resource1 to check if resources are being detached on delete + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack set to (default) detach + self.cmd('stack sub delete --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') + + # create stack with resource2 to check if resources are being purged on delete + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource2 set to delete + self.cmd('stack sub delete --name {name} --delete-resources --yes') + + #confirm resource2 has been removed from Azure + self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup - delete resource group two + self.cmd('az group delete --name {resource-group-two} --yes') + + # test delete flag --delete-resource-groups - create stack with resource1 + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource1 set to detach + self.cmd('stack sub delete --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # update stack with resource3 set to delete + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource1 set to detach + self.cmd('stack sub delete --name {name} --delete-resources --delete-resource-groups --yes') + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + #confirm resource2 has been removed from Azure + self.cmd('group list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup + self.cmd('group delete --name {resource-one} --yes') + + #new code + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check template spec exists in Azure + self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack sub delete --name {name} --delete-all --yes') + + # confirm template spec has been removed from azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + + #test again + @AllowLargeResponse(4096) + def test_list_deployment_stack_management_group(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-list-deployment-stack-subscription', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + + }) + + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + # list stacks + list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() + + self.assertTrue(len(list_deployment_stacks) > 0) + self.assertTrue(list_deployment_stacks[0]['name'], '{name}') + + # cleanup + self.cmd('stack sub delete --name {name} --yes') + + + @AllowLargeResponse(4096) + def test_export_template_deployment_management_group(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-subscription', 60) + resource_one = self.create_random_name('cli-test-resource-one', 60) + resource_two = self.create_random_name('cli-test-resource-two', 60) + resource_three = self.create_random_name('cli-test-resource-three', 60) + template_spec_name = self.create_random_name('cli-test-template-spec', 60) + resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), + 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), + 'template-spec-name': template_spec_name, + 'template-spec-version': "v1", + 'resource-one': resource_one, + 'resource-two': resource_two, + 'resource-three': resource_three, + 'resource-group-two': resource_group_two, + 'resource-type-specs': "Microsoft.Resources/templateSpecs" + }) + + # create stack + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + + # check stack to make sure it exists + self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) + + # delete stack with stack name + self.cmd('stack sub delete --name {name} --yes') + + #confirm stack is deleted + #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + + #add delete with stack id + created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + stack_id = created_stack['id'] + + self.kwargs.update({'id': stack_id}) + + # delete stack with id + self.cmd('stack sub delete --id {id} --yes') + + #confirm stack is deleted + #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + + # create new resource group - delete flag --delete-resources + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack with resource1 to check if resources are being detached on delete + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack set to (default) detach + self.cmd('stack sub delete --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') + + # create stack with resource2 to check if resources are being purged on delete + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource2 set to delete + self.cmd('stack sub delete --name {name} --delete-resources --yes') + + #confirm resource2 has been removed from Azure + self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup - delete resource group two + self.cmd('az group delete --name {resource-group-two} --yes') + + # test delete flag --delete-resource-groups - create stack with resource1 + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource1 set to detach + self.cmd('stack sub delete --name {name} --yes') + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + # update stack with resource3 set to delete + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) + + # delete stack with resource1 set to detach + self.cmd('stack sub delete --name {name} --delete-resources --delete-resource-groups --yes') + + # check resource1 still exists in Azure + self.cmd('group show -n {resource-one}') + + #confirm resource2 has been removed from Azure + self.cmd('group list', checks=self.check("length([?name=='{resource-two}'])", 0)) + + # cleanup + self.cmd('group delete --name {resource-one} --yes') + + #new code + # create new resource group - testing delete-all flag + self.cmd('group create --location {location} --name {resource-group-two}') + + # create stack + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + + # check template spec exists in Azure + self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') + + # check rg resource1 exists in Azure + self.cmd('group show -n {resource-one}') + + # create stack with delete-all set + self.cmd('stack sub delete --name {name} --delete-all --yes') + + # confirm template spec has been removed from azure + self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + + #confirm rg resource1 has been removed from azure + self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + class DeploymentStacksSnapshotTest(ScenarioTest): global location location = "westus2" From de6c6c0480fb5d868158eb6cab8d79d762b45189 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 5 Oct 2022 19:19:55 -0400 Subject: [PATCH 062/139] Added cosmetics and finished rough integration testing [tested] --- .../cli/command_modules/resource/_help.py | 76 +++++++++++ .../cli/command_modules/resource/_params.py | 69 ++++++++-- .../cli/command_modules/resource/commands.py | 8 +- .../cli/command_modules/resource/custom.py | 8 ++ .../resource/tests/latest/test_resource.py | 119 +++++++----------- 5 files changed, 193 insertions(+), 87 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 1278f8c84e6..e5e2801c6e6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2781,6 +2781,62 @@ short-summary: (Version 0.1.4) Manage deployment stacks at subscription or resource group scope """ +helps['stack mg create'] = """ +type: command +short-summary: Create a deployment stack at management group scope +examples: + - name: Create a deployment stack using template file. + text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus2" --description "description" + - name: Create a deployment stack with parameter file. + text: az stack mg create --name "StackName" --management-group-id myMg --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" + - name: Create a deployment stack with template spec + text: az stack mg create --name "StackName" --management-group-id myMg --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + - name: Create a deployment stack using bicep file. + text: az stack mg create --name "StackName" --management-group-id myMg --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" + - name: Create a deployment stack using parameters from key/value pairs + text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar + - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" +""" + +helps['stack mg list'] = """ +type: command +short-summary: List all deployment stacks in management group +examples: + - name: List all stacks + text: az stack mg list ----management-group-id myMg +""" + +helps['stack mg show'] = """ +type: command +short-summary: Get specified deployment stack from management group scope +examples: + - name: Get stack by name. + text: az stack mg show --name "StackName" --management-group-id myMg + - name: Get stack by stack resource id. + text: az stack mg show --id "StackResourceID" --management-group-id myMg +""" + +helps['stack mg export'] = """ +type: command +short-summary: Exports the template used to create the deployment stack +examples: + - name: Export template by name. + text: az stack mg export --name "StackName" --management-group-id myMg + - name: Export template by stack resource id. + text: az stack mg export --id "StackResourceID" --management-group-id myMg +""" + +helps['stack mg delete'] = """ +type: command +short-summary: Delete specified deployment stack from management group scope +examples: + - name: Delete stack by name. + text: az stack mg delete --name "StackName" --management-group-id myMg + - name: Delete stack by stack resource id. + text: az stack mg delete --id "StackResourceID" --management-group-id myMg +""" + helps['stack sub create'] = """ type: command short-summary: Create a deployment stack at subscription scope @@ -2821,6 +2877,16 @@ text: az stack sub show --id "StackResourceID" """ +helps['stack sub export'] = """ +type: command +short-summary: Exports the template used to create the deployment stack +examples: + - name: Export template by name. + text: az stack sub export --name "StackName" + - name: Export template by stack resource id. + text: az stack sub export --id "StackResourceID" +""" + helps['stack sub delete'] = """ type: command short-summary: Delete specified deployment stack from subscription scope @@ -2869,6 +2935,16 @@ text: az stack group show --id "StackResourceID" """ +helps['stack group export'] = """ +type: command +short-summary: Exports the template used to create the deployment stack from resource group scope +examples: + - name: Export template by name. + text: az stack group export --name "StackName" --resource-group "ResourceGroup" + - name: Export template by stack resource id. + text: az stack group export --id "StackResourceID" +""" + helps['stack group delete'] = """ type: command short-summary: Delete specified deployment stack from resource group scope diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index e9a98fd8ae7..90569743646 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -99,13 +99,13 @@ def load_arguments(self, _): stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') - stacks_action_on_unmanage_type = CLIArgumentType(options_list=['--action-on-unmanage'], help='The update behavior of deployment stacks: either detachResources or purgeResources.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') + stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') + stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') + stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') - stacks_unmanage_action_resources_type = CLIArgumentType(options_list=['--unmanage-action-resources'], help='<>') - stacks_unmanage_action_resource_groups_type = CLIArgumentType(options_list=['--unmanage-action-resource-groups'], help='<>') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') @@ -656,6 +656,44 @@ def load_arguments(self, _): with self.argument_context('ts list') as c: c.argument('resource_group', arg_type=resource_group_name_type) + with self.argument_context('stack mg create') as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) + c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') + c.argument('template_file', arg_type=deployment_template_file_type) + c.argument('template_spec', arg_type=deployment_template_spec_type) + c.argument('template_uri', arg_type=deployment_template_uri_type) + c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('description', arg_type=stacks_description_type) + c.argument('subscription', arg_type=subscription_type) + c.argument('delete_resources', arg_type=stacks_delete_resources_type) + c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) + c.argument('delete_all', arg_type=stacks_delete_all_type) + c.argument('management-group-id', arg_type=management_group_name_type) + + with self.argument_context('stack mg show') as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) + c.argument('management-group-id', arg_type=management_group_name_type) + + + with self.argument_context('stack mg delete') as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) + c.argument('management-group-id', arg_type=management_group_name_type) + + + with self.argument_context('stack mg export') as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) + c.argument('management-group-id', arg_type=management_group_name_type) + + with self.argument_context('stack mg list') as c: + c.argument('subscription', arg_type=subscription_type) + c.argument('management-group-id', arg_type=management_group_name_type) + with self.argument_context('stack sub create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') @@ -664,10 +702,12 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') - c.argument('action_on_unmanage', arg_type=stacks_action_on_unmanage_type) c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) - + c.argument('delete_resources', arg_type=stacks_delete_resources_type) + c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) + c.argument('delete_all', arg_type=stacks_delete_all_type) + with self.argument_context('stack sub show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) @@ -677,8 +717,11 @@ def load_arguments(self, _): c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - c.argument('unmanage_action_resources', arg_type=stacks_unmanage_action_resources_type) - c.argument('unmanage_action_resource_groups', arg_type=stacks_unmanage_action_resource_groups_type) + + with self.argument_context('stack sub export') as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack group create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) @@ -687,9 +730,11 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') - c.argument('action_on_unmanage', arg_type=stacks_action_on_unmanage_type) c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) + c.argument('delete_resources', arg_type=stacks_delete_resources_type) + c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) + c.argument('delete_all', arg_type=stacks_delete_all_type) with self.argument_context('stack group show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -707,8 +752,12 @@ def load_arguments(self, _): c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - c.argument('unmanage_action_resources', arg_type=stacks_unmanage_action_resources_type) - c.argument('unmanage_action_resource_groups', arg_type=stacks_unmanage_action_resource_groups_type) + + with self.argument_context('stack group export') as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack snapshot sub show') as c: c.argument('name', arg_type=stacks_snapshot_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 2a27a9a3aa5..5a9741c8b4b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -401,23 +401,23 @@ def load_command_table(self, _): with self.command_group('stack mg', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_management_group', confirmation = True) + g.custom_command('delete', 'delete_deployment_stack_at_management_group') g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('exportTemplate', 'export_template_deployment_stack_at_management_group') + g.custom_command('export', 'export_template_deployment_stack_at_management_group') with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('exportTemplate', 'export_template_deployment_stack_at_subscription') + g.custom_command('export', 'export_template_deployment_stack_at_subscription') with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group') g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('exportTemplate', 'export_template_deployment_stack_at_resource_group') + g.custom_command('export', 'export_template_deployment_stack_at_resource_group') # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 39ae9df9bd5..4229c298350 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2529,6 +2529,14 @@ def delete_deployment_stack_at_management_group(cmd, management_group_id, name=N return rcf.deployment_stacks.begin_delete_at_management_group(management_group_id, delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") +def export_template_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): + if name or id: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.export_template_at_management_group(management_group_id, name) + return rcf.deployment_stacks.export_template_at_management_group(management_group_id, id.split('/')[-1]) + raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") + def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if id: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index f0384fddee0..065aa877b81 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2433,7 +2433,6 @@ def test_export_template_deployment_stack_subscription(self): # cleanup self.cmd('stack sub delete --name {name} --yes') - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2799,28 +2798,22 @@ def test_create_deployment_stack_management_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - # create deployment stack with bicep file and rg scope - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{bicep-file}"', checks=self.check('provisioningState', 'succeeded')) - - # cleanup - self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2896,71 +2889,45 @@ def test_delete_deployment_stack_management_group(self): 'resource-two': resource_two, 'resource-three': resource_three, 'resource-group-two': resource_group_two, - 'resource-type-specs': "Microsoft.Resources/templateSpecs" + 'resource-type-specs': "Microsoft.Resources/templateSpecs", + 'mg': "AzGovBlueprint", + 'actual-mg':self.create_random_name('azure-cli-management', 30) }) + #self.cmd('account management-group create --name {mg}', checks=[]) + # create stack - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists - self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) + self.cmd('stack mg show --name {name} --management-group-id {mg}', checks=self.check('name', '{name}')) # delete stack with stack name - self.cmd('stack sub delete --name {name} --yes') - - #confirm stack is deleted - #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') #add delete with stack id - created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) # delete stack with id - self.cmd('stack sub delete --id {id} --yes') - - #confirm stack is deleted - #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) - - # create new resource group - delete flag --delete-resources - self.cmd('group create --location {location} --name {resource-group-two}') - - # create stack with resource1 to check if resources are being detached on delete - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) - - # delete stack set to (default) detach - self.cmd('stack sub delete --name {name} --yes') - - # check resource1 still exists in Azure - self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') - - # create stack with resource2 to check if resources are being purged on delete - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) - - # delete stack with resource2 set to delete - self.cmd('stack sub delete --name {name} --delete-resources --yes') - - #confirm resource2 has been removed from Azure - self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) - - # cleanup - delete resource group two - self.cmd('az group delete --name {resource-group-two} --yes') + self.cmd('stack mg delete --id {id} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource1 set to detach - self.cmd('stack sub delete --name {name} --yes') + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource1 set to detach - self.cmd('stack sub delete --name {name} --delete-resources --delete-resource-groups --yes') + self.cmd('stack mg delete --name {name} --management-group-id {mg} --delete-resources --delete-resource-groups --yes') # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2971,32 +2938,37 @@ def test_delete_deployment_stack_management_group(self): # cleanup self.cmd('group delete --name {resource-one} --yes') - #new code - # create new resource group - testing delete-all flag - self.cmd('group create --location {location} --name {resource-group-two}') + def test_export_template_deployment_stack_management_group(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'mg': "AzGovBlueprint", + 'actual-mg':self.create_random_name('azure-cli-management', 30) + }) - # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + #self.cmd('account management-group create --name {mg}', checks=[]) - # check template spec exists in Azure - self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') + created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + deployment_stack_id = created_deployment_stack['id'] - # check rg resource1 exists in Azure - self.cmd('group show -n {resource-one}') + self.kwargs.update({'deployment-stack-id': deployment_stack_id}) - # create stack with delete-all set - self.cmd('stack sub delete --name {name} --delete-all --yes') + # show stack with stack name + self.cmd('stack mg export --name {name} --management-group-id {mg}') - # confirm template spec has been removed from azure - self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) + # show stack with stack id + self.cmd('stack mg export --id {deployment-stack-id} --management-group-id {mg}') - #confirm rg resource1 has been removed from azure - self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) + # show stack with stack name + self.cmd('stack mg show --name {name} --management-group-id {mg}', checks=self.check('name', '{name}')) - # cleanup - delete resource group two - self.cmd('group delete --name {resource-group-two} --yes') + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - #test again @AllowLargeResponse(4096) def test_list_deployment_stack_management_group(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -3007,19 +2979,20 @@ def test_list_deployment_stack_management_group(self): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - + 'mg': "AzGovBlueprint", + 'actual-mg':self.create_random_name('azure-cli-management', 30) }) - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks - list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() + list_deployment_stacks = self.cmd('stack mg list --management-group-id {mg}').get_output_in_json() self.assertTrue(len(list_deployment_stacks) > 0) self.assertTrue(list_deployment_stacks[0]['name'], '{name}') # cleanup - self.cmd('stack sub delete --name {name} --yes') + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') @AllowLargeResponse(4096) From d2004a6b4197310c6c2e60dfbe9239d1ff77f08f Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 6 Oct 2022 09:32:09 -0400 Subject: [PATCH 063/139] Added windows.txt --- src/azure-cli/requirements.py3.windows.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 099f090d500..f978ed37ffa 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -71,7 +71,7 @@ azure-mgmt-redhatopenshift==1.1.0 azure-mgmt-redis==13.1.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.1.0b1 +azure-mgmt-resource==21.1.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==8.1.0 From f9e708be4f5a5ff1c2e5261dc11e584385c41c42 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 6 Oct 2022 09:38:22 -0400 Subject: [PATCH 064/139] added linux and darwin files to pass tests --- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 8c42b0b747d..c0559faf110 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-redhatopenshift==1.1.0 azure-mgmt-redis==13.1.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.1.0b1 +azure-mgmt-resource==21.1.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==8.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 510c74f8f00..cb4da619e73 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-redhatopenshift==1.1.0 azure-mgmt-redis==13.1.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.1.0b1 +azure-mgmt-resource==21.1.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==8.1.0 From 832a992729260703d6ff5bc28e8bbb71d4ace68a Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 6 Oct 2022 12:15:09 -0400 Subject: [PATCH 065/139] Changed Version number to 1.1 --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index e5e2801c6e6..ab3f8a34403 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 0.1.4) Manage deployment stacks at subscription or resource group scope +short-summary: (Version 1.1) Manage deployment stacks at subscription or resource group scope, this version contains MG commands & delete flags """ helps['stack mg create'] = """ From fbc2b8c2f8f5eeb6b3adac92dbf7e55d15d4b7b3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 13 Oct 2022 16:45:48 -0400 Subject: [PATCH 066/139] Added the following features: table output and deny Settings --- .../cli/command_modules/resource/_help.py | 6 ++ .../cli/command_modules/resource/_params.py | 12 +++ .../cli/command_modules/resource/commands.py | 14 +--- .../cli/command_modules/resource/custom.py | 84 +++++++++++++++++-- 4 files changed, 99 insertions(+), 17 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index ab3f8a34403..bed46b10e99 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2797,6 +2797,8 @@ text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" + - name: Create a deployment stack from a local template, using deny settings. + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" """ helps['stack mg list'] = """ @@ -2857,6 +2859,8 @@ text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" + - name: Create a deployment stack from a local template, using deny settings. + text: az stack mg create --name rollout01 --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" """ helps['stack sub list'] = """ @@ -2915,6 +2919,8 @@ text: az stack group create --name "StackName" --template-file simpleTemplate.json --resource-group "ResourceGroup" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group "ResourceGroup" + - name: Create a deployment stack from a local template, using deny settings. + text: az stack mg create --name rollout01 --resource-group "ResourceGroup" --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" """ helps['stack group list'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 90569743646..bfea7b42c99 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -104,6 +104,9 @@ def load_arguments(self, _): stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') + stacks_deny_settings_mode = CLIArgumentType(help='Defines how resources deployed by the deployment stack are locked.') + stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') + stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.") stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') @@ -669,6 +672,9 @@ def load_arguments(self, _): c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) c.argument('management-group-id', arg_type=management_group_name_type) + c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) + c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) + c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) with self.argument_context('stack mg show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -707,6 +713,9 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) + c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) + c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) + c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) with self.argument_context('stack sub show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -735,6 +744,9 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) + c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) + c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) + c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) with self.argument_context('stack group show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 5a9741c8b4b..dc131495d97 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -97,24 +97,16 @@ def transform_deployments_list(result): def transform_stacks(result): r = result - try: - managed_resources_id = r['managedResources'][0]['id'] - except: - managed_resources_id = ' ' - return OrderedDict([('Name', r['name']), ('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), - ('Managed Resources Id', managed_resources_id)]) + ('Deployment Id', r['deploymentId'])]) def transform_stacks_list(result): transformed = [] for r in result: - res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt'])]) - try: - res['Managed Resources Id'] = r['managedResources'][0]['id'] - except: - res['Managed Resources Id'] = ' ' + res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Deployment Id', r['deploymentId'])]) + transformed.append(res) return transformed diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 4229c298350..a6b13a67885 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,7 +2055,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2085,6 +2085,29 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource else: return None + deny_settings_enum = None + if deny_settings_mode: + if deny_settings_mode.lower().replace(' ', '') == "denydelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete + elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete + else: + raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + + excluded_principals_array = [] + if deny_settings_excluded_principals: + for principal in deny_settings_excluded_principals.split(" "): + excluded_principals_array.append(str(principal)) + else: + excluded_principals_array = None + + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2118,7 +2141,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2216,7 +2240,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, yes=False): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2245,6 +2269,29 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None + + deny_settings_enum = None + if deny_settings_mode: + if deny_settings_mode.lower().replace(' ', '') == "denydelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete + elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete + else: + raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + + excluded_principals_array = [] + if deny_settings_excluded_principals: + for principal in deny_settings_excluded_principals.split(" "): + excluded_principals_array.append(str(principal)) + else: + excluded_principals_array = None + + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") @@ -2270,7 +2317,8 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2379,7 +2427,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, yes=False): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2408,6 +2456,29 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete else: return None + + deny_settings_enum = None + if deny_settings_mode: + if deny_settings_mode.lower().replace(' ', '') == "denydelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete + elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete + else: + raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + + excluded_principals_array = [] + if deny_settings_excluded_principals: + for principal in deny_settings_excluded_principals.split(" "): + excluded_principals_array.append(str(principal)) + else: + excluded_principals_array = None + + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") @@ -2439,7 +2510,8 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: From 07f7fc1dc71cf950269d5f48f3a4082c9aa98321 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 14 Oct 2022 09:28:22 -0400 Subject: [PATCH 067/139] Updated version to 1.2 --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index bed46b10e99..25ff0e2bb6d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.1) Manage deployment stacks at subscription or resource group scope, this version contains MG commands & delete flags +short-summary: (Version 1.2) Manage deployment stacks at subscription or resource group scope, this version contains MG commands, delete flags, deny settings """ helps['stack mg create'] = """ From 88af83269e616bfa63cdcbef55e922efe7ce051c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 19 Oct 2022 12:32:29 -0400 Subject: [PATCH 068/139] Added applyToChildScopes - service not working --- .../azure/cli/command_modules/resource/_help.py | 10 ++++++++-- .../azure/cli/command_modules/resource/_params.py | 4 ++++ .../azure/cli/command_modules/resource/custom.py | 12 ++++++------ src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 7 files changed, 22 insertions(+), 12 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 25ff0e2bb6d..34c68bc56d7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2799,6 +2799,8 @@ text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" - name: Create a deployment stack from a local template, using deny settings. text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" + - name: Create a deployment stack from a local template, apply deny settings to child scope. + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-apply-to-child-scopes --location "westus" """ helps['stack mg list'] = """ @@ -2860,7 +2862,9 @@ - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" - name: Create a deployment stack from a local template, using deny settings. - text: az stack mg create --name rollout01 --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" + - name: Create a deployment stack from a local template, apply deny settings to child scopes. + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-apply-to-child-scopes --location "westus" """ helps['stack sub list'] = """ @@ -2920,7 +2924,9 @@ - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group "ResourceGroup" - name: Create a deployment stack from a local template, using deny settings. - text: az stack mg create --name rollout01 --resource-group "ResourceGroup" --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" + text: az stack group create --name rollout01 --resource-group "ResourceGroup" --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" + - name: Create a deployment stack from a local template, apply deny setting to child scopes. + text: az stack group create --name rollout01 --resource-group "ResourceGroup" --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-apply-to-child-scopes """ helps['stack group list'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index bfea7b42c99..4e50fbaa02e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -107,6 +107,7 @@ def load_arguments(self, _): stacks_deny_settings_mode = CLIArgumentType(help='Defines how resources deployed by the deployment stack are locked.') stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.") + stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') @@ -675,6 +676,7 @@ def load_arguments(self, _): c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) + c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) with self.argument_context('stack mg show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -716,6 +718,7 @@ def load_arguments(self, _): c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) + c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) with self.argument_context('stack sub show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -747,6 +750,7 @@ def load_arguments(self, _): c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) + c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) with self.argument_context('stack group show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index f5d28cacffa..b928e6eaf9c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,7 +2055,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2141,7 +2141,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = deny_settings_apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2240,7 +2240,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, yes=False): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2317,7 +2317,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = deny_settings_apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2427,7 +2427,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, yes=False): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2510,7 +2510,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = deny_settings_apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 34372aa4204..f9978bd3afa 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-redhatopenshift==1.1.0 azure-mgmt-redis==13.1.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.1.0 +azure-mgmt-resource==21.2.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==8.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 616d5ae36d2..a35d7689827 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-redhatopenshift==1.1.0 azure-mgmt-redis==13.1.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.1.0 +azure-mgmt-resource==21.2.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==8.1.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index f42d32f3b1b..75524594982 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -71,7 +71,7 @@ azure-mgmt-redhatopenshift==1.1.0 azure-mgmt-redis==13.1.0 azure-mgmt-relay==0.1.0 azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.1.0 +azure-mgmt-resource==21.2.0 azure-mgmt-search==8.0.0 azure-mgmt-security==2.0.0b1 azure-mgmt-servicebus==8.1.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index d3cd7e4cbd5..3e3eafc2efd 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -115,7 +115,7 @@ 'azure-mgmt-redis~=13.1.0', 'azure-mgmt-relay~=0.1.0', 'azure-mgmt-reservations==2.0.0', # TODO: Use requirements.txt instead of '==' #9781 - 'azure-mgmt-resource==21.1.0', + 'azure-mgmt-resource==21.2.0', 'azure-mgmt-search~=8.0', 'azure-mgmt-security==2.0.0b1', 'azure-mgmt-servicebus~=8.1.0', From 1a233122834414245984ea5335b13d02994c602c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 20 Oct 2022 15:16:17 -0400 Subject: [PATCH 069/139] Removed a_c_scopes from model (not supported in service yet) --- .../azure/cli/command_modules/resource/_help.py | 2 +- .../azure/cli/command_modules/resource/custom.py | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 34c68bc56d7..de00737faf4 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.2) Manage deployment stacks at subscription or resource group scope, this version contains MG commands, delete flags, deny settings +short-summary: (Version 1.3) Manage deployment stacks at subscription or resource group scope, this version contains MG commands, delete flags, deny settings. Apply to child scopes does not work, sub LIST is fixed """ helps['stack mg create'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index b928e6eaf9c..75f5cef4dd6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2141,7 +2141,9 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = deny_settings_apply_to_child_scopes) + #removed the following code because it is not in service yet, need to add this back eventually + #apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2317,7 +2319,9 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = deny_settings_apply_to_child_scopes) + #removed the following code because it is not in service yet, need to add this back eventually + #apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2510,7 +2514,9 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = deny_settings_apply_to_child_scopes) + #removed the following code because it is not in service yet, need to add this back eventually + #apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() From 5cc36661dc35e9c77fb46f8dd2085155c610dcfb Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 21 Oct 2022 12:32:56 -0400 Subject: [PATCH 070/139] Version 1.3 - delete only has one prompt with specified resources to be deleted --- .../cli/command_modules/resource/custom.py | 207 ++++++++---------- .../resource/tests/latest/test_resource.py | 22 +- 2 files changed, 97 insertions(+), 132 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 75f5cef4dd6..5a54d535b31 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,7 +2055,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2063,28 +2063,13 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource from knack.prompting import prompt_y_n if delete_all: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete if delete_resource_groups: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") - if yes or confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete if delete_resources: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None - + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + deny_settings_enum = None if deny_settings_mode: if deny_settings_mode.lower().replace(' ', '') == "denydelete": @@ -2191,32 +2176,36 @@ def list_deployment_stack_at_subscription(cmd): def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + confirmation = "Are you sure you want to delete this stack" + delete_list = [] + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - from knack.prompting import prompt_y_n if delete_all: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_list.append("resources") + delete_list.append("resource groups") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + if delete_resource_groups: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") - if yes or confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_list.append("resource groups") + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + if delete_resources: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_list.append("resources") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + #build confirmation string + from knack.prompting import prompt_y_n + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: return None else: - return None + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2242,35 +2231,19 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False, yes=False): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - from knack.prompting import prompt_y_n if delete_all: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete if delete_resource_groups: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") - if yes or confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete if delete_resources: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete deny_settings_enum = None if deny_settings_mode: @@ -2374,33 +2347,37 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + confirmation = "Are you sure you want to delete this stack" + delete_list = [] + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - from knack.prompting import prompt_y_n if delete_all: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_list.append("resources") + delete_list.append("resource groups") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + if delete_resource_groups: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") - if yes or confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_list.append("resource groups") + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + if delete_resources: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_list.append("resources") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + #build confirmation string + from knack.prompting import prompt_y_n + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: return None else: - return None - + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None + if name and resource_group: try: rcf.deployment_stacks.get_at_resource_group(resource_group,name) @@ -2431,35 +2408,19 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False, yes=False): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - from knack.prompting import prompt_y_n if delete_all: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete if delete_resource_groups: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") - if yes or confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete if delete_resources: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete deny_settings_enum = None if deny_settings_mode: @@ -2564,32 +2525,36 @@ def list_deployment_stack_at_management_group(cmd, management_group_id): def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + confirmation = "Are you sure you want to delete this stack" + delete_list = [] + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - from knack.prompting import prompt_y_n if delete_all: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources and resource groups?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_list.append("resources") + delete_list.append("resource groups") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + if delete_resource_groups: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resource groups?") - if yes or confirmation: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - else: - return None + delete_list.append("resource groups") + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + if delete_resources: - if not yes: - confirmation = prompt_y_n("Are you sure you want to set actionOnUnmanage to delete resources?") - if yes or confirmation: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_list.append("resources") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + #build confirmation string + from knack.prompting import prompt_y_n + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: return None else: - return None + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 065aa877b81..45a5d25191b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2118,19 +2118,19 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # deploy to rg - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2145,10 +2145,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('az group create --location {location} --name {resource-group-two}') # create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2157,7 +2157,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group-two} --resource-type {resource-type-specs}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2175,10 +2175,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub delete --name {name} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2187,7 +2187,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-two}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2206,7 +2206,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name"', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2215,7 +2215,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file}" --delete-all', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) From 8503f2159f48c5d8d22d5549baef5a75f1958f9c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 21 Oct 2022 13:47:47 -0400 Subject: [PATCH 071/139] 1.3 ready for bug bash --- .../resource/tests/latest/test_resource.py | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 45a5d25191b..e4b596c196d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2206,7 +2206,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}"', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2501,7 +2501,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group} --resource-type {resource-type-specs}') # update stack with resource3 with delete-resources flag - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources', checks=self.check('provisioningState', 'succeeded')) # check that resource3 exists in Azure self.cmd('resource show -n {resource-three} -g {resource-group} --resource-type {resource-type-specs}') @@ -2516,7 +2516,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}"', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 1)) @@ -2525,7 +2525,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) @@ -2544,13 +2544,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}"', checks=self.check('provisioningState', 'succeeded')) # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all', checks=self.check('provisioningState', 'succeeded')) #confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) @@ -2798,22 +2798,22 @@ def test_create_deployment_stack_management_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') From 5b0be530fc24d19038dce0ca4624067c8ddd1785 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 4 Nov 2022 11:39:54 -0400 Subject: [PATCH 072/139] Version 1.4 - Deny Settings help edit --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- src/azure-cli/azure/cli/command_modules/resource/_params.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index de00737faf4..ca2adf9e130 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.3) Manage deployment stacks at subscription or resource group scope, this version contains MG commands, delete flags, deny settings. Apply to child scopes does not work, sub LIST is fixed +short-summary: (Version 1.4) Manage deployment stacks at subscription or resource group scope, this version contains: --deny-settings help edit """ helps['stack mg create'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 4e50fbaa02e..ceb1c6c56e9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -106,7 +106,7 @@ def load_arguments(self, _): stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') stacks_deny_settings_mode = CLIArgumentType(help='Defines how resources deployed by the deployment stack are locked.') stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') - stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.") + stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') From ae0926107c27a9214b540fed5198f378715bb7da Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 4 Nov 2022 12:36:48 -0400 Subject: [PATCH 073/139] nit --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index ca2adf9e130..f39ec37fe89 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.4) Manage deployment stacks at subscription or resource group scope, this version contains: --deny-settings help edit +short-summary: (Version 1.4) Manage deployment stacks at subscription or resource group scope, this version contains denysettings help edit """ helps['stack mg create'] = """ From abb84a2a4d3ce8273227d2095af813a27f5da73b Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 14 Nov 2022 16:26:01 -0500 Subject: [PATCH 074/139] Export template output fix (1.5) --- .../azure/cli/command_modules/resource/_help.py | 2 +- .../cli/command_modules/resource/commands.py | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index f39ec37fe89..5ed2a0168f9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.4) Manage deployment stacks at subscription or resource group scope, this version contains denysettings help edit +short-summary: (Version 1.5) Manage deployment stacks at subscription or resource group scope, this version contains denysettings help edit & export template output table fix """ helps['stack mg create'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index dc131495d97..52b4dfe8368 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -110,6 +110,11 @@ def transform_stacks_list(result): transformed.append(res) return transformed +def transform_stacks_export(result): + r = result + return OrderedDict([('$scheme', r['template']['$schema']), + ('ContentVersion', r['template']['contentVersion'])]) + # pylint: disable=too-many-statements def load_command_table(self, _): from azure.cli.core.commands.arm import deployment_validate_table_format @@ -394,22 +399,22 @@ def load_command_table(self, _): g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_management_group') - g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_management_group') + g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks, confirmation=True) + g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') - g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_subscription') + g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks, confirmation=True) + g.custom_command('export', 'export_template_deployment_stack_at_subscription', table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group') - g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_resource_group') + g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks, confirmation=True) + g.custom_command('export', 'export_template_deployment_stack_at_resource_group', table_transformer=transform_stacks_export) # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: From 7c44bc13f3df7a3762d56097dfbd2108df85f3c4 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 14 Nov 2022 17:13:23 -0500 Subject: [PATCH 075/139] 1.6 - applyToChildScopes added & confirmation for deny settings added --- .../cli/command_modules/resource/_help.py | 2 +- .../cli/command_modules/resource/custom.py | 106 +++++++++++++----- 2 files changed, 78 insertions(+), 30 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 5ed2a0168f9..e4192106937 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.5) Manage deployment stacks at subscription or resource group scope, this version contains denysettings help edit & export template output table fix +short-summary: (Version 1.6) Manage deployment stacks at subscription or resource group scope, this version contains applyToChildScopes & confirmation for deny settings on PUTs have been added """ helps['stack mg create'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 5a54d535b31..2dbeb0c4726 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2057,18 +2057,20 @@ def list_template_specs(cmd, resource_group_name=None, name=None): def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_resources_enum = detach_model + delete_resource_groups_enum = detach_model from knack.prompting import prompt_y_n if delete_all: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = delete_model + delete_resource_groups_enum = delete_model if delete_resource_groups: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = delete_model if delete_resources: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = delete_model deny_settings_enum = None if deny_settings_mode: @@ -2101,7 +2103,21 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource if get_subscription_response.location != location: raise CLIError("Cannot change location of an already existing stack at subscription scope.") from knack.prompting import prompt_y_n - confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it?".format(name)) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + #first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups" + #second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDelete: resources and resource groups" + else: + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources" + build_confirmation_string += "\nDelete: resource groups" + else: + build_confirmation_string += "\nDetach: resource groups" + build_confirmation_string += "\nDelete: resources" + confirmation = prompt_y_n(build_confirmation_string) if not confirmation: return None pass @@ -2126,9 +2142,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - #removed the following code because it is not in service yet, need to add this back eventually - #apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2234,16 +2249,19 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + delete_resources_enum = detach_model + delete_resource_groups_enum = detach_model if delete_all: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = delete_model + delete_resource_groups_enum = delete_model if delete_resource_groups: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = delete_model if delete_resources: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = delete_model deny_settings_enum = None if deny_settings_mode: @@ -2273,7 +2291,21 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): from knack.prompting import prompt_y_n - confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current resource group. Do you want to overwrite it?".format(name)) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + #first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups" + #second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDelete: resources and resource groups" + else: + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources" + build_confirmation_string += "\nDelete: resource groups" + else: + build_confirmation_string += "\nDetach: resource groups" + build_confirmation_string += "\nDelete: resources" + confirmation = prompt_y_n(build_confirmation_string) if not confirmation: return None pass @@ -2293,8 +2325,8 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) #removed the following code because it is not in service yet, need to add this back eventually - #apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2410,17 +2442,20 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_resources_enum = detach_model + delete_resource_groups_enum = detach_model if delete_all: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = delete_model + delete_resource_groups_enum = delete_model if delete_resource_groups: - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = delete_model if delete_resources: - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resources_enum = delete_model deny_settings_enum = None if deny_settings_mode: @@ -2453,7 +2488,21 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, if get_subscription_response.location != location: raise CLIError("Cannot change location of an already existing stack at subscription scope.") from knack.prompting import prompt_y_n - confirmation = prompt_y_n("The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it?".format(name)) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + #first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups" + #second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDelete: resources and resource groups" + else: + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources" + build_confirmation_string += "\nDelete: resource groups" + else: + build_confirmation_string += "\nDetach: resource groups" + build_confirmation_string += "\nDelete: resources" + confirmation = prompt_y_n(build_confirmation_string) if not confirmation: return None pass @@ -2475,9 +2524,8 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) - #removed the following code because it is not in service yet, need to add this back eventually - #apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array) + apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() From c11b507f9b9b2403ad403efa9813790ee866dc3f Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 21 Nov 2022 14:13:04 -0500 Subject: [PATCH 076/139] Tested & Passed All ITs for RG & Sub scope, not for MG scope --- .../cli/command_modules/resource/custom.py | 75 +- ...ate_deployment_stack_management_group.yaml | 1001 +-- ...reate_deployment_stack_resource_group.yaml | 4791 +++++++++++++- ..._create_deployment_stack_subscription.yaml | 5501 ++++++++++++++-- ...ete_deployment_stack_management_group.yaml | 878 +-- ...elete_deployment_stack_resource_group.yaml | 4133 +++++++++++- ..._delete_deployment_stack_subscription.yaml | 5770 +++++++++++------ ...plate_deployment_stack_resource_group.yaml | 282 +- ...emplate_deployment_stack_subscription.yaml | 287 +- ..._list_deployment_stack_resource_group.yaml | 222 +- ...st_list_deployment_stack_subscription.yaml | 1221 ++-- ..._show_deployment_stack_resource_group.yaml | 254 +- ...st_show_deployment_stack_subscription.yaml | 266 +- .../resource/tests/latest/test_resource.py | 78 +- 14 files changed, 19464 insertions(+), 5295 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 2dbeb0c4726..f74fdd8f171 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2102,25 +2102,27 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource if get_subscription_response: if get_subscription_response.location != location: raise CLIError("Cannot change location of an already existing stack at subscription scope.") - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) - #first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups" - #second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDelete: resources and resource groups" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources" - build_confirmation_string += "\nDelete: resource groups" + #bypass if yes flag is true + if not yes: + from knack.prompting import prompt_y_n + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + #first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups" + #second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDelete: resources and resource groups" else: - build_confirmation_string += "\nDetach: resource groups" - build_confirmation_string += "\nDelete: resources" - confirmation = prompt_y_n(build_confirmation_string) - if not confirmation: - return None - pass + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources" + build_confirmation_string += "\nDelete: resource groups" + else: + build_confirmation_string += "\nDetach: resource groups" + build_confirmation_string += "\nDelete: resources" + confirmation = prompt_y_n(build_confirmation_string) + if not confirmation: + return None + pass except: pass @@ -2290,25 +2292,26 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) - #first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups" - #second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDelete: resources and resource groups" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources" - build_confirmation_string += "\nDelete: resource groups" + if not yes: + from knack.prompting import prompt_y_n + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + #first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups" + #second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDelete: resources and resource groups" else: - build_confirmation_string += "\nDetach: resource groups" - build_confirmation_string += "\nDelete: resources" - confirmation = prompt_y_n(build_confirmation_string) - if not confirmation: - return None - pass + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources" + build_confirmation_string += "\nDelete: resource groups" + else: + build_confirmation_string += "\nDetach: resource groups" + build_confirmation_string += "\nDelete: resources" + confirmation = prompt_y_n(build_confirmation_string) + if not confirmation: + return None + pass except: pass t_spec, t_uri = None, None diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml index a4fc87e120c..fdf77ec9bd0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:02 GMT + - Fri, 21 Oct 2022 17:49:24 GMT expires: - '-1' pragma: @@ -44,7 +44,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 9730EBC907664DFFA10DF45BC3B9DC43 Ref B: BL2AA2030109051 Ref C: 2022-10-05T20:39:02Z' + - 'Ref A: A7C1412E3A2447C6BA1D783385E6FD1B Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:24Z' status: code: 404 message: Not Found @@ -62,7 +62,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:02 GMT + - Fri, 21 Oct 2022 17:49:24 GMT expires: - '-1' pragma: @@ -93,7 +93,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: BB13B4134741491EB866E7CD5D60ED35 Ref B: BL2AA2030109051 Ref C: 2022-10-05T20:39:02Z' + - 'Ref A: 717FB52CDC1B4A33BEE15C63CD8A7125 Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:25Z' status: code: 404 message: Not Found @@ -115,7 +115,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 @@ -123,9 +123,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:03.2109756Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:25.3997048Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:03.2109756Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:25.3997048Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:03 GMT + - Fri, 21 Oct 2022 17:49:25 GMT expires: - '-1' pragma: @@ -148,9 +148,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-msedge-ref: - - 'Ref A: C49166C6C7DD4A64BA3BB6040EC9FAAC Ref B: BL2AA2030109051 Ref C: 2022-10-05T20:39:02Z' + - 'Ref A: C8D52AFF15834FD388B77F0DAE9A5DE4 Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:25Z' status: code: 201 message: Created @@ -178,7 +178,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 @@ -197,9 +197,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:03.8836398Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:25.9465689Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:03.8836398Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:25.9465689Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:03 GMT + - Fri, 21 Oct 2022 17:49:26 GMT expires: - '-1' pragma: @@ -223,9 +223,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-msedge-ref: - - 'Ref A: 11176CA0CFEF499E9A87C82FE3D2F860 Ref B: BL2AA2030109051 Ref C: 2022-10-05T20:39:03Z' + - 'Ref A: 8E98349A74A04003A43DB841C9B88B21 Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:25Z' status: code: 201 message: Created @@ -241,9 +241,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -259,7 +259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:04 GMT + - Fri, 21 Oct 2022 17:49:25 GMT expires: - '-1' pragma: @@ -273,7 +273,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: DF6CB828900542E9B2A9E9E3ED63B30D Ref B: BL2AA2030105023 Ref C: 2022-10-05T20:39:04Z' + - 'Ref A: 94ACB04D006F4394B390C7F13FEB71CF Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:26Z' status: code: 404 message: Not Found @@ -285,7 +285,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {}}}' headers: Accept: - application/json @@ -296,13 +297,13 @@ interactions: Connection: - keep-alive Content-Length: - - '775' + - '795' Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -311,28 +312,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:05.2969947Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:05.2969947Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-10-21T17:49:26.8869942Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:26.8869942Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/22b7bfad-42e2-4b99-ab78-5591c42c6e9b?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7b08973b-0243-4231-9f13-3b5a3f757818?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1130' + - '1219' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:06 GMT + - Fri, 21 Oct 2022 17:49:26 GMT expires: - '-1' pragma: @@ -344,9 +346,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1197' x-msedge-ref: - - 'Ref A: 88B51059D8324D8DADEF5E2DC1D603B5 Ref B: BL2AA2030105023 Ref C: 2022-10-05T20:39:04Z' + - 'Ref A: 313978FE17D74B079A9742688BE30412 Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:26Z' status: code: 201 message: Created @@ -362,16 +364,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/22b7bfad-42e2-4b99-ab78-5591c42c6e9b?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7b08973b-0243-4231-9f13-3b5a3f757818?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/22b7bfad-42e2-4b99-ab78-5591c42c6e9b\",\r\n - \ \"name\": \"22b7bfad-42e2-4b99-ab78-5591c42c6e9b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7b08973b-0243-4231-9f13-3b5a3f757818\",\r\n + \ \"name\": \"7b08973b-0243-4231-9f13-3b5a3f757818\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -380,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:24 GMT + - Fri, 21 Oct 2022 17:49:43 GMT expires: - '-1' pragma: @@ -392,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: EC7FFE10247644A1AF84BABA800551B6 Ref B: BL2AA2030105023 Ref C: 2022-10-05T20:39:24Z' + - 'Ref A: FE87C5D99E9440FDA4519D40BC50DBC8 Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:44Z' status: code: 200 message: OK @@ -408,42 +410,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-39-06-47eff\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-39-06-47eff\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-27-945de\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.5862906S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:39:05.2969947Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:05.2969947Z\"\r\n + \ \"duration\": \"PT5.8504723S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:26.8869942Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:26.8869942Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1743' + - '1611' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:24 GMT + - Fri, 21 Oct 2022 17:49:44 GMT expires: - '-1' pragma: @@ -455,7 +458,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4BA4FBD93E024BF8B9B439FD8E49FB62 Ref B: BL2AA2030105023 Ref C: 2022-10-05T20:39:24Z' + - 'Ref A: 8C2B9683CF604F46959B3A453EB3B787 Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:45Z' status: code: 200 message: OK @@ -473,40 +476,41 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-39-06-47eff\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-39-06-47eff\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-27-945de\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.5862906S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:39:05.2969947Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:05.2969947Z\"\r\n + \ \"duration\": \"PT5.8504723S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:26.8869942Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:26.8869942Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1743' + - '1611' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:25 GMT + - Fri, 21 Oct 2022 17:49:45 GMT expires: - '-1' pragma: @@ -518,7 +522,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 774ABB8B4E2B46628911F4B3ECA91FAD Ref B: BL2AA2030109053 Ref C: 2022-10-05T20:39:25Z' + - 'Ref A: 0C301A9CC64848C486E50F637637BCF9 Ref B: MIAEDGE2316 Ref C: 2022-10-21T17:49:45Z' status: code: 200 message: OK @@ -538,7 +542,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview @@ -551,7 +555,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 20:39:25 GMT + - Fri, 21 Oct 2022 17:49:45 GMT expires: - '-1' pragma: @@ -563,9 +567,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14999' + - '14997' x-msedge-ref: - - 'Ref A: B17DDD51E9FB471E9B0548C7CE7A0D34 Ref B: BL2AA2030109053 Ref C: 2022-10-05T20:39:25Z' + - 'Ref A: CB3F94D964D94EA18DB1AD6F5F67D82C Ref B: MIAEDGE2316 Ref C: 2022-10-21T17:49:46Z' status: code: 200 message: OK @@ -581,9 +585,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters --yes + - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -599,7 +603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:26 GMT + - Fri, 21 Oct 2022 17:49:46 GMT expires: - '-1' pragma: @@ -613,7 +617,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E3650DB47C8340CE801F0E90BE0237AF Ref B: BL2AA2030105017 Ref C: 2022-10-05T20:39:26Z' + - 'Ref A: E0E3F47A155A454197D19C38DE3D4209 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:49:46Z' status: code: 404 message: Not Found @@ -629,9 +633,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters --yes + - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 @@ -650,9 +654,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:03.8836398Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:25.9465689Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:03.8836398Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:25.9465689Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -664,7 +668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:29 GMT + - Fri, 21 Oct 2022 17:49:47 GMT expires: - '-1' pragma: @@ -676,14 +680,15 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 9A399AFFB2714C65BBC88D843E2A94DB Ref B: BL2AA2030106017 Ref C: 2022-10-05T20:39:27Z' + - 'Ref A: 37CA414668404D388D93F58BCC21ECAB Ref B: MIAEDGE2722 Ref C: 2022-10-21T17:49:47Z' status: code: 200 message: OK - request: body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {}}}' headers: Accept: - application/json @@ -694,13 +699,13 @@ interactions: Connection: - keep-alive Content-Length: - - '464' + - '484' Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-spec --parameters --yes + - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -709,29 +714,30 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:30.6629162Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:48.0035593Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:30.6629162Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:48.0035593Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f95f79bd-0c4d-4a97-96b1-f60b91e42d2a?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/749b06cb-e11f-4ce8-a8fd-097592939a7c?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1361' + - '1450' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:31 GMT + - Fri, 21 Oct 2022 17:49:48 GMT expires: - '-1' pragma: @@ -743,9 +749,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1197' + - '1199' x-msedge-ref: - - 'Ref A: D8DCA2B77A0C4F968C07D9D15DD1780B Ref B: BL2AA2030105017 Ref C: 2022-10-05T20:39:29Z' + - 'Ref A: 19EA1D2ED520446E824738DC64209113 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:49:47Z' status: code: 201 message: Created @@ -761,16 +767,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters --yes + - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f95f79bd-0c4d-4a97-96b1-f60b91e42d2a?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/749b06cb-e11f-4ce8-a8fd-097592939a7c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f95f79bd-0c4d-4a97-96b1-f60b91e42d2a\",\r\n - \ \"name\": \"f95f79bd-0c4d-4a97-96b1-f60b91e42d2a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/749b06cb-e11f-4ce8-a8fd-097592939a7c\",\r\n + \ \"name\": \"749b06cb-e11f-4ce8-a8fd-097592939a7c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -779,7 +785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:48 GMT + - Fri, 21 Oct 2022 17:50:05 GMT expires: - '-1' pragma: @@ -791,7 +797,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F09685841CCA45B6B882BEE4033BDAA5 Ref B: BL2AA2030105017 Ref C: 2022-10-05T20:39:48Z' + - 'Ref A: CC5539FBD6B74EB2AEFDA3FF4F5C9D18 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:50:06Z' status: code: 200 message: OK @@ -807,43 +813,44 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters --yes + - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-39-31-b303f\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-39-31-b303f\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-48-82684\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.2443538S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"duration\": \"PT15.0568667S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:30.6629162Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:48.0035593Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:30.6629162Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:48.0035593Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1974' + - '1843' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:49 GMT + - Fri, 21 Oct 2022 17:50:06 GMT expires: - '-1' pragma: @@ -855,7 +862,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: CC28B9E9CFB640FBB550058D5D78EE4E Ref B: BL2AA2030105017 Ref C: 2022-10-05T20:39:49Z' + - 'Ref A: 3E77B6AB8C984E91BB47AEC77E133D84 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:50:06Z' status: code: 200 message: OK @@ -873,41 +880,42 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-39-31-b303f\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-39-31-b303f\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-48-82684\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.2443538S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"duration\": \"PT15.0568667S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:30.6629162Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:48.0035593Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:30.6629162Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:48.0035593Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1974' + - '1843' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:51 GMT + - Fri, 21 Oct 2022 17:50:06 GMT expires: - '-1' pragma: @@ -919,7 +927,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D3B43951C7FD43DFBC722F7447DC902E Ref B: BL2AA2030107037 Ref C: 2022-10-05T20:39:50Z' + - 'Ref A: 0543964C490746658D0433C0BFA5B6AD Ref B: MIAEDGE2721 Ref C: 2022-10-21T17:50:06Z' status: code: 200 message: OK @@ -939,7 +947,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview @@ -952,7 +960,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 20:39:52 GMT + - Fri, 21 Oct 2022 17:50:07 GMT expires: - '-1' pragma: @@ -966,7 +974,7 @@ interactions: x-ms-ratelimit-remaining-tenant-deletes: - '14999' x-msedge-ref: - - 'Ref A: 889DF99DBAEC4854974C0DDDE7537C61 Ref B: BL2AA2030107037 Ref C: 2022-10-05T20:39:51Z' + - 'Ref A: 9A05BA0231464621BFB0F57AA02A4AD9 Ref B: MIAEDGE2721 Ref C: 2022-10-21T17:50:07Z' status: code: 200 message: OK @@ -982,9 +990,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -1000,7 +1008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:52 GMT + - Fri, 21 Oct 2022 17:50:07 GMT expires: - '-1' pragma: @@ -1014,7 +1022,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: B2B5958D05714FB5ABED3325E47BC69F Ref B: BL2AA2030108037 Ref C: 2022-10-05T20:39:53Z' + - 'Ref A: E820741328094DFD849936C7F80C14E7 Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:07Z' status: code: 404 message: Not Found @@ -1026,7 +1034,7 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' headers: Accept: - application/json @@ -1037,13 +1045,13 @@ interactions: Connection: - keep-alive Content-Length: - - '691' + - '711' Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -1052,27 +1060,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:39:53.67779Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:53.67779Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:08.3853209Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bfdc7648-b907-4849-9e12-32454f48e543?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1101' + - '1194' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:39:54 GMT + - Fri, 21 Oct 2022 17:50:08 GMT expires: - '-1' pragma: @@ -1084,9 +1094,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1197' + - '1199' x-msedge-ref: - - 'Ref A: 9DBDA1D5F828409197A092DB83F3B606 Ref B: BL2AA2030108037 Ref C: 2022-10-05T20:39:53Z' + - 'Ref A: 9E92142F0C36480BAA3EADD43B550ABD Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:08Z' status: code: 201 message: Created @@ -1102,16 +1112,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bfdc7648-b907-4849-9e12-32454f48e543?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bfdc7648-b907-4849-9e12-32454f48e543\",\r\n - \ \"name\": \"bfdc7648-b907-4849-9e12-32454f48e543\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n + \ \"name\": \"59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache @@ -1120,7 +1130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:40:11 GMT + - Fri, 21 Oct 2022 17:50:25 GMT expires: - '-1' pragma: @@ -1132,7 +1142,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DE09162C8D894783931A3192332EC1D9 Ref B: BL2AA2030108037 Ref C: 2022-10-05T20:40:11Z' + - 'Ref A: C7B57F14F3EE4E7784E4FBB7D9E94CFC Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:26Z' status: code: 200 message: OK @@ -1148,198 +1158,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-39-54-2d177\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-39-54-2d177\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.5944181S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:53.67779Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:39:53.67779Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1752' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:40:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F43E3E1F8EC54A50B8A27CBF3601C4B3 Ref B: BL2AA2030108037 Ref C: 2022-10-05T20:40:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '199' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:40: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-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: B3E25645194F4683864E90625C52683E Ref B: BL2AA2030105037 Ref C: 2022-10-05T20:40:13Z' - status: - code: 404 - message: Not Found -- request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", - "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": - [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", - "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], - "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - Content-Length: - - '691' - Content-Type: - - application/json - ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:39:53.67779Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:40:14.436225Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/412f7177-ca6b-45f9-979c-4d44e34c091f?api-version=2022-08-01-preview - cache-control: - - no-cache - content-length: - - '1102' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:40: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-ratelimit-remaining-tenant-writes: - - '1196' - x-msedge-ref: - - 'Ref A: FE634B45884A4EB080C9D03CA2E8E978 Ref B: BL2AA2030105037 Ref C: 2022-10-05T20:40:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/412f7177-ca6b-45f9-979c-4d44e34c091f?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/412f7177-ca6b-45f9-979c-4d44e34c091f\",\r\n - \ \"name\": \"412f7177-ca6b-45f9-979c-4d44e34c091f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n + \ \"name\": \"59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1348,7 +1176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:40:32 GMT + - Fri, 21 Oct 2022 17:50:55 GMT expires: - '-1' pragma: @@ -1360,7 +1188,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 67C2F63169954074B3E531C3D320DAC9 Ref B: BL2AA2030105037 Ref C: 2022-10-05T20:40:32Z' + - 'Ref A: A448FCA7050B4F67AFC6CA87BB99A473 Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:56Z' status: code: 200 message: OK @@ -1376,42 +1204,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-40-14-7b2b2\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-40-14-7b2b2\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-50-08-3df9e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2835529S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ \"duration\": \"PT47.3080038S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:53.67779Z\",\r\n + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:40:14.436225Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:08.3853209Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1890' + - '1625' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:40:33 GMT + - Fri, 21 Oct 2022 17:50:56 GMT expires: - '-1' pragma: @@ -1423,97 +1250,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FAD65E2D07104CD990B1E851DCB31841 Ref B: BL2AA2030105037 Ref C: 2022-10-05T20:40:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group show - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '252' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:40:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7586A0B5BA0649FC93EC0695B8B7D805 Ref B: BL2AA2030109053 Ref C: 2022-10-05T20:40:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group show - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '252' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:40:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7DDB846EF798413399C301024E888E36 Ref B: BL2AA2030105051 Ref C: 2022-10-05T20:40:34Z' + - 'Ref A: FA60D9AFC8DC43218A264A82B9CD5700 Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:56Z' status: code: 200 message: OK @@ -1529,10 +1266,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview @@ -1548,7 +1284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:40:34 GMT + - Fri, 21 Oct 2022 17:50:57 GMT expires: - '-1' pragma: @@ -1562,7 +1298,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 088610C9CAD7450DBB97A694BBD720C0 Ref B: BL2AA2030109003 Ref C: 2022-10-05T20:40:34Z' + - 'Ref A: C4A9850511D2493D85B65B7A2449F322 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:50:57Z' status: code: 404 message: Not Found @@ -1572,9 +1308,9 @@ interactions: "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], - "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, - "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' headers: Accept: - application/json @@ -1585,43 +1321,44 @@ interactions: Connection: - keep-alive Content-Length: - - '693' + - '711' Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:39:53.67779Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:40:35.2998097Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:57.8848446Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5e752024-9321-426e-ab0f-2c35bdb5b51c?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1105' + - '1194' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:40:35 GMT + - Fri, 21 Oct 2022 17:50:58 GMT expires: - '-1' pragma: @@ -1633,9 +1370,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1196' + - '1198' x-msedge-ref: - - 'Ref A: 7940E17C776A4B37A0EEC91418D65D58 Ref B: BL2AA2030109003 Ref C: 2022-10-05T20:40:35Z' + - 'Ref A: 2CE39ABAFBCE499196BA54E0AE9C9706 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:50:57Z' status: code: 200 message: OK @@ -1651,26 +1388,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5e752024-9321-426e-ab0f-2c35bdb5b51c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5e752024-9321-426e-ab0f-2c35bdb5b51c\",\r\n - \ \"name\": \"5e752024-9321-426e-ab0f-2c35bdb5b51c\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n + \ \"name\": \"688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '218' + - '215' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:40:53 GMT + - Fri, 21 Oct 2022 17:51:15 GMT expires: - '-1' pragma: @@ -1682,7 +1418,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D48C0FB32B044AC5BA5048B4BFB89924 Ref B: BL2AA2030109003 Ref C: 2022-10-05T20:40:53Z' + - 'Ref A: ADBC407498F04F3B822D71CB831D0B09 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:51:15Z' status: code: 200 message: OK @@ -1698,17 +1434,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5e752024-9321-426e-ab0f-2c35bdb5b51c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5e752024-9321-426e-ab0f-2c35bdb5b51c\",\r\n - \ \"name\": \"5e752024-9321-426e-ab0f-2c35bdb5b51c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n + \ \"name\": \"688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1717,7 +1452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:41:23 GMT + - Fri, 21 Oct 2022 17:51:45 GMT expires: - '-1' pragma: @@ -1729,7 +1464,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3B2FF700C7D946319CBF894E3887FAAF Ref B: BL2AA2030109003 Ref C: 2022-10-05T20:41:23Z' + - 'Ref A: E058E5BB5D82471DB54EFEABEF954A72 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:51:45Z' status: code: 200 message: OK @@ -1745,43 +1480,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources --yes + - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-40-35-0245d\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-40-35-0245d\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-50-58-de17e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT36.5027592S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ \"duration\": \"PT24.9770282S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:53.67779Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:40:35.2998097Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:57.8848446Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1895' + - '1761' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:41:23 GMT + - Fri, 21 Oct 2022 17:51:46 GMT expires: - '-1' pragma: @@ -1793,7 +1527,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: C0EAAF8097224B88905F616818A2E594 Ref B: BL2AA2030109003 Ref C: 2022-10-05T20:41:23Z' + - 'Ref A: B0C05CE852F349F49369AE26040445A2 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:51:46Z' status: code: 200 message: OK @@ -1811,7 +1545,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 @@ -1826,7 +1560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:41:24 GMT + - Fri, 21 Oct 2022 17:51:47 GMT expires: - '-1' pragma: @@ -1838,7 +1572,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 37E6BEA9461B4044AE982C4445F6C4C4 Ref B: BL2AA2030110019 Ref C: 2022-10-05T20:41:24Z' + - 'Ref A: 3856B1A3B22F42AE85D4C24BB2272B60 Ref B: MIAEDGE1311 Ref C: 2022-10-21T17:51:46Z' status: code: 200 message: OK @@ -1856,128 +1590,22 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '256' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:41:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0E6257AFAE6642D58D2087F3304457CE Ref B: BL2AA2030106037 Ref C: 2022-10-05T20:41:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T20:39:03.1526088Z","changedTime":"2022-10-05T20:39:03.4083503Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T20:39:03.2109756Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:39:03.2109756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T20:39:03.7967086Z","changedTime":"2022-10-05T20:39:04.0564434Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T20:39:03.8836398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:39:03.8836398Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-03T15:42:17.1860883Z","changedTime":"2022-10-03T15:52:18.2481327Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-03T15:42:17.2411126Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-03T15:42:17.7879742Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-10-03T15:42:17.7441761Z","changedTime":"2022-10-03T15:52:20.5473754Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-03T15:42:17.7879742Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-03T15:42:17.7879742Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '54486' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 20:41:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 781F2B490F5349028AEA1A15ECFC2BB6 Ref B: BL2AA2030106005 Ref C: 2022-10-05T20:41:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg delete - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-10-05-20-40-35-0245d\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-40-35-0245d\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT36.5027592S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:39:53.67779Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:40:35.2998097Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1895' + - '252' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:41:26 GMT + - Fri, 21 Oct 2022 17:51:47 GMT expires: - '-1' pragma: @@ -1989,54 +1617,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 60C42795F73A409EA556412995DD66D3 Ref B: BL2AA2030107005 Ref C: 2022-10-05T20:41:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --management-group-id --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 05 Oct 2022 20:41: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-ratelimit-remaining-tenant-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: 53E2CE607A9A4C1EB66F39374236916A Ref B: BL2AA2030107005 Ref C: 2022-10-05T20:41:26Z' + - 'Ref A: 05308973A0904D43A7346D2E39F72E53 Ref B: MIAEDGE1910 Ref C: 2022-10-21T17:51:47Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index c7e0eace521..307f69fcffd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -13,7 +13,8 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -29,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:25 GMT + - Fri, 18 Nov 2022 18:37:28 GMT expires: - '-1' pragma: @@ -57,7 +58,8 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -73,7 +75,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:25 GMT + - Fri, 18 Nov 2022 18:37:28 GMT expires: - '-1' pragma: @@ -105,16 +107,17 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:27.507167Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:30.719309Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:27.507167Z\"\r\n },\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:30.719309Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:27 GMT + - Fri, 18 Nov 2022 18:37:30 GMT expires: - '-1' pragma: @@ -165,7 +168,8 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -183,9 +187,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:28.8071549Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:32.3926642Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:28.8071549Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:32.3926642Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:28 GMT + - Fri, 18 Nov 2022 18:37:31 GMT expires: - '-1' pragma: @@ -225,11 +229,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -243,7 +248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:29 GMT + - Fri, 18 Nov 2022 18:37:33 GMT expires: - '-1' pragma: @@ -264,8 +269,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -276,49 +282,43 @@ interactions: Connection: - keep-alive Content-Length: - - '642' + - '725' Content-Type: - application/json ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.886982Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:34.0621797Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.886982Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:34.0621797Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5de7ced-4b2a-4a24-b826-006332a3b26c?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70c4d2dd-4b34-44de-9b6e-678fa6eb9341?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1733' + - '1154' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:29 GMT + - Fri, 18 Nov 2022 18:37:33 GMT expires: - '-1' pragma: @@ -346,15 +346,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5de7ced-4b2a-4a24-b826-006332a3b26c?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70c4d2dd-4b34-44de-9b6e-678fa6eb9341?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5de7ced-4b2a-4a24-b826-006332a3b26c\",\r\n - \ \"name\": \"b5de7ced-4b2a-4a24-b826-006332a3b26c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70c4d2dd-4b34-44de-9b6e-678fa6eb9341\",\r\n + \ \"name\": \"70c4d2dd-4b34-44de-9b6e-678fa6eb9341\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -363,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:46 GMT + - Fri, 18 Nov 2022 18:37:50 GMT expires: - '-1' pragma: @@ -393,44 +394,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-29-f0aee\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-29-f0aee\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.886982Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-34-e86ed\",\r\n + \ \"duration\": \"PT5.4080075S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:34.0621797Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.886982Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:34.0621797Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2220' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:47 GMT + - Fri, 18 Nov 2022 18:37:50 GMT expires: - '-1' pragma: @@ -462,42 +460,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-29-f0aee\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-29-f0aee\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.886982Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-34-e86ed\",\r\n + \ \"duration\": \"PT5.4080075S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:34.0621797Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.886982Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:34.0621797Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2220' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:47 GMT + - Fri, 18 Nov 2022 18:37:52 GMT expires: - '-1' pragma: @@ -531,9 +526,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -543,7 +539,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:17:48 GMT + - Fri, 18 Nov 2022 18:37:53 GMT expires: - '-1' pragma: @@ -571,11 +567,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-spec --parameters + - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -589,7 +586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:48 GMT + - Fri, 18 Nov 2022 18:37:53 GMT expires: - '-1' pragma: @@ -615,9 +612,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-spec --parameters + - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -635,9 +633,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:28.8071549Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:32.3926642Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:28.8071549Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:32.3926642Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -649,7 +647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:49 GMT + - Fri, 18 Nov 2022 18:37:54 GMT expires: - '-1' pragma: @@ -669,8 +667,9 @@ interactions: message: OK - request: body: '{"properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -681,39 +680,44 @@ interactions: Connection: - keep-alive Content-Length: - - '331' + - '414' Content-Type: - application/json ParameterSetName: - - --name --resource-group --update-behavior --template-spec --parameters + - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n - \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:49.3017228Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:55.7678736Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:49.3017228Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:55.7678736Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8a5faf71-8548-43b8-b093-6d655902b1d8?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e60acf1-c878-424e-b319-86d510c94285?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1122' + - '1385' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:49 GMT + - Fri, 18 Nov 2022 18:37:55 GMT expires: - '-1' pragma: @@ -741,15 +745,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-spec --parameters + - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8a5faf71-8548-43b8-b093-6d655902b1d8?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e60acf1-c878-424e-b319-86d510c94285?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8a5faf71-8548-43b8-b093-6d655902b1d8\",\r\n - \ \"name\": \"8a5faf71-8548-43b8-b093-6d655902b1d8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e60acf1-c878-424e-b319-86d510c94285\",\r\n + \ \"name\": \"5e60acf1-c878-424e-b319-86d510c94285\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -758,7 +763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:06 GMT + - Fri, 18 Nov 2022 18:38:13 GMT expires: - '-1' pragma: @@ -788,34 +793,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-spec --parameters + - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-49-6cee7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-49-6cee7\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n - \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:49.3017228Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-55-59a12\",\r\n + \ \"duration\": \"PT6.0543254S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:55.7678736Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:49.3017228Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:55.7678736Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1609' + - '1825' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:06 GMT + - Fri, 18 Nov 2022 18:38:13 GMT expires: - '-1' pragma: @@ -847,32 +860,40 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-49-6cee7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-17-49-6cee7\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n - \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:49.3017228Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-55-59a12\",\r\n + \ \"duration\": \"PT6.0543254S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:55.7678736Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:49.3017228Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:55.7678736Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1609' + - '1825' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:07 GMT + - Fri, 18 Nov 2022 18:38:14 GMT expires: - '-1' pragma: @@ -906,9 +927,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -918,7 +940,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:07 GMT + - Fri, 18 Nov 2022 18:38:14 GMT expires: - '-1' pragma: @@ -946,11 +968,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file + - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -964,7 +987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:07 GMT + - Fri, 18 Nov 2022 18:38:15 GMT expires: - '-1' pragma: @@ -978,17 +1001,142 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://aka.ms/BicepLatestRelease + response: + body: + string: '' + headers: + cache-control: + - max-age=0, no-cache, no-store + connection: + - keep-alive + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:38:18 GMT + expires: + - Fri, 18 Nov 2022 18:38:18 GMT + location: + - https://api.github.com/repos/Azure/bicep/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://api.github.com/repos/Azure/bicep/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589","assets_url":"https://api.github.com/repos/Azure/bicep/releases/82328589/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/82328589/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.12.40","id":82328589,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4E6DwN","tag_name":"v0.12.40","target_commitish":"main","name":"v0.12.40","draft":false,"prerelease":false,"created_at":"2022-11-07T20:36:40Z","published_at":"2022-11-08T00:33:06Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810432","id":83810432,"node_id":"RA_kwDOD7S9ks4E_tiA","name":"Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21621241,"download_count":6,"created_at":"2022-11-08T00:14:33Z","updated_at":"2022-11-08T00:14:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810410","id":83810410,"node_id":"RA_kwDOD7S9ks4E_thq","name":"Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22089629,"download_count":4,"created_at":"2022-11-08T00:14:22Z","updated_at":"2022-11-08T00:14:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810466","id":83810466,"node_id":"RA_kwDOD7S9ks4E_tii","name":"Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21514215,"download_count":6,"created_at":"2022-11-08T00:14:57Z","updated_at":"2022-11-08T00:14:58Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810446","id":83810446,"node_id":"RA_kwDOD7S9ks4E_tiO","name":"Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21998044,"download_count":4,"created_at":"2022-11-08T00:14:43Z","updated_at":"2022-11-08T00:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810400","id":83810400,"node_id":"RA_kwDOD7S9ks4E_thg","name":"Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21908652,"download_count":7,"created_at":"2022-11-08T00:14:08Z","updated_at":"2022-11-08T00:14:09Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810386","id":83810386,"node_id":"RA_kwDOD7S9ks4E_thS","name":"Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22179616,"download_count":8,"created_at":"2022-11-08T00:13:56Z","updated_at":"2022-11-08T00:13:57Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810314","id":83810314,"node_id":"RA_kwDOD7S9ks4E_tgK","name":"Azure.Bicep.Core.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":474567,"download_count":4,"created_at":"2022-11-08T00:12:37Z","updated_at":"2022-11-08T00:12:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810315","id":83810315,"node_id":"RA_kwDOD7S9ks4E_tgL","name":"Azure.Bicep.Core.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":157634,"download_count":5,"created_at":"2022-11-08T00:12:39Z","updated_at":"2022-11-08T00:12:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810318","id":83810318,"node_id":"RA_kwDOD7S9ks4E_tgO","name":"Azure.Bicep.Decompiler.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":88874,"download_count":5,"created_at":"2022-11-08T00:12:41Z","updated_at":"2022-11-08T00:12:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810326","id":83810326,"node_id":"RA_kwDOD7S9ks4E_tgW","name":"Azure.Bicep.Decompiler.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22628,"download_count":4,"created_at":"2022-11-08T00:12:43Z","updated_at":"2022-11-08T00:12:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810327","id":83810327,"node_id":"RA_kwDOD7S9ks4E_tgX","name":"Azure.Bicep.MSBuild.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45332,"download_count":5,"created_at":"2022-11-08T00:12:45Z","updated_at":"2022-11-08T00:12:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810329","id":83810329,"node_id":"RA_kwDOD7S9ks4E_tgZ","name":"Azure.Bicep.MSBuild.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6944,"download_count":4,"created_at":"2022-11-08T00:12:47Z","updated_at":"2022-11-08T00:12:48Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810330","id":83810330,"node_id":"RA_kwDOD7S9ks4E_tga","name":"Azure.Bicep.RegistryModuleTool.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20311508,"download_count":8,"created_at":"2022-11-08T00:12:49Z","updated_at":"2022-11-08T00:12:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810333","id":83810333,"node_id":"RA_kwDOD7S9ks4E_tgd","name":"Azure.Bicep.RegistryModuleTool.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":173868,"download_count":4,"created_at":"2022-11-08T00:12:53Z","updated_at":"2022-11-08T00:12:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810337","id":83810337,"node_id":"RA_kwDOD7S9ks4E_tgh","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21491148,"download_count":7,"created_at":"2022-11-08T00:12:57Z","updated_at":"2022-11-08T00:12:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810273","id":83810273,"node_id":"RA_kwDOD7S9ks4E_tfh","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42885924,"download_count":130,"created_at":"2022-11-08T00:11:21Z","updated_at":"2022-11-08T00:11:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810283","id":83810283,"node_id":"RA_kwDOD7S9ks4E_tfr","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43387396,"download_count":5752,"created_at":"2022-11-08T00:11:37Z","updated_at":"2022-11-08T00:11:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810264","id":83810264,"node_id":"RA_kwDOD7S9ks4E_tfY","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43486721,"download_count":57796,"created_at":"2022-11-08T00:11:07Z","updated_at":"2022-11-08T00:11:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810297","id":83810297,"node_id":"RA_kwDOD7S9ks4E_tf5","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42819184,"download_count":14,"created_at":"2022-11-08T00:12:06Z","updated_at":"2022-11-08T00:12:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810288","id":83810288,"node_id":"RA_kwDOD7S9ks4E_tfw","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43537828,"download_count":2867,"created_at":"2022-11-08T00:11:53Z","updated_at":"2022-11-08T00:11:56Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810311","id":83810311,"node_id":"RA_kwDOD7S9ks4E_tgH","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":19909000,"download_count":2463,"created_at":"2022-11-08T00:12:29Z","updated_at":"2022-11-08T00:12:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810347","id":83810347,"node_id":"RA_kwDOD7S9ks4E_tgr","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43269504,"download_count":7,"created_at":"2022-11-08T00:13:09Z","updated_at":"2022-11-08T00:13:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810313","id":83810313,"node_id":"RA_kwDOD7S9ks4E_tgJ","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42607240,"download_count":36571,"created_at":"2022-11-08T00:12:33Z","updated_at":"2022-11-08T00:12:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810368","id":83810368,"node_id":"RA_kwDOD7S9ks4E_thA","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":42793813,"download_count":5,"created_at":"2022-11-08T00:13:44Z","updated_at":"2022-11-08T00:13:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810360","id":83810360,"node_id":"RA_kwDOD7S9ks4E_tg4","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":70848179,"download_count":92,"created_at":"2022-11-08T00:13:29Z","updated_at":"2022-11-08T00:13:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.12.40","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.12.40","body":"## + Features and bug fixes\r\n\r\nThis is a hotfix for some unintended breaking + changes that went out with the v0.12.1 release. Apologies for any inconvenience + this may have caused!\r\n\r\nBicep team:\r\n* Make sure that single-item allowed + decorators on arrays are treated the same as decorators with multiple items + (#8893)\r\n* Correct union assignability check when both sides of the assignment + are unions (#8899)\r\n* Use imported type rather than narrowed type for union + branches within resource declaration (#8902)\r\n* Incorporate type names into + Bicep symbol table (#8876)\r\n* Update TypeHelper.IsLiteralType to avoid catching + LanguageConstants.Object (#8952)\r\n* Fix an issue where building file with + deeply nested external modules throws (#8903)\r\n* Allow ''asazure.windows.net'' + for no-hardcoded-env-urls (#8871)","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589/reactions","total_count":9,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":9,"rocket":0,"eyes":0}}' + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + access-control-expose-headers: + - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, + X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, + X-GitHub-Request-Id, Deprecation, Sunset + cache-control: + - public, max-age=60, s-maxage=60 + content-length: + - '36243' + content-security-policy: + - default-src 'none' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:38:06 GMT + etag: + - W/"99c527415185e2e7c8d3aea28275de0490b74f0f2aa92dbf22db52adb3df9547" + last-modified: + - Tue, 08 Nov 2022 00:33:06 GMT + referrer-policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + server: + - GitHub.com + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + vary: + - Accept, Accept-Encoding, Accept, X-Requested-With + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-github-media-type: + - github.v3; format=json + x-github-request-id: + - FEBC:139B:91CD45A:129316E2:6377D11A + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '59' + x-ratelimit-reset: + - '1668800298' + x-ratelimit-resource: + - core + x-ratelimit-used: + - '1' + x-xss-protection: + - '0' + status: + code: 200 + message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.4.1008.15138", "templateHash": "18335756685998555005"}}, "parameters": {"location": + "0.4.1124.51302", "templateHash": "13318272087014647935"}}, "parameters": {"location": {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": - 3}}, "functions": [], "resources": [{"type": "Providers.Test/statefulResources", - "apiVersion": "2014-04-01", "name": "[parameters(''storageAccountName'')]", - "location": "[parameters(''location'')]"}], "outputs": {"storageId": {"type": - "string", "value": "[resourceId(''Providers.Test/statefulResources'', parameters(''storageAccountName''))]"}}}, - "parameters": {}, "updateBehavior": "detachResources"}}' + 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": + "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], + "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}}, "parameters": {}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -999,50 +1147,41 @@ interactions: Connection: - keep-alive Content-Length: - - '845' + - '911' Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file + - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": - {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n - \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n - \ \"parameters\": {\r\n \"location\": {\r\n \"type\": - \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n - \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": - 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": - [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n - \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n - \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n - \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n - \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n - \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:10.7531098Z\",\r\n + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:21.7336631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:10.7531098Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:21.7336631Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5bfd4b3-f66a-41f0-94c7-76e071074dee?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1922' + - '1049' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:10 GMT + - Fri, 18 Nov 2022 18:38:21 GMT expires: - '-1' pragma: @@ -1054,7 +1193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1070,15 +1209,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file + - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5bfd4b3-f66a-41f0-94c7-76e071074dee?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3\",\r\n - \ \"name\": \"2d3a6b87-e7c9-4b43-a3d0-503446cf5cc3\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5bfd4b3-f66a-41f0-94c7-76e071074dee\",\r\n + \ \"name\": \"e5bfd4b3-f66a-41f0-94c7-76e071074dee\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1087,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:27 GMT + - Fri, 18 Nov 2022 18:38:39 GMT expires: - '-1' pragma: @@ -1117,47 +1257,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file + - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-10-6c1f6\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-18-10-6c1f6\",\r\n - \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": - {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n - \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n - \ \"parameters\": {\r\n \"location\": {\r\n \"type\": - \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n - \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": - 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": - [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n - \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n - \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n - \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n - \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n - \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-21-bf3bb\",\r\n + \ \"duration\": \"PT9.011189S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:10.7531098Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:21.7336631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:10.7531098Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:21.7336631Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2639' + - '1835' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:27 GMT + - Fri, 18 Nov 2022 18:38:39 GMT expires: - '-1' pragma: @@ -1189,45 +1323,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-10-6c1f6\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-01-31-21-18-10-6c1f6\",\r\n - \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": - {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n - \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n - \ \"parameters\": {\r\n \"location\": {\r\n \"type\": - \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n - \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": - 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": - [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n - \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n - \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n - \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n - \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n - \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-21-bf3bb\",\r\n + \ \"duration\": \"PT9.011189S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:10.7531098Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:21.7336631Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:10.7531098Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:21.7336631Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2639' + - '1835' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:28 GMT + - Fri, 18 Nov 2022 18:38:39 GMT expires: - '-1' pragma: @@ -1261,9 +1389,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1273,7 +1402,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:28 GMT + - Fri, 18 Nov 2022 18:38:40 GMT expires: - '-1' pragma: @@ -1285,7 +1414,4135 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '333' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:38:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1500' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:41.9725775Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1129' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:38:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe\",\r\n + \ \"name\": \"cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:38:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-42-4b6fc\",\r\n + \ \"duration\": \"PT6.114843S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:41.9725775Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1944' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:38:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-42-4b6fc\",\r\n + \ \"duration\": \"PT6.114843S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:41.9725775Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1944' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1500' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:00.9203529Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ffb8f661-bf87-4842-ac3c-c7615529d012?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1129' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ffb8f661-bf87-4842-ac3c-c7615529d012?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ffb8f661-bf87-4842-ac3c-c7615529d012\",\r\n + \ \"name\": \"ffb8f661-bf87-4842-ac3c-c7615529d012\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-01-815a5\",\r\n + \ \"duration\": \"PT5.5385894S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:00.9203529Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2378' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:44.6001403Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:45.0063442Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '716' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:39:03.6136448Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:04.1292719Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '716' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-01-815a5\",\r\n + \ \"duration\": \"PT5.5385894S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:00.9203529Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2378' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1502' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:24.6975421Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1131' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n + \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:39:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n + \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:40:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n + \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:40:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n + \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n + \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-24-89353\",\r\n + \ \"duration\": \"PT2M15.2972376S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:39:24.6975421Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2387' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:39:26.753452Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:27.0347119Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '719' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-24-89353\",\r\n + \ \"duration\": \"PT2M15.2972376S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:39:24.6975421Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2387' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:41:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", "name": "[parameters(''tsname'')]", "location": + "[resourceGroup().location]"}, {"type": "Microsoft.Resources/deployments", "apiVersion": + "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}, + "tsname": {"value": "cli-test-template-spec000003"}}, "actionOnUnmanage": {"resources": + "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1564' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:41:51.1185571Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:41:51.1185571Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1222' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:41:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n + \ \"name\": \"3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n + \ \"name\": \"3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-41-51-ecc3f\",\r\n + \ \"duration\": \"PT20.0374974S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:41:51.1185571Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T18:41:53.0950173Z","changedTime":"2022-11-18T18:41:53.3204727Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:41:53.1783517Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:41:53.1783517Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '670' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-41-51-ecc3f\",\r\n + \ \"duration\": \"PT20.0374974S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:41:51.1185571Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "parameters": {}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": + "delete"}, "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '677' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:42:41.7111062Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1062' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:42:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:43:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:44:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:44:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:45:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n + \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:46:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-42-41-3f081\",\r\n + \ \"duration\": \"PT3M15.9305426S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:42:41.7111062Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1876' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:46:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:37:26Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36267' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-42-41-3f081\",\r\n + \ \"duration\": \"PT3M15.9305426S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:42:41.7111062Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1876' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:46:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:46:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:46:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:46:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:46:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:46:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:47:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:47:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:47:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:47:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/deployments", + "apiVersion": "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1330' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:47:27.2942799Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:47:27.2942799Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1144' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:47:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n + \ \"name\": \"28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:47:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n + \ \"name\": \"28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:48:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-47-27-e39cf\",\r\n + \ \"duration\": \"PT19.3811555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:47:27.2942799Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:48:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:48:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-47-27-e39cf\",\r\n + \ \"duration\": \"PT19.3811555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:47:27.2942799Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:48:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "parameters": {}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": + "delete"}, "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '677' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:48:17.4458492Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1062' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:48:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n + \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:48:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n + \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n + \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:49:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n + \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n + \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:50:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-48-17-48946\",\r\n + \ \"duration\": \"PT2M16.6427137S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:48:17.4458492Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1654' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:50:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:37:26Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36267' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:50:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-48-17-48946\",\r\n + \ \"duration\": \"PT2M16.6427137S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:48:17.4458492Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1654' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:50:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:50:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:50:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:50:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index d8986e87311..9e01ddfe1a6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -13,7 +13,8 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -29,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:26 GMT + - Fri, 18 Nov 2022 17:20:31 GMT expires: - '-1' pragma: @@ -57,7 +58,8 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -73,7 +75,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:26 GMT + - Fri, 18 Nov 2022 17:20:32 GMT expires: - '-1' pragma: @@ -105,16 +107,17 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:28.1241968Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:33.9797578Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:28.1241968Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:33.9797578Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:28 GMT + - Fri, 18 Nov 2022 17:20:34 GMT expires: - '-1' pragma: @@ -137,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -165,7 +168,8 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -183,9 +187,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.2792377Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:35.6680569Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.2792377Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:35.6680569Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:29 GMT + - Fri, 18 Nov 2022 17:20:35 GMT expires: - '-1' pragma: @@ -209,7 +213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -225,11 +229,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -242,7 +247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:30 GMT + - Fri, 18 Nov 2022 17:20:39 GMT expires: - '-1' pragma: @@ -263,8 +268,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -275,50 +281,44 @@ interactions: Connection: - keep-alive Content-Length: - - '739' + - '822' Content-Type: - application/json ParameterSetName: - - --name --update-behavior --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:30.5706027Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:30.5706027Z\"\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T17:20:39.9435766Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:39.9435766Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/381ce7eb-077a-4b70-aeda-a2aded0762dd?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a175934-c23a-4bb9-8067-e752a2cc1e44?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1788' + - '1207' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:30 GMT + - Fri, 18 Nov 2022 17:20:43 GMT expires: - '-1' pragma: @@ -346,15 +346,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/381ce7eb-077a-4b70-aeda-a2aded0762dd?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a175934-c23a-4bb9-8067-e752a2cc1e44?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/381ce7eb-077a-4b70-aeda-a2aded0762dd\",\r\n - \ \"name\": \"381ce7eb-077a-4b70-aeda-a2aded0762dd\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a175934-c23a-4bb9-8067-e752a2cc1e44\",\r\n + \ \"name\": \"7a175934-c23a-4bb9-8067-e752a2cc1e44\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -363,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:48 GMT + - Fri, 18 Nov 2022 17:21:00 GMT expires: - '-1' pragma: @@ -393,46 +394,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-31-92d72\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-31-92d72\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-20-43-16a29\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:30.5706027Z\",\r\n + \ \"duration\": \"PT9.1444334S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:39.9435766Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:30.5706027Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:39.9435766Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '1599' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:48 GMT + - Fri, 18 Nov 2022 17:21:01 GMT expires: - '-1' pragma: @@ -464,44 +462,41 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-31-92d72\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-31-92d72\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-20-43-16a29\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:30.5706027Z\",\r\n + \ \"duration\": \"PT9.1444334S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:39.9435766Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:30.5706027Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:39.9435766Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '1599' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:49 GMT + - Fri, 18 Nov 2022 17:21:04 GMT expires: - '-1' pragma: @@ -535,9 +530,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -547,7 +543,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:17:50 GMT + - Fri, 18 Nov 2022 17:21:05 GMT expires: - '-1' pragma: @@ -575,11 +571,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-spec --parameters + - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -592,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:51 GMT + - Fri, 18 Nov 2022 17:21:08 GMT expires: - '-1' pragma: @@ -618,9 +615,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-spec --parameters + - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -638,9 +636,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:29.2792377Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:35.6680569Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:29.2792377Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:35.6680569Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -652,7 +650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:51 GMT + - Fri, 18 Nov 2022 17:21:09 GMT expires: - '-1' pragma: @@ -672,8 +670,9 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -684,40 +683,45 @@ interactions: Connection: - keep-alive Content-Length: - - '428' + - '511' Content-Type: - application/json ParameterSetName: - - --name --update-behavior --location --template-spec --parameters + - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"initializing\"\r\n - \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:51.8729728Z\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:10.5699914Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:51.8729728Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:10.5699914Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ee0f177a-bb9e-4f1f-9394-de09cc7209a1?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/27ed7bec-6554-497f-b850-491591d27dae?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1175' + - '1438' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:52 GMT + - Fri, 18 Nov 2022 17:21:14 GMT expires: - '-1' pragma: @@ -745,15 +749,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-spec --parameters + - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ee0f177a-bb9e-4f1f-9394-de09cc7209a1?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/27ed7bec-6554-497f-b850-491591d27dae?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ee0f177a-bb9e-4f1f-9394-de09cc7209a1\",\r\n - \ \"name\": \"ee0f177a-bb9e-4f1f-9394-de09cc7209a1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/27ed7bec-6554-497f-b850-491591d27dae\",\r\n + \ \"name\": \"27ed7bec-6554-497f-b850-491591d27dae\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -762,7 +767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:09 GMT + - Fri, 18 Nov 2022 17:21:31 GMT expires: - '-1' pragma: @@ -792,36 +797,44 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-spec --parameters + - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-52-2d700\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-52-2d700\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-14-28ceb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n - \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:51.8729728Z\",\r\n + \ \"duration\": \"PT10.0170355S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:10.5699914Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:51.8729728Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:10.5699914Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1564' + - '1831' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:09 GMT + - Fri, 18 Nov 2022 17:21:31 GMT expires: - '-1' pragma: @@ -853,34 +866,42 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-17-52-2d700\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-17-52-2d700\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-14-28ceb\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"managedResources\": [],\r\n \"provisioningState\": \"succeeded\"\r\n - \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:51.8729728Z\",\r\n + \ \"duration\": \"PT10.0170355S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:10.5699914Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:51.8729728Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:10.5699914Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1564' + - '1831' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:10 GMT + - Fri, 18 Nov 2022 17:21:35 GMT expires: - '-1' pragma: @@ -914,9 +935,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -926,7 +948,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:10 GMT + - Fri, 18 Nov 2022 17:21:37 GMT expires: - '-1' pragma: @@ -954,11 +976,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-file --resource-group --parameters + - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -971,7 +994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:11 GMT + - Fri, 18 Nov 2022 17:21:39 GMT expires: - '-1' pragma: @@ -992,8 +1015,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -1004,50 +1028,44 @@ interactions: Connection: - keep-alive Content-Length: - - '787' + - '870' Content-Type: - application/json ParameterSetName: - - --name --update-behavior --location --template-file --resource-group --parameters + - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:12.230118Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:12.230118Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T17:21:39.7695996Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:39.7695996Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02298c73-7e08-434e-be70-71690ea65979?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/62891304-12f8-4937-b0bd-f4a54264d701?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1834' + - '1255' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:11 GMT + - Fri, 18 Nov 2022 17:21:42 GMT expires: - '-1' pragma: @@ -1059,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1075,15 +1093,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-file --resource-group --parameters + - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02298c73-7e08-434e-be70-71690ea65979?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/62891304-12f8-4937-b0bd-f4a54264d701?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02298c73-7e08-434e-be70-71690ea65979\",\r\n - \ \"name\": \"02298c73-7e08-434e-be70-71690ea65979\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/62891304-12f8-4937-b0bd-f4a54264d701\",\r\n + \ \"name\": \"62891304-12f8-4937-b0bd-f4a54264d701\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1092,7 +1111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:29 GMT + - Fri, 18 Nov 2022 17:21:59 GMT expires: - '-1' pragma: @@ -1122,46 +1141,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --update-behavior --location --template-file --resource-group --parameters + - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-12-1df36\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-12-1df36\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-42-2511d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:12.230118Z\",\r\n + \ \"duration\": \"PT7.8514216S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:39.7695996Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:12.230118Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:39.7695996Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2271' + - '1695' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:30 GMT + - Fri, 18 Nov 2022 17:22:00 GMT expires: - '-1' pragma: @@ -1193,44 +1209,41 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-12-1df36\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-12-1df36\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-42-2511d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:12.230118Z\",\r\n + \ \"duration\": \"PT7.8514216S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:39.7695996Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:12.230118Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:39.7695996Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2271' + - '1695' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:31 GMT + - Fri, 18 Nov 2022 17:22:03 GMT expires: - '-1' pragma: @@ -1264,9 +1277,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1276,7 +1290,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:31 GMT + - Fri, 18 Nov 2022 17:22:05 GMT expires: - '-1' pragma: @@ -1304,11 +1318,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file -g + - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -1321,7 +1336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:31 GMT + - Fri, 18 Nov 2022 17:22:08 GMT expires: - '-1' pragma: @@ -1335,17 +1350,144 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://aka.ms/BicepLatestRelease + response: + body: + string: '' + headers: + cache-control: + - max-age=0, no-cache, no-store + connection: + - keep-alive + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:22:11 GMT + expires: + - Fri, 18 Nov 2022 17:22:11 GMT + location: + - https://api.github.com/repos/Azure/bicep/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://api.github.com/repos/Azure/bicep/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589","assets_url":"https://api.github.com/repos/Azure/bicep/releases/82328589/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/82328589/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.12.40","id":82328589,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4E6DwN","tag_name":"v0.12.40","target_commitish":"main","name":"v0.12.40","draft":false,"prerelease":false,"created_at":"2022-11-07T20:36:40Z","published_at":"2022-11-08T00:33:06Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810432","id":83810432,"node_id":"RA_kwDOD7S9ks4E_tiA","name":"Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21621241,"download_count":6,"created_at":"2022-11-08T00:14:33Z","updated_at":"2022-11-08T00:14:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810410","id":83810410,"node_id":"RA_kwDOD7S9ks4E_thq","name":"Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22089629,"download_count":4,"created_at":"2022-11-08T00:14:22Z","updated_at":"2022-11-08T00:14:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810466","id":83810466,"node_id":"RA_kwDOD7S9ks4E_tii","name":"Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21514215,"download_count":6,"created_at":"2022-11-08T00:14:57Z","updated_at":"2022-11-08T00:14:58Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810446","id":83810446,"node_id":"RA_kwDOD7S9ks4E_tiO","name":"Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21998044,"download_count":4,"created_at":"2022-11-08T00:14:43Z","updated_at":"2022-11-08T00:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810400","id":83810400,"node_id":"RA_kwDOD7S9ks4E_thg","name":"Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21908652,"download_count":7,"created_at":"2022-11-08T00:14:08Z","updated_at":"2022-11-08T00:14:09Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810386","id":83810386,"node_id":"RA_kwDOD7S9ks4E_thS","name":"Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22179616,"download_count":8,"created_at":"2022-11-08T00:13:56Z","updated_at":"2022-11-08T00:13:57Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810314","id":83810314,"node_id":"RA_kwDOD7S9ks4E_tgK","name":"Azure.Bicep.Core.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":474567,"download_count":4,"created_at":"2022-11-08T00:12:37Z","updated_at":"2022-11-08T00:12:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810315","id":83810315,"node_id":"RA_kwDOD7S9ks4E_tgL","name":"Azure.Bicep.Core.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":157634,"download_count":5,"created_at":"2022-11-08T00:12:39Z","updated_at":"2022-11-08T00:12:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810318","id":83810318,"node_id":"RA_kwDOD7S9ks4E_tgO","name":"Azure.Bicep.Decompiler.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":88874,"download_count":5,"created_at":"2022-11-08T00:12:41Z","updated_at":"2022-11-08T00:12:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810326","id":83810326,"node_id":"RA_kwDOD7S9ks4E_tgW","name":"Azure.Bicep.Decompiler.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22628,"download_count":4,"created_at":"2022-11-08T00:12:43Z","updated_at":"2022-11-08T00:12:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810327","id":83810327,"node_id":"RA_kwDOD7S9ks4E_tgX","name":"Azure.Bicep.MSBuild.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45332,"download_count":5,"created_at":"2022-11-08T00:12:45Z","updated_at":"2022-11-08T00:12:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810329","id":83810329,"node_id":"RA_kwDOD7S9ks4E_tgZ","name":"Azure.Bicep.MSBuild.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6944,"download_count":4,"created_at":"2022-11-08T00:12:47Z","updated_at":"2022-11-08T00:12:48Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810330","id":83810330,"node_id":"RA_kwDOD7S9ks4E_tga","name":"Azure.Bicep.RegistryModuleTool.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20311508,"download_count":8,"created_at":"2022-11-08T00:12:49Z","updated_at":"2022-11-08T00:12:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810333","id":83810333,"node_id":"RA_kwDOD7S9ks4E_tgd","name":"Azure.Bicep.RegistryModuleTool.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":173868,"download_count":4,"created_at":"2022-11-08T00:12:53Z","updated_at":"2022-11-08T00:12:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810337","id":83810337,"node_id":"RA_kwDOD7S9ks4E_tgh","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21491148,"download_count":7,"created_at":"2022-11-08T00:12:57Z","updated_at":"2022-11-08T00:12:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810273","id":83810273,"node_id":"RA_kwDOD7S9ks4E_tfh","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42885924,"download_count":127,"created_at":"2022-11-08T00:11:21Z","updated_at":"2022-11-08T00:11:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810283","id":83810283,"node_id":"RA_kwDOD7S9ks4E_tfr","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43387396,"download_count":5711,"created_at":"2022-11-08T00:11:37Z","updated_at":"2022-11-08T00:11:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810264","id":83810264,"node_id":"RA_kwDOD7S9ks4E_tfY","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43486721,"download_count":57475,"created_at":"2022-11-08T00:11:07Z","updated_at":"2022-11-08T00:11:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810297","id":83810297,"node_id":"RA_kwDOD7S9ks4E_tf5","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42819184,"download_count":14,"created_at":"2022-11-08T00:12:06Z","updated_at":"2022-11-08T00:12:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810288","id":83810288,"node_id":"RA_kwDOD7S9ks4E_tfw","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43537828,"download_count":2863,"created_at":"2022-11-08T00:11:53Z","updated_at":"2022-11-08T00:11:56Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810311","id":83810311,"node_id":"RA_kwDOD7S9ks4E_tgH","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":19909000,"download_count":2462,"created_at":"2022-11-08T00:12:29Z","updated_at":"2022-11-08T00:12:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810347","id":83810347,"node_id":"RA_kwDOD7S9ks4E_tgr","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43269504,"download_count":7,"created_at":"2022-11-08T00:13:09Z","updated_at":"2022-11-08T00:13:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810313","id":83810313,"node_id":"RA_kwDOD7S9ks4E_tgJ","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42607240,"download_count":36395,"created_at":"2022-11-08T00:12:33Z","updated_at":"2022-11-08T00:12:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810368","id":83810368,"node_id":"RA_kwDOD7S9ks4E_thA","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":42793813,"download_count":5,"created_at":"2022-11-08T00:13:44Z","updated_at":"2022-11-08T00:13:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810360","id":83810360,"node_id":"RA_kwDOD7S9ks4E_tg4","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":70848179,"download_count":92,"created_at":"2022-11-08T00:13:29Z","updated_at":"2022-11-08T00:13:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.12.40","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.12.40","body":"## + Features and bug fixes\r\n\r\nThis is a hotfix for some unintended breaking + changes that went out with the v0.12.1 release. Apologies for any inconvenience + this may have caused!\r\n\r\nBicep team:\r\n* Make sure that single-item allowed + decorators on arrays are treated the same as decorators with multiple items + (#8893)\r\n* Correct union assignability check when both sides of the assignment + are unions (#8899)\r\n* Use imported type rather than narrowed type for union + branches within resource declaration (#8902)\r\n* Incorporate type names into + Bicep symbol table (#8876)\r\n* Update TypeHelper.IsLiteralType to avoid catching + LanguageConstants.Object (#8952)\r\n* Fix an issue where building file with + deeply nested external modules throws (#8903)\r\n* Allow ''asazure.windows.net'' + for no-hardcoded-env-urls (#8871)","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589/reactions","total_count":9,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":9,"rocket":0,"eyes":0}}' + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + access-control-expose-headers: + - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, + X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, + X-GitHub-Request-Id, Deprecation, Sunset + cache-control: + - public, max-age=60, s-maxage=60 + content-length: + - '36243' + content-security-policy: + - default-src 'none' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:22:11 GMT + etag: + - W/"7ead2a3f529313f80e5db18de3c9011201bf15a730dc6097882fbea4e436ab5a" + last-modified: + - Tue, 08 Nov 2022 00:33:06 GMT + referrer-policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + server: + - GitHub.com + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + transfer-encoding: + - chunked + vary: + - Accept, Accept-Encoding, Accept, X-Requested-With + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-github-media-type: + - github.v3; format=json + x-github-request-id: + - FBF7:5332:FA5058:201DC7D:6377BF43 + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '59' + x-ratelimit-reset: + - '1668795731' + x-ratelimit-resource: + - core + x-ratelimit-used: + - '1' + x-xss-protection: + - '0' + status: + code: 200 + message: OK - request: body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.4.1008.15138", "templateHash": "18335756685998555005"}}, "parameters": {"location": + "0.4.1124.51302", "templateHash": "13318272087014647935"}}, "parameters": {"location": {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": - 3}}, "functions": [], "resources": [{"type": "Providers.Test/statefulResources", - "apiVersion": "2014-04-01", "name": "[parameters(''storageAccountName'')]", - "location": "[parameters(''location'')]"}], "outputs": {"storageId": {"type": - "string", "value": "[resourceId(''Providers.Test/statefulResources'', parameters(''storageAccountName''))]"}}}, - "parameters": {}, "updateBehavior": "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001"}}' + 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": + "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], + "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}}, "parameters": {}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -1356,51 +1498,42 @@ interactions: Connection: - keep-alive Content-Length: - - '990' + - '1056' Content-Type: - application/json ParameterSetName: - - --name --location --template-file -g + - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": - {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n - \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n - \ \"parameters\": {\r\n \"location\": {\r\n \"type\": - \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n - \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": - 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": - [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n - \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n - \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n - \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n - \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n - \ }\r\n }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:35.0078982Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:35.0078982Z\"\r\n + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T17:22:15.3148987Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:15.3148987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ccc49d06-4e79-4e48-b0d9-b56574e81298?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b12897cd-523e-4d18-a374-fe46e11946cb?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '2023' + - '1150' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:34 GMT + - Fri, 18 Nov 2022 17:22:21 GMT expires: - '-1' pragma: @@ -1428,15 +1561,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file -g + - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ccc49d06-4e79-4e48-b0d9-b56574e81298?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b12897cd-523e-4d18-a374-fe46e11946cb?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ccc49d06-4e79-4e48-b0d9-b56574e81298\",\r\n - \ \"name\": \"ccc49d06-4e79-4e48-b0d9-b56574e81298\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b12897cd-523e-4d18-a374-fe46e11946cb\",\r\n + \ \"name\": \"b12897cd-523e-4d18-a374-fe46e11946cb\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1445,7 +1579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:51 GMT + - Fri, 18 Nov 2022 17:22:38 GMT expires: - '-1' pragma: @@ -1475,49 +1609,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file -g + - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-35-877b7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-35-877b7\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-21-1df49\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": - {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n - \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n - \ \"parameters\": {\r\n \"location\": {\r\n \"type\": - \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n - \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": - 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": - [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n - \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n - \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n - \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n - \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n - \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + \ \"duration\": \"PT11.2926387S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:35.0078982Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:15.3148987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:35.0078982Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:15.3148987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2690' + - '1938' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:52 GMT + - Fri, 18 Nov 2022 17:22:39 GMT expires: - '-1' pragma: @@ -1549,47 +1677,41 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002/snapshots/2022-01-31-21-18-35-877b7\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-21-18-35-877b7\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-21-1df49\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"parameters\": {},\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"metadata\": {\r\n \"_generator\": - {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.4.1008.15138\",\r\n - \ \"templateHash\": \"18335756685998555005\"\r\n }\r\n },\r\n - \ \"parameters\": {\r\n \"location\": {\r\n \"type\": - \"string\",\r\n \"defaultValue\": \"centralus\"\r\n },\r\n - \ \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"uniquestorage001\",\r\n \"maxLength\": 24,\r\n \"minLength\": - 3\r\n }\r\n },\r\n \"functions\": [],\r\n \"resources\": - [\r\n {\r\n \"type\": \"Providers.Test/statefulResources\",\r\n - \ \"apiVersion\": \"2014-04-01\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n - \ \"location\": \"[parameters('location')]\"\r\n }\r\n ],\r\n - \ \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n - \ \"value\": \"[resourceId('Providers.Test/statefulResources', parameters('storageAccountName'))]\"\r\n - \ }\r\n }\r\n },\r\n \"managedResources\": [\r\n {\r\n - \ \"lockMode\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n + \ \"duration\": \"PT11.2926387S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:35.0078982Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:15.3148987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:35.0078982Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:15.3148987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2690' + - '1938' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:53 GMT + - Fri, 18 Nov 2022 17:22:42 GMT expires: - '-1' pragma: @@ -1623,9 +1745,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1635,7 +1758,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:53 GMT + - Fri, 18 Nov 2022 17:22:44 GMT expires: - '-1' pragma: @@ -1647,7 +1770,4649 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:22:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:22:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1658' + Content-Type: + - application/json + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:49.5517913Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ab0a67a-5c9e-4303-b377-db8dfe6e067f?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1243' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:22:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ab0a67a-5c9e-4303-b377-db8dfe6e067f?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ab0a67a-5c9e-4303-b377-db8dfe6e067f\",\r\n + \ \"name\": \"4ab0a67a-5c9e-4303-b377-db8dfe6e067f\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-52-a9d2a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT7.7563478S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:49.5517913Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2098' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-52-a9d2a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT7.7563478S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:49.5517913Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2098' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1658' + Content-Type: + - application/json + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:13.4261756Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6aa3c94-ae5e-44e7-890d-e026c7279dd9?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1243' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6aa3c94-ae5e-44e7-890d-e026c7279dd9?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6aa3c94-ae5e-44e7-890d-e026c7279dd9\",\r\n + \ \"name\": \"e6aa3c94-ae5e-44e7-890d-e026c7279dd9\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-14-9a099\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT7.6101636S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:13.4261756Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2557' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:54.6876144Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:55.1720239Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '729' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:23:17.8943424Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:18.3787275Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '729' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-14-9a099\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT7.6101636S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:13.4261756Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2557' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1660' + Content-Type: + - application/json + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-three000006\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:40.4423499Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1245' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n + \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:23:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n + \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:24:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n + \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:24:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n + \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:25:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n + \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-42-1569c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT2M19.5476408S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T17:23:40.4423499Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:54.6876144Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:55.1720239Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '729' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:23:45.2721619Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:45.5846035Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '733' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T17:22:54.6592614Z","changedTime":"2022-11-18T17:22:54.848027Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:22:54.6876144Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:22:54.6876144Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T17:22:55.1167124Z","changedTime":"2022-11-18T17:22:55.3135308Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:22:55.1720239Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:22:55.1720239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T17:23:45.2434858Z","changedTime":"2022-11-18T17:23:45.3820599Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:23:45.2721619Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:23:45.2721619Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T17:23:45.5606182Z","changedTime":"2022-11-18T17:23:45.7222231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:23:45.5846035Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:23:45.5846035Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2694' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:26:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:26:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:26:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:26:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:26:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:27:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-42-1569c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT2M19.5476408S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T17:23:40.4423499Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:27:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '738' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:19.3897401Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1182' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7\",\r\n + \ \"name\": \"4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-22-1e0cf\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT8.0975924S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:19.3897401Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-22-1e0cf\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT8.0975924S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:19.3897401Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '738' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:44.7976873Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1182' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:27:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08\",\r\n + \ \"name\": \"ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-46-7ecfa\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT7.042893S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:44.7976873Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1747' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-46-7ecfa\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT7.042893S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:44.7976873Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1747' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '740' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-three000006\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:10.4512837Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cc2ce277-7d80-4e87-9042-f9550dfb124e?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1184' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cc2ce277-7d80-4e87-9042-f9550dfb124e?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cc2ce277-7d80-4e87-9042-f9550dfb124e\",\r\n + \ \"name\": \"cc2ce277-7d80-4e87-9042-f9550dfb124e\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-11-09ca7\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT6.5941168S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:10.4512837Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1752' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '256' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2022-04-25T19:02:06.5440853Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2022-11-08T19:10:36.8883217Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:23:44.9589885Z","changedTime":"2022-11-14T23:03:01.9713904Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:28:25.4284299Z","changedTime":"2022-11-14T23:03:02.0267239Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3","name":"simpleblogstorage3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-07T23:01:38.0105357Z","changedTime":"2022-11-07T23:11:58.1206582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T17:20:33.1667806Z","changedTime":"2022-11-18T17:20:34.5962682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:20:33.9797578Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:20:33.9797578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T17:20:35.3831125Z","changedTime":"2022-11-18T17:20:36.0719599Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:20:35.6680569Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:20:35.6680569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-18T17:22:23.4169381Z","changedTime":"2022-11-18T17:22:24.2993078Z","provisioningState":"Succeeded"}]}' + headers: + cache-control: + - no-cache + content-length: + - '72654' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-11-09ca7\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT6.5941168S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:10.4512837Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1752' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:28:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", "name": "[parameters(''tsname'')]", "location": + "[resourceGroup().location]"}, {"type": "Microsoft.Resources/deployments", "apiVersion": + "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}, + "tsname": {"value": "cli-test-template-spec000003"}}, "actionOnUnmanage": {"resources": + "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1722' + Content-Type: + - application/json + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000004\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:42.068411Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1321' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:28:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n + \ \"name\": \"f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n + \ \"name\": \"f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-44-e1805\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT23.5512211S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:42.068411Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:47.2849487Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T17:28:47.2849487Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '630' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-44-e1805\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT23.5512211S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:42.068411Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "parameters": {}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": + "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '835' + Content-Type: + - application/json + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T17:28:42.068411Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:29:42.2745334Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:29:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:30:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:30:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:31:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:31:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:32:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n + \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:33:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-29-44-66d87\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT3M21.0190733S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T17:29:42.2745334Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:33:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:33:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:33:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T17:20:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36139' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:33:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:33:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:33:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-29-44-66d87\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT3M21.0190733S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T17:29:42.2745334Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:33:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 17:33:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml index 16a9ed10f4a..1951b704e72 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml @@ -1,4 +1,124 @@ interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/v2.0/.well-known/openid-configuration + response: + body: + string: '{"token_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code + id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft-ppe.com/oidc/userinfo","authorization_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/kerberos","tenant_region_scope":"NA","cloud_instance_name":"windows-ppe.net","cloud_graph_host_name":"graph.ppe.windows.net","msgraph_host":"graph.microsoft-ppe.com","rbac_url":"https://pas.windows-ppe.net"}' + headers: + access-control-allow-methods: + - GET, OPTIONS + access-control-allow-origin: + - '*' + cache-control: + - max-age=86400, private + content-length: + - '1737' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Oct 2022 16:03:40 GMT + p3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + set-cookie: + - fpc=AvBzTxT7-bFGkt9M0dxrd9g; expires=Sun, 20-Nov-2022 16:03:41 GMT; path=/; + secure; HttpOnly; SameSite=None + - esctx=AQABAAAAAABYrKuFWqWSRpp9FiMCi-70NbSqcsz9smREUez4N9mNnkkhbgwBKpOoxQzCjXUmTNA7jqaiak6T0RDccHa1TvS_iRZN4Sa7dCXhqnoSFcHDfpWthAXS1rk6HvrTXgupeWq1GYw9x5Qj47cTV_MfpAgPOhpEjNoUYyfZwlXvaX91jTloUMms9dpcbelTFIPi-s2R8ocbu_3BjCZN6Da8xKBlbPLmelL6bI-D6eE7KclRGqg0r_F8Vgp478qZBFSeUJkgAA; + domain=.login.windows-ppe.net; path=/; secure; HttpOnly; SameSite=None + - stsservicecookie=estsppe; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ests-server: + - 2.1.14113.0 - CHY PPE + x-xss-protection: + - '0' + status: + code: 200 + message: OK +- request: + body: client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&grant_type=refresh_token&client_info=1&claims=%7B%22access_token%22%3A+%7B%22xms_cc%22%3A+%7B%22values%22%3A+%5B%22CP1%22%5D%7D%7D%7D&refresh_token=0.AAAAJtSG9haN20KBt6tXjhEMzZV3sATbjRpGu-4C-eG_e0YBAG0.1.AgABAAEAAABYrKuFWqWSRpp9FiMCi-70AwDs_wQA7_-pB7rVUaeBhi5kv9_xB3nkOd8OJm1pYhQC8gbHs4X1nmpIEe2Q9K2UpzyHCcBcsYAwXew_7-sywYKpf0p2pHQzRNnP5pQqY_XEGMLuT1jrWFCeOSJpATQLLjYFensh3bz8eGG2u21YvkJQisqRqDc3WXqZOdvOTIYY2pHHmNUxJo2WY-WD7Z5EYiV-WNF9ShyGhb4GEh7_qF5qrFUdIGlxFlseFSduC35p0fPa0F_rWciaAm0REK0Bhj5PIQv-HC1xnBkVA_R3ZQ-CLM8fZYR3L-trpV8socKQrdEKYddv7UdSVxr92cHzeBLsJJb4fJptvUcJo22QdCUxtvoxc86eLPVw5EfhcdGBKg3yo7QlcvUPvWpHDCXQmO3lF27sT1gn_5ci0ZRWOLG9tz6Pv08xLQJmUTjpi4OvERviiAfY1FQpMeYUiCDhvijBj_mHduiqlilPDyPouUTaCwUo_NkYGa5xQt2eMFH0wouRyzFqQUkOV-sttivBGy9_Bha87RUwMTESRGFyqYhK_-VEBC-f9TleSppKD-VA3MLisIxvzYpJ_9G3rAD_cXP7ALN2WIxFtl9iKZ-VG_0VwQelnD3CiefdErPKp2tK46r6PJ-Ity3TkBjSG-h8yRxEO-C-SliY_f5ZK21RLJjTuPvEdAcNyVQASwIE726ysmbLXzwI4ZiGCfhd7Ca7ZVRO15u49L5TcgUeXBs8aZSo-NYewh95f0rY7bz2gKSfNneiMyPetAro_5FRs23BgMeJB9h8vQdi5qYAtgFs16pU_Lis-mELtZcfTAeBjEMeLeUpec-F2M8mz8WlG09xv9pGMTFas7SYgGud2yT6wvzvYVljvz8l2jnhKZRehqIh6UMhuOWRZOTLYfLcXcKe4AGvLsZo7qZEdedjVWNOMWXesFjH7mboG5vuFhEPa0LBNeBtYIPPImzoOx1jkKeMafbWx4Z7TfqvG4U_KbC3IclyDUBpMh-2vonZ.AQABAAEAAABYrKuFWqWSRpp9FiMCi-70fgcKlQ52rwmg9KgoL5XuRrdURS1CeQNgzzuoudUhhMMHbYBTI6wTnekJ5d-0kqHtkBGsznBqBD_Xxq-qjS4f3IA6abKD43eGu-s2VNiltOjlHfXA5l3FhAuoXv_N5xtOh_M1NLmlxXNmWUXNyd-F_tiP1bgjlqib1XzZsetf4cKwdsKpfZCJTDPlAveGYJDQR3Jsj6A-B1_VIvjQ8ykf-xbdWhpsJtRJ7dk1y72R0K8gAA&scope=https%3A%2F%2Fmanagement.core.windows.net%2F%2F.default+offline_access+openid+profile + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1642' + Content-Type: + - application/x-www-form-urlencoded + Cookie: + - esctx=AQABAAAAAABYrKuFWqWSRpp9FiMCi-70NbSqcsz9smREUez4N9mNnkkhbgwBKpOoxQzCjXUmTNA7jqaiak6T0RDccHa1TvS_iRZN4Sa7dCXhqnoSFcHDfpWthAXS1rk6HvrTXgupeWq1GYw9x5Qj47cTV_MfpAgPOhpEjNoUYyfZwlXvaX91jTloUMms9dpcbelTFIPi-s2R8ocbu_3BjCZN6Da8xKBlbPLmelL6bI-D6eE7KclRGqg0r_F8Vgp478qZBFSeUJkgAA; + fpc=AvBzTxT7-bFGkt9M0dxrd9g; stsservicecookie=estsppe + User-Agent: + - python-requests/2.26.0 + X-AnchorMailbox: + - Oid:96ab7641-f037-41c4-be1a-b79ce2c21798@f686d426-8d16-42db-81b7-ab578e110ccd + x-client-cpu: + - x64 + x-client-current-telemetry: + - 4|84,3| + x-client-last-telemetry: + - 4|0||| + x-client-os: + - win32 + x-client-sku: + - MSAL.Python + x-client-ver: + - 1.20.0 + x-ms-lib-capability: + - retry-after, h429 + method: POST + uri: https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/token + response: + body: + string: '{"token_type":"Bearer","scope":"https://management.core.windows.net//user_impersonation + https://management.core.windows.net//.default","expires_in":86399,"ext_expires_in":86399,"refresh_in":43199,"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSIsImtpZCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvZjY4NmQ0MjYtOGQxNi00MmRiLTgxYjctYWI1NzhlMTEwY2NkLyIsImlhdCI6MTY2NjM2NzkyMSwibmJmIjoxNjY2MzY3OTIxLCJleHAiOjE2NjY0NTQ2MjIsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLnBwZS53aW5kb3dzLm5ldC9mNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QvdXNlcnMvOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4L2dldE1lbWJlck9iamVjdHMifX0sImFjciI6IjEiLCJhaW8iOiJBVlFBcS84V0FBQUFJVWhMMzBjNVhUZ0xGOWo3Q2xyZWlGenNXQTNPMzVyQU04SUVyWFFsN09wSUJLcUdtMGhLZnVyQThNaUdTV2ZJU3plSDZSZjNmV0tpTkplYWk4NFU1NmhJaGlISE1LK0dWMTdLdVNWeHZzZz0iLCJhbXIiOlsid2lhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZmFtaWx5X25hbWUiOiJQYXRlbCIsImdpdmVuX25hbWUiOiJIYXJzaCIsImlwYWRkciI6IjcyLjIzOS4yNi4xNjciLCJuYW1lIjoiSGFyc2ggUGF0ZWwiLCJvaWQiOiI5NmFiNzY0MS1mMDM3LTQxYzQtYmUxYS1iNzljZTJjMjE3OTgiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMTI0NTI1MDk1LTcwODI1OTYzNy0xNTQzMTE5MDIxLTIwNDkxNzAiLCJwdWlkIjoiMTAwM0RGRkQwMDY1MEFBRCIsInJoIjoiMC5BQUFBSnRTRzloYU4yMEtCdDZ0WGpoRU16VVpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTUJBRzAuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiUTFDel94M0MxblJEUFZyU0JYeS14T0M5ME1Ccmw5aUp1OEx2bVo2RmdzSSIsInRpZCI6ImY2ODZkNDI2LThkMTYtNDJkYi04MWI3LWFiNTc4ZTExMGNjZCIsInVuaXF1ZV9uYW1lIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwidXBuIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwidXRpIjoiNVJyTUVKajFxa0tlTzJvR1RLY1NBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc19jYyI6WyJDUDEiXSwieG1zX3NzbSI6IjEiLCJ4bXNfdGNkdCI6MTI4NDY5MDY5M30.aRjc7xpwKWvT517baI2YNLW2jfRStg8pk6U3vlxxoywDs9eebOJMLHsQ1trPMG1M9ohelXn1Qm-ClJpBPlM_tXWL12fLa367uItAEhHuU5H7op8RdISLiEwi90UcQnR5miDkGTDQT9wVh-PELu6o5GXjM-AC4S5iK07pa_10ut7B8NaBh3RJwHat7loeMEpCvfwzM_b_hO8bilraXTMcX000KsDueoGrL567SxdfGZUZKG8MgKxKtiYuLRH0w0COT38zT9gms6zaF-04RWbw8b0i4xl7ap9x-uyLX-pIdItBFAwedaeOlPIiKm1GgRtRF1Ie31SgCVQrzTKji1xfOA","refresh_token":"0.AAAAJtSG9haN20KBt6tXjhEMzZV3sATbjRpGu-4C-eG_e0YBAG0.1.AgABAAEAAABYrKuFWqWSRpp9FiMCi-70AwDs_wQA7_83NJOpIvr2yjXxtrjVhge9kw6Qlqm3CwRd4iF6Vn4CI2LNzRE8LaBZCy5ZbVMSa5QaJk6yi378B01q-WOUnByALa4jfVW6NDSl8WdhnXtJBMO8CUfPjB7JNy2DLrmmtQqV323Srm-8tYmVyJ3F86P9wQFPsUNh5UB3CEJ0H1aPS2Q81ebL5lle5r6UeLwH12cGGmy1lIuAUC27ZLzMYYX4c3RDoHGvgdrpjN5vVXoOB_BFUxVzgKBQE01KWdy45IylMacbYGixtK5UoL3qAdnlGo2u9-wxqeH3b5NAEhIqDGf08x94cbEabjLr4DcV7XjogaXy_gms34VE-Zb7u6yNt5DnKlskXF1-wdO82inSzl7d133CQJqQCsVgiWxNwpPhQpUwFJZuPV8khhztDfmadJh30Dpb6uuxxtgYHHjLf_Mng_Gi4_68mzqurAcfOhZrv8qB25zLepMGdNFXG1vsn91OdviGey40MVMdw-GiWJ7zmA4n1j1D55DkyiRGZt0s9vAnMIJTvR6ezzxBkyXdFd4ezIGuvggamIH4mL9KarooAYWGWhvoBpd0Sva4jGb8sW9n-FzppTnY9TEHYz_el1CZmScovY62i49gZiJpi2B3ZDQZ_-IPB_IjbMN4Q17PxkfHazUCahiwOTARBovdVZFTNkbPMOnvkQSKVQuySVGRP0Ejl8pVC-rdBTNnzPBe5seEAEH6e2vIOQoqiW6v00gZowhaJLN6IUiiU7DHBhVk6gWhlNxZdOFtIffwPuyKWdSGyQgIUU7HxgDtBsGIHYUd8hci2kuVLsEn1Hq48Y6VB5MwMstseJ3J31ShDfDQdnbf1-EG6WIVDQEwYqhkkC2197p3me71Gh-PxQ4Wi11oXWXBg-GPyFGVnngjs8HFCZbHmyeU1bSHPc7EDrNcz_5-c3N6h2l386NwEEZC0xihV8UxPrx1tDt7W7W2f9PR5P0qT3r70Pzgt2wsWGNoGvM.AQABAAEAAABYrKuFWqWSRpp9FiMCi-70_qDXlqVJvedd_-oZ1f2EXyME2o-BweL7EVsaHZUyM5Q3ZNeaqL3KztR5fP0-H2xKMTskyVuVjzJpR0eogyZGUnrjVPApmx9srsJ_I4gc5jXj8cadhDn6WNiAS9O4FL4Txw8B9UhtSL_puzBEHU3I8lPk3cx8fuSlbCScXjAom6TgtaTYP4wdVXEy3TM_9dvWC8fCC5Bryvk9SqeEFzszGUp5fC7IgpToxzyhF2zP22sgAA","foci":"1","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSJ9.eyJhdWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJpc3MiOiJodHRwczovL2xvZ2luLndpbmRvd3MtcHBlLm5ldC9mNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QvdjIuMCIsImlhdCI6MTY2NjM2NzkyMSwibmJmIjoxNjY2MzY3OTIxLCJleHAiOjE2NjYzNzE4MjEsImFpbyI6IkFXUUFtLzhXQUFBQWpoV3dXMUtGbEc0L21qZkVaVmt1aENZdllUMkFwYW9MbkUxaHI5cTc5Sjh0UGpKYVlRMjlvRS9yaUpKZTVqeEc5TXpNQWtIeThjQklkdzZ2SFhQZUNTTkt5clp6SnJhYkIwa2RnU0t1N2JJc0ZhQzZCajF1WUYzcU9mVUlnNUEyIiwibmFtZSI6IkhhcnNoIFBhdGVsIiwibm9uY2UiOiI2NjQyMmY0ZjY4OWY0MGMzNTliYWExMmU2YjkzODVkYzdlYzUxN2MxMGFlMmZmM2NhZWUyY2IxMmEzNTU4MTdhIiwib2lkIjoiOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4IiwicHJlZmVycmVkX3VzZXJuYW1lIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwicHVpZCI6IjEwMDNERkZEMDA2NTBBQUQiLCJyaCI6IjAuQUFBQUp0U0c5aGFOMjBLQnQ2dFhqaEVNelpWM3NBVGJqUnBHdS00Qy1lR19lMFlCQUcwLiIsInN1YiI6ImlPcTZUNmFSMFFfaGlNSWl0UG9PUWR1M1diTWt1NXlSRk5kWXhGYlRtMkEiLCJ0aWQiOiJmNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QiLCJ1dGkiOiI1UnJNRUpqMXFrS2VPMm9HVEtjU0FBIiwidmVyIjoiMi4wIn0.iJNaEoJ1HnuVNgqWxeJGfnjyXDdN5YWSs_yCcJjVclRNPcr_PWTVH2u_jbn36nDc2V3Ko9c8zG0G2zsHG30lh4Fs8w52PBZImDzCPP-HHuWJ2_2Z6sUJMFo6D4YgAeSVPvIroQcvXhAyxnQquvd51w9CAzJP9dpe7RwZuWS_jfscUzKOhiHpH5hQpCDEhkLmnf-kpoleCAf8rE3Akj1IXgoj3CL1Y0E-g20Dyh0dP7Nhdx1xJTdLZH_G1wshfy-vXxljUZIUqgRRLLRKIdjIn98fRVXxJQ880X4AubUvSxT5d2d3DWXVMDSE7YoZ3RXYWNIGJd6-r3MhGf-QTJ59Qw","client_info":"eyJ1aWQiOiI5NmFiNzY0MS1mMDM3LTQxYzQtYmUxYS1iNzljZTJjMjE3OTgiLCJ1dGlkIjoiZjY4NmQ0MjYtOGQxNi00MmRiLTgxYjctYWI1NzhlMTEwY2NkIn0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '5274' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Oct 2022 16:03:41 GMT + expires: + - '-1' + p3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + pragma: + - no-cache + set-cookie: + - fpc=AvBzTxT7-bFGkt9M0dxrd9jUCHkbAQAAANy55NoOAAAA; expires=Sun, 20-Nov-2022 + 16:03:42 GMT; path=/; secure; HttpOnly; SameSite=None + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-clitelem: + - 1,0,0,172128705.8436, + x-ms-ests-server: + - 2.1.14113.0 - CHY PPE + x-xss-protection: + - '0' + status: + code: 200 + message: OK - request: body: null headers: @@ -13,7 +133,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -29,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:16 GMT + - Fri, 21 Oct 2022 16:03:42 GMT expires: - '-1' pragma: @@ -43,7 +163,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 1573B0F6678F4AFF90AADBD0521D7E13 Ref B: BL2AA2030106023 Ref C: 2022-10-05T22:28:16Z' + - 'Ref A: 0F718DFEDC424434AE3E9C36EB13E875 Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:03:43Z' status: code: 404 message: Not Found @@ -55,7 +175,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {}}}' headers: Accept: - application/json @@ -66,13 +187,13 @@ interactions: Connection: - keep-alive Content-Length: - - '775' + - '795' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -81,28 +202,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:28:17.7724757Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:17.7724757Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-10-21T16:03:44.3343281Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/15b3e370-4b26-450e-bd9a-948737c18a9f?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/acc0620e-d4f7-488a-b17b-11a1a795b490?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1130' + - '1219' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:18 GMT + - Fri, 21 Oct 2022 16:03:46 GMT expires: - '-1' pragma: @@ -116,7 +238,7 @@ interactions: x-ms-ratelimit-remaining-tenant-writes: - '1199' x-msedge-ref: - - 'Ref A: 3DDD3C89B87A4A6ABC3A28D7852BDAF4 Ref B: BL2AA2030106023 Ref C: 2022-10-05T22:28:17Z' + - 'Ref A: 1B05432D45304812A6DF0A378F35F0F2 Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:03:44Z' status: code: 201 message: Created @@ -134,14 +256,14 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/15b3e370-4b26-450e-bd9a-948737c18a9f?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/acc0620e-d4f7-488a-b17b-11a1a795b490?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/15b3e370-4b26-450e-bd9a-948737c18a9f\",\r\n - \ \"name\": \"15b3e370-4b26-450e-bd9a-948737c18a9f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/acc0620e-d4f7-488a-b17b-11a1a795b490\",\r\n + \ \"name\": \"acc0620e-d4f7-488a-b17b-11a1a795b490\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:35 GMT + - Fri, 21 Oct 2022 16:04:05 GMT expires: - '-1' pragma: @@ -162,7 +284,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 20D237A184724E72AA7FABA08C3F7802 Ref B: BL2AA2030106023 Ref C: 2022-10-05T22:28:36Z' + - 'Ref A: B038E459E9DE41BEBEA8606FAFD1E86B Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:04:05Z' status: code: 200 message: OK @@ -180,40 +302,41 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-28-18-39ce6\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-28-18-39ce6\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-03-45-a0773\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.5646661S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:28:17.7724757Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:17.7724757Z\"\r\n + \ \"duration\": \"PT11.4390538S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:03:44.3343281Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1743' + - '1612' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:36 GMT + - Fri, 21 Oct 2022 16:04:05 GMT expires: - '-1' pragma: @@ -225,7 +348,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: EB19F1166B6D4E9B956C32669CA38F51 Ref B: BL2AA2030106023 Ref C: 2022-10-05T22:28:36Z' + - 'Ref A: 0473890D7E754AC6A8ACC1ED74BF185F Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:04:05Z' status: code: 200 message: OK @@ -243,40 +366,41 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-28-18-39ce6\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-28-18-39ce6\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-03-45-a0773\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.5646661S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:28:17.7724757Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:17.7724757Z\"\r\n + \ \"duration\": \"PT11.4390538S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:03:44.3343281Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1743' + - '1612' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:37 GMT + - Fri, 21 Oct 2022 16:04:05 GMT expires: - '-1' pragma: @@ -288,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 606B1634D5F248DAB066FDA658E834E7 Ref B: BL2AA2030107011 Ref C: 2022-10-05T22:28:37Z' + - 'Ref A: 8089839F35C54B76BCD51EB6D539738C Ref B: MIAEDGE2810 Ref C: 2022-10-21T16:04:06Z' status: code: 200 message: OK @@ -306,40 +430,41 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-28-18-39ce6\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-28-18-39ce6\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-03-45-a0773\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.5646661S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:28:17.7724757Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:17.7724757Z\"\r\n + \ \"duration\": \"PT11.4390538S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:03:44.3343281Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1743' + - '1612' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:39 GMT + - Fri, 21 Oct 2022 16:04:09 GMT expires: - '-1' pragma: @@ -351,7 +476,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 005B2B1D354B4106AA9381C2FF16584D Ref B: BL2AA2030106021 Ref C: 2022-10-05T22:28:38Z' + - 'Ref A: 4816B5ECA0E54524B2F48BB841FE085F Ref B: MIAEDGE2920 Ref C: 2022-10-21T16:04:07Z' status: code: 200 message: OK @@ -371,7 +496,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview @@ -384,7 +509,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 22:28:40 GMT + - Fri, 21 Oct 2022 16:04:10 GMT expires: - '-1' pragma: @@ -398,7 +523,7 @@ interactions: x-ms-ratelimit-remaining-tenant-deletes: - '14999' x-msedge-ref: - - 'Ref A: 56E1C569BEB74EB285AD6D7DAE681F4A Ref B: BL2AA2030106021 Ref C: 2022-10-05T22:28:40Z' + - 'Ref A: 903702ADCB8148C3968F26BF033C2D51 Ref B: MIAEDGE2920 Ref C: 2022-10-21T16:04:09Z' status: code: 200 message: OK @@ -416,7 +541,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -432,7 +557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:40 GMT + - Fri, 21 Oct 2022 16:04:10 GMT expires: - '-1' pragma: @@ -446,7 +571,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 22A19E07FC3841D6B25347390D9EF3CC Ref B: BL2AA2030107033 Ref C: 2022-10-05T22:28:40Z' + - 'Ref A: CD10CEA744D94E27951A500F3DE7CDCB Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:10Z' status: code: 404 message: Not Found @@ -458,7 +583,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {}}}' headers: Accept: - application/json @@ -469,13 +595,13 @@ interactions: Connection: - keep-alive Content-Length: - - '775' + - '795' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -484,28 +610,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:28:42.2181304Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:42.2181304Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-10-21T16:04:11.0133256Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:11.0133256Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f123f7b8-21f0-4b37-ba55-8a26dfd64e54?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/3ee15145-9a1a-4e5b-9ac2-4f30839f1000?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1130' + - '1219' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:28:42 GMT + - Fri, 21 Oct 2022 16:04:12 GMT expires: - '-1' pragma: @@ -517,9 +644,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' + - '1199' x-msedge-ref: - - 'Ref A: D7186AB93E6C4F8E99FC47E047921961 Ref B: BL2AA2030107033 Ref C: 2022-10-05T22:28:41Z' + - 'Ref A: 2ECC31353B8E47B28A685672DF3562D3 Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:10Z' status: code: 201 message: Created @@ -537,60 +664,14 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f123f7b8-21f0-4b37-ba55-8a26dfd64e54?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f123f7b8-21f0-4b37-ba55-8a26dfd64e54\",\r\n - \ \"name\": \"f123f7b8-21f0-4b37-ba55-8a26dfd64e54\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '215' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 22:29:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E42E430A0C984A56A61F23F8C3CEAF9C Ref B: BL2AA2030107033 Ref C: 2022-10-05T22:29:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f123f7b8-21f0-4b37-ba55-8a26dfd64e54?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/3ee15145-9a1a-4e5b-9ac2-4f30839f1000?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f123f7b8-21f0-4b37-ba55-8a26dfd64e54\",\r\n - \ \"name\": \"f123f7b8-21f0-4b37-ba55-8a26dfd64e54\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/3ee15145-9a1a-4e5b-9ac2-4f30839f1000\",\r\n + \ \"name\": \"3ee15145-9a1a-4e5b-9ac2-4f30839f1000\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -599,7 +680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:30 GMT + - Fri, 21 Oct 2022 16:04:29 GMT expires: - '-1' pragma: @@ -611,7 +692,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A9157FEA38DA47A1A6584A76AEE3AAFF Ref B: BL2AA2030107033 Ref C: 2022-10-05T22:29:30Z' + - 'Ref A: E6092DA862AA4A60983C04869F8FA8CE Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:30Z' status: code: 200 message: OK @@ -629,40 +710,41 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-28-42-55a31\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-28-42-55a31\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-11-7745f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT20.0509107S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:28:42.2181304Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:42.2181304Z\"\r\n + \ \"duration\": \"PT9.0628903S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:11.0133256Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:11.0133256Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1744' + - '1611' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:30 GMT + - Fri, 21 Oct 2022 16:04:30 GMT expires: - '-1' pragma: @@ -674,7 +756,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 5DF23BAA38B144E69800D9E8BC3D45AD Ref B: BL2AA2030107033 Ref C: 2022-10-05T22:29:31Z' + - 'Ref A: F583D1A08C744250AC07176D1898853D Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:30Z' status: code: 200 message: OK @@ -692,40 +774,41 @@ interactions: ParameterSetName: - --id --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-28-42-55a31\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-28-42-55a31\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-11-7745f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT20.0509107S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:28:42.2181304Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:28:42.2181304Z\"\r\n + \ \"duration\": \"PT9.0628903S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:11.0133256Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:11.0133256Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1744' + - '1611' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:31 GMT + - Fri, 21 Oct 2022 16:04:31 GMT expires: - '-1' pragma: @@ -737,7 +820,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 11E796A00AF54EAEBE84CAA6E73781F6 Ref B: BL2AA2030107027 Ref C: 2022-10-05T22:29:31Z' + - 'Ref A: 45F8E871DA7D4057A6FB529A2E41FB5C Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:31Z' status: code: 200 message: OK @@ -757,7 +840,7 @@ interactions: ParameterSetName: - --id --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview @@ -770,7 +853,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 22:29:32 GMT + - Fri, 21 Oct 2022 16:04:31 GMT expires: - '-1' pragma: @@ -782,9 +865,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14999' + - '14998' x-msedge-ref: - - 'Ref A: 257401C093E045629D39103BBB053B7A Ref B: BL2AA2030107027 Ref C: 2022-10-05T22:29:32Z' + - 'Ref A: 5B4FC34EF65E4BA497B4219ACA034E9F Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:32Z' status: code: 200 message: OK @@ -802,7 +885,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -818,7 +901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:32 GMT + - Fri, 21 Oct 2022 16:04:32 GMT expires: - '-1' pragma: @@ -832,7 +915,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E540B68F97C54D1E92321A51FE62F422 Ref B: BL2AA2030110037 Ref C: 2022-10-05T22:29:33Z' + - 'Ref A: E315C8D5ABCA49498A397B642C2AF393 Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:32Z' status: code: 404 message: Not Found @@ -844,7 +927,7 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000002"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' headers: Accept: - application/json @@ -855,13 +938,13 @@ interactions: Connection: - keep-alive Content-Length: - - '691' + - '711' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -870,27 +953,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:29:33.794557Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:29:33.794557Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000002\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:33.1312719Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:33.1312719Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/36036dce-efec-4fc0-9e38-a438824b2602?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1103' + - '1194' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:34 GMT + - Fri, 21 Oct 2022 16:04:33 GMT expires: - '-1' pragma: @@ -904,7 +989,7 @@ interactions: x-ms-ratelimit-remaining-tenant-writes: - '1198' x-msedge-ref: - - 'Ref A: 7652BA7258A040008BFFBD4D4D477507 Ref B: BL2AA2030110037 Ref C: 2022-10-05T22:29:33Z' + - 'Ref A: 9502DEB076E3457588972DF654099F54 Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:33Z' status: code: 201 message: Created @@ -922,14 +1007,14 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/36036dce-efec-4fc0-9e38-a438824b2602?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/36036dce-efec-4fc0-9e38-a438824b2602\",\r\n - \ \"name\": \"36036dce-efec-4fc0-9e38-a438824b2602\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40\",\r\n + \ \"name\": \"5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -938,7 +1023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:51 GMT + - Fri, 21 Oct 2022 16:04:50 GMT expires: - '-1' pragma: @@ -950,7 +1035,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 54E80EADA1714A159E5065FB54635909 Ref B: BL2AA2030110037 Ref C: 2022-10-05T22:29:52Z' + - 'Ref A: 8C135E7A2EC34FFEB8B360281BFCE61B Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:50Z' status: code: 200 message: OK @@ -968,39 +1053,39 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-29-34-f2aa1\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-29-34-f2aa1\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-33-237d5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.296556S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ \"duration\": \"PT12.601555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:29:33.794557Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:33.1312719Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:29:33.794557Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:33.1312719Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1754' + - '1624' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:51 GMT + - Fri, 21 Oct 2022 16:04:50 GMT expires: - '-1' pragma: @@ -1012,7 +1097,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A7DBF7997A854698B840107A08DFEDDC Ref B: BL2AA2030110037 Ref C: 2022-10-05T22:29:52Z' + - 'Ref A: 211FE7DA6CD34832B59EBCEFFC3927C1 Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:51Z' status: code: 200 message: OK @@ -1030,39 +1115,39 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-29-34-f2aa1\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-29-34-f2aa1\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-33-237d5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.296556S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ \"duration\": \"PT12.601555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:29:33.794557Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:33.1312719Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:29:33.794557Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:33.1312719Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1754' + - '1624' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:53 GMT + - Fri, 21 Oct 2022 16:04:51 GMT expires: - '-1' pragma: @@ -1074,7 +1159,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 9209C52CEB83455387074C2DF3A7A1EE Ref B: BL2AA2030110005 Ref C: 2022-10-05T22:29:53Z' + - 'Ref A: B31C036AC2BB4F44A2A7138B44143025 Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:51Z' status: code: 200 message: OK @@ -1094,7 +1179,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview @@ -1107,7 +1192,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 22:29:53 GMT + - Fri, 21 Oct 2022 16:04:51 GMT expires: - '-1' pragma: @@ -1119,9 +1204,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14998' + - '14997' x-msedge-ref: - - 'Ref A: C664E0EBA6E243A58FEAEB8777878C2D Ref B: BL2AA2030110005 Ref C: 2022-10-05T22:29:53Z' + - 'Ref A: 88C8BC12F16344CEAFB027F23C6BFA9B Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:52Z' status: code: 200 message: OK @@ -1139,7 +1224,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 @@ -1154,7 +1239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:54 GMT + - Fri, 21 Oct 2022 16:04:52 GMT expires: - '-1' pragma: @@ -1166,7 +1251,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E1692F0BE9A04BEFAE7EBFB1434E9F32 Ref B: BL2AA2030105005 Ref C: 2022-10-05T22:29:54Z' + - 'Ref A: D626A1C470BB43A8B03B4AC82346EE05 Ref B: MIAEDGE2521 Ref C: 2022-10-21T16:04:52Z' status: code: 200 message: OK @@ -1185,7 +1270,7 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -1201,7 +1286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:54 GMT + - Fri, 21 Oct 2022 16:04:53 GMT expires: - '-1' pragma: @@ -1215,7 +1300,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: C33F86EAD407468F8E826561F5D289F2 Ref B: BL2AA2030106045 Ref C: 2022-10-05T22:29:55Z' + - 'Ref A: 327AF11518C344D6ACCB8AE91E67D31D Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:04:53Z' status: code: 404 message: Not Found @@ -1227,7 +1312,7 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000003"}}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' headers: Accept: - application/json @@ -1238,14 +1323,14 @@ interactions: Connection: - keep-alive Content-Length: - - '691' + - '711' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview @@ -1254,27 +1339,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:29:55.8858249Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:29:55.8858249Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000003\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:53.852289Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:53.852289Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d55c9871-6af3-4ef0-9c13-bb0f2e3a7bb1?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1105' + - '1192' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:29:56 GMT + - Fri, 21 Oct 2022 16:04:54 GMT expires: - '-1' pragma: @@ -1288,7 +1375,7 @@ interactions: x-ms-ratelimit-remaining-tenant-writes: - '1199' x-msedge-ref: - - 'Ref A: 60CFCA13868B41ADA2DCC9A5894225DF Ref B: BL2AA2030106045 Ref C: 2022-10-05T22:29:55Z' + - 'Ref A: 7FC82787D5584505A6907891CE32F3BE Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:04:53Z' status: code: 201 message: Created @@ -1307,14 +1394,61 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n + \ \"name\": \"1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '215' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Oct 2022 16: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-msedge-ref: + - 'Ref A: 2F94E4F8A0C74462BE6F17EA0D4DBC84 Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:05:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --parameters --delete-resources + --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d55c9871-6af3-4ef0-9c13-bb0f2e3a7bb1?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d55c9871-6af3-4ef0-9c13-bb0f2e3a7bb1\",\r\n - \ \"name\": \"d55c9871-6af3-4ef0-9c13-bb0f2e3a7bb1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n + \ \"name\": \"1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1323,7 +1457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:30:13 GMT + - Fri, 21 Oct 2022 16:05:42 GMT expires: - '-1' pragma: @@ -1335,7 +1469,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 68D666C7610A4D4B9AA0C95934D3157C Ref B: BL2AA2030106045 Ref C: 2022-10-05T22:30:13Z' + - 'Ref A: 38AB8036C702414CA8A461D2CEDCD831 Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:05:42Z' status: code: 200 message: OK @@ -1354,39 +1488,39 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-29-56-6f355\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-29-56-6f355\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-54-ea947\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.6693749S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n + \ \"duration\": \"PT20.9483555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:29:55.8858249Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:53.852289Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:29:55.8858249Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:53.852289Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1757' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:30:14 GMT + - Fri, 21 Oct 2022 16:05:42 GMT expires: - '-1' pragma: @@ -1398,7 +1532,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: C1EFECA3289249968010E2644EC1DBF7 Ref B: BL2AA2030106045 Ref C: 2022-10-05T22:30:14Z' + - 'Ref A: 7E3CB87B87AC45B3990534DAFFE93352 Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:05:42Z' status: code: 200 message: OK @@ -1416,39 +1550,39 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-10-05-22-29-56-6f355\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-05-22-29-56-6f355\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-54-ea947\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.6693749S\",\r\n \"outputs\": {},\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n + \ \"duration\": \"PT20.9483555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:29:55.8858249Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:53.852289Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:29:55.8858249Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:53.852289Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1757' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:30:14 GMT + - Fri, 21 Oct 2022 16:05:43 GMT expires: - '-1' pragma: @@ -1460,7 +1594,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0C590D3304D64FAA8878B2FABEE664EB Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:30:14Z' + - 'Ref A: 272E5C937A0B447B9F7289A9E1757397 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:05:43Z' status: code: 200 message: OK @@ -1480,7 +1614,7 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview @@ -1489,13 +1623,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 05 Oct 2022 22:30:15 GMT + - Fri, 21 Oct 2022 16:05:43 GMT expires: - '-1' pragma: @@ -1509,7 +1643,7 @@ interactions: x-ms-ratelimit-remaining-tenant-deletes: - '14999' x-msedge-ref: - - 'Ref A: BFAC983071364E79BD3A439F0C4116E0 Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:30:15Z' + - 'Ref A: A36A6778517847BAA9321ADB27516A55 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:05:43Z' status: code: 202 message: Accepted @@ -1527,14 +1661,14 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n - \ \"name\": \"ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n + \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1543,7 +1677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:30:32 GMT + - Fri, 21 Oct 2022 16:06:00 GMT expires: - '-1' pragma: @@ -1555,7 +1689,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 2623813915D1424C9A60A78743908B50 Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:30:33Z' + - 'Ref A: 905EF3739302417B81EC01CA2C377CFE Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:06:01Z' status: code: 200 message: OK @@ -1573,14 +1707,14 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n - \ \"name\": \"ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n + \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1589,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:31:02 GMT + - Fri, 21 Oct 2022 16:06:31 GMT expires: - '-1' pragma: @@ -1601,7 +1735,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 939060EF6C6E48EEA37DDA735ED9792B Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:31:03Z' + - 'Ref A: 11DF045B2349430C9FF7A7C2EE060868 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:06:31Z' status: code: 200 message: OK @@ -1619,14 +1753,14 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n - \ \"name\": \"ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n + \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1635,7 +1769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:31:32 GMT + - Fri, 21 Oct 2022 16:07:01 GMT expires: - '-1' pragma: @@ -1647,7 +1781,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 1CA5F3DF39B947509D64BD03088BD21A Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:31:33Z' + - 'Ref A: FB403AB4A311417CB41CBDD52C11CB2B Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:07:01Z' status: code: 200 message: OK @@ -1665,14 +1799,14 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n - \ \"name\": \"ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n + \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1681,7 +1815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:32:02 GMT + - Fri, 21 Oct 2022 16:07:31 GMT expires: - '-1' pragma: @@ -1693,7 +1827,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4C5EF62BA41D4FC39CD63F3272BB19BC Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:32:03Z' + - 'Ref A: 91C488B095824334BF1E82162D869002 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:07:32Z' status: code: 200 message: OK @@ -1711,14 +1845,14 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n - \ \"name\": \"ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n + \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1727,7 +1861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:32:34 GMT + - Fri, 21 Oct 2022 16:08:01 GMT expires: - '-1' pragma: @@ -1739,7 +1873,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A16D8B01C66E4D338BB89A8AB155447C Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:32:33Z' + - 'Ref A: 02B01B9BBE9C4EF2AB7F9812AB296325 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:08:02Z' status: code: 200 message: OK @@ -1757,14 +1891,14 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n - \ \"name\": \"ec504c38-adc2-4dcd-beac-d67cfbe49d01\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n + \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1773,7 +1907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:33:04 GMT + - Fri, 21 Oct 2022 16:08:32 GMT expires: - '-1' pragma: @@ -1785,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 1AA44896AB064425B50B6246A5461F47 Ref B: BL2AA2030109039 Ref C: 2022-10-05T22:33:04Z' + - 'Ref A: 6D53D463AE7C4A6F92FD7C622AC34248 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:08:32Z' status: code: 200 message: OK @@ -1803,7 +1937,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 @@ -1818,7 +1952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:33:04 GMT + - Fri, 21 Oct 2022 16:08:33 GMT expires: - '-1' pragma: @@ -1830,7 +1964,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DF0A90E9733C44218D7BA0D99E3402EA Ref B: BL2AA2030109035 Ref C: 2022-10-05T22:33:04Z' + - 'Ref A: 6025C91C501F4C8BAC177070FB07F592 Ref B: MIAEDGE2017 Ref C: 2022-10-21T16:08:33Z' status: code: 200 message: OK @@ -1846,22 +1980,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T224354","name":"UnitTest-eus2euap-1-221020T224354","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T225431","name":"UnitTest-eus2euap-1-221020T225431","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T230935","name":"UnitTest-eus2euap-1-221020T230935","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T234405","name":"UnitTest-eus2euap-1-221020T234405","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221021T002359","name":"UnitTest-eus2euap-1-221021T002359","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221021T003050","name":"UnitTest-eus2euap-1-221021T003050","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221021T005205","name":"UnitTest-eus2euap-1-221021T005205","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '17020' + - '20609' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:33:05 GMT + - Fri, 21 Oct 2022 16:08:34 GMT expires: - '-1' pragma: @@ -1873,7 +2007,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: CF38E5A4DE3345D6B63ACA37396B769F Ref B: BL2AA2030107019 Ref C: 2022-10-05T22:33:05Z' + - 'Ref A: F99819DA1BCE4918BCA3B70B688D09D4 Ref B: MIAEDGE2715 Ref C: 2022-10-21T16:08:34Z' status: code: 200 message: OK @@ -1893,7 +2027,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 @@ -1906,11 +2040,11 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 22:33:08 GMT + - Fri, 21 Oct 2022 16:08:35 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU2VDRRTVNNSVhEMlA0S1k0RVBQTnw3Mzk5RjMzMjY1NUVGRDUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVNT01GSVNSQkVZVTVVRzQyUFM2UXw2MDAzQUZFMUYxOTE0RjA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1922,7 +2056,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: DAB9B90F56E74CD6A331B315F5A8C35E Ref B: BL2AA2030106027 Ref C: 2022-10-05T22:33:05Z' + - 'Ref A: CD52CBD2F6164F9CAF5058FD1B3EA0CB Ref B: MIAEDGE1512 Ref C: 2022-10-21T16:08:35Z' status: code: 202 message: Accepted @@ -1940,10 +2074,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU2VDRRTVNNSVhEMlA0S1k0RVBQTnw3Mzk5RjMzMjY1NUVGRDUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVNT01GSVNSQkVZVTVVRzQyUFM2UXw2MDAzQUZFMUYxOTE0RjA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1953,7 +2087,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 22:33:23 GMT + - Fri, 21 Oct 2022 16:08:50 GMT expires: - '-1' pragma: @@ -1965,7 +2099,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 036F3A8CB64240A88C664FD992254FF4 Ref B: BL2AA2030106027 Ref C: 2022-10-05T22:33:23Z' + - 'Ref A: 58701765B5134511AF62ECD4B8902EC6 Ref B: MIAEDGE1512 Ref C: 2022-10-21T16:08:51Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index 3b937156466..4bbbe5e646a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:25 GMT + - Fri, 18 Nov 2022 18:57:14 GMT expires: - '-1' pragma: @@ -50,8 +51,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -62,49 +64,43 @@ interactions: Connection: - keep-alive Content-Length: - - '642' + - '725' Content-Type: - application/json ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9c8466f-b5ed-441a-ae68-7323778929cf?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2ce0e135-98fb-4f40-9c36-73a7ccf673d7?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1735' + - '1154' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:26 GMT + - Fri, 18 Nov 2022 18:57:15 GMT expires: - '-1' pragma: @@ -132,15 +128,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9c8466f-b5ed-441a-ae68-7323778929cf?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2ce0e135-98fb-4f40-9c36-73a7ccf673d7?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9c8466f-b5ed-441a-ae68-7323778929cf\",\r\n - \ \"name\": \"d9c8466f-b5ed-441a-ae68-7323778929cf\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2ce0e135-98fb-4f40-9c36-73a7ccf673d7\",\r\n + \ \"name\": \"2ce0e135-98fb-4f40-9c36-73a7ccf673d7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:43 GMT + - Fri, 18 Nov 2022 18:57:32 GMT expires: - '-1' pragma: @@ -179,44 +176,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-26-b9e63\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-26-b9e63\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-15-825c1\",\r\n + \ \"duration\": \"PT5.2474219S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2222' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:43 GMT + - Fri, 18 Nov 2022 18:57:32 GMT expires: - '-1' pragma: @@ -248,42 +242,39 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-26-b9e63\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-26-b9e63\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-15-825c1\",\r\n + \ \"duration\": \"PT5.2474219S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2222' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:43 GMT + - Fri, 18 Nov 2022 18:57:33 GMT expires: - '-1' pragma: @@ -315,42 +306,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-26-b9e63\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-26-b9e63\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:26.2126873Z\",\r\n + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-15-825c1\",\r\n + \ \"duration\": \"PT5.2474219S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:26.2126873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2222' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:44 GMT + - Fri, 18 Nov 2022 18:57:34 GMT expires: - '-1' pragma: @@ -384,9 +372,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -396,7 +385,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:17:44 GMT + - Fri, 18 Nov 2022 18:57:34 GMT expires: - '-1' pragma: @@ -426,9 +415,10 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": []\r\n}" @@ -440,7 +430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:44 GMT + - Fri, 18 Nov 2022 18:57:34 GMT expires: - '-1' pragma: @@ -470,11 +460,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -488,7 +479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:45 GMT + - Fri, 18 Nov 2022 18:57:36 GMT expires: - '-1' pragma: @@ -509,8 +500,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -521,49 +513,43 @@ interactions: Connection: - keep-alive Content-Length: - - '642' + - '725' Content-Type: - application/json ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1bd37dde-f431-478b-ae49-99fb814990ba?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1735' + - '1154' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:17:46 GMT + - Fri, 18 Nov 2022 18:57:37 GMT expires: - '-1' pragma: @@ -591,15 +577,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1bd37dde-f431-478b-ae49-99fb814990ba?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1bd37dde-f431-478b-ae49-99fb814990ba\",\r\n - \ \"name\": \"1bd37dde-f431-478b-ae49-99fb814990ba\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13\",\r\n + \ \"name\": \"afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -608,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:03 GMT + - Fri, 18 Nov 2022 18:57:54 GMT expires: - '-1' pragma: @@ -638,44 +625,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-46-5940f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-46-5940f\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-36-e6c4d\",\r\n + \ \"duration\": \"PT5.2905339S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2222' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:03 GMT + - Fri, 18 Nov 2022 18:57:54 GMT expires: - '-1' pragma: @@ -707,42 +691,39 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-46-5940f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-46-5940f\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-36-e6c4d\",\r\n + \ \"duration\": \"PT5.2905339S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2222' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:04 GMT + - Fri, 18 Nov 2022 18:57:55 GMT expires: - '-1' pragma: @@ -774,42 +755,39 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002/snapshots/2022-01-31-21-17-46-5940f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-01-31-21-17-46-5940f\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:17:46.4444122Z\",\r\n + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-36-e6c4d\",\r\n + \ \"duration\": \"PT5.2905339S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:17:46.4444122Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2222' + - '1594' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:05 GMT + - Fri, 18 Nov 2022 18:57:57 GMT expires: - '-1' pragma: @@ -843,9 +821,10 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -855,7 +834,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:05 GMT + - Fri, 18 Nov 2022 18:57:57 GMT expires: - '-1' pragma: @@ -885,9 +864,10 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": []\r\n}" @@ -899,7 +879,291 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:05 GMT + - Fri, 18 Nov 2022 18:57:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:57:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1500' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:58:01.9883146Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:01.9883146Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1201792a-2a55-490d-bc3e-3322a8fe73ba?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1142' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1201792a-2a55-490d-bc3e-3322a8fe73ba?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1201792a-2a55-490d-bc3e-3322a8fe73ba\",\r\n + \ \"name\": \"1201792a-2a55-490d-bc3e-3322a8fe73ba\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-02-0e0e3\",\r\n + \ \"duration\": \"PT7.3963533S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:01.9883146Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:01.9883146Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1997' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:19 GMT expires: - '-1' pragma: @@ -917,4 +1181,3389 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-02-0e0e3\",\r\n + \ \"duration\": \"PT7.3963533S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:01.9883146Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:01.9883146Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1997' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:58:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:04.9688067Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:05.4062505Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '729' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1500' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:58:24.2888519Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:24.2888519Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f806aeb-3419-46b6-a542-24ddcbfb712c?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1142' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f806aeb-3419-46b6-a542-24ddcbfb712c?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f806aeb-3419-46b6-a542-24ddcbfb712c\",\r\n + \ \"name\": \"3f806aeb-3419-46b6-a542-24ddcbfb712c\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-24-d7117\",\r\n + \ \"duration\": \"PT5.683338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:24.2888519Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:24.2888519Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1996' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-24-d7117\",\r\n + \ \"duration\": \"PT5.683338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:24.2888519Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:24.2888519Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1996' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:58:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:58:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n + \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:59:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n + \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:59:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n + \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:00:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n + \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:00:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n + \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2022-04-25T19:02:06.5440853Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2022-11-08T19:10:36.8883217Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:23:44.9589885Z","changedTime":"2022-11-14T23:03:01.9713904Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:28:25.4284299Z","changedTime":"2022-11-14T23:03:02.0267239Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3","name":"simpleblogstorage3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-07T23:01:38.0105357Z","changedTime":"2022-11-07T23:11:58.1206582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T18:58:04.9440397Z","changedTime":"2022-11-18T18:58:05.1757125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:58:04.9688067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:58:04.9688067Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T18:58:05.3701845Z","changedTime":"2022-11-18T18:58:05.5508265Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:58:05.4062505Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:58:05.4062505Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '72274' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:01:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:01:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:01:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:01:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", "name": "[parameters(''tsname'')]", "location": + "[resourceGroup().location]"}, {"type": "Microsoft.Resources/deployments", "apiVersion": + "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}, + "tsname": {"value": "cli-test-template-spec000003"}}, "actionOnUnmanage": {"resources": + "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1564' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T19:02:10.4543763Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:02:10.4543763Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1222' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537\",\r\n + \ \"name\": \"354c3230-0f99-4cd4-af41-571d89297537\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537\",\r\n + \ \"name\": \"354c3230-0f99-4cd4-af41-571d89297537\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-02-10-ed4b2\",\r\n + \ \"duration\": \"PT19.6576622S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:02:10.4543763Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:02:10.4543763Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T19:02:13.1872288Z","changedTime":"2022-11-18T19:02:13.373004Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T19:02:13.2091167Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T19:02:13.2091167Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '669' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-02-10-ed4b2\",\r\n + \ \"duration\": \"PT19.6576622S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:02:10.4543763Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:02:10.4543763Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:03:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:04:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:04:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:05:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:05:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n + \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:06:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:06:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:57:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36267' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:06:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:06:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:06:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:06:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:07:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:07:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:07:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:07:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/deployments", + "apiVersion": "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1330' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T19:07:29.6642008Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:07:29.6642008Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1144' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:07:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n + \ \"name\": \"dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:07:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n + \ \"name\": \"dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-07-29-26e20\",\r\n + \ \"duration\": \"PT19.9350877S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:07:29.6642008Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:07:29.6642008Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:08:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-07-29-26e20\",\r\n + \ \"duration\": \"PT19.9350877S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:07:29.6642008Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:07:29.6642008Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:08:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:08:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n + \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:08:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n + \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:09:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n + \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:09:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n + \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:10:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n + \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:10:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:57:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36267' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 19:10:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:10:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:10:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:11:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:11:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:11:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 19:11:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index 530c3eb2b75..ef0aa107a09 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -28,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:57 GMT + - Fri, 18 Nov 2022 18:16:56 GMT expires: - '-1' pragma: @@ -49,8 +50,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -61,50 +63,44 @@ interactions: Connection: - keep-alive Content-Length: - - '739' + - '822' Content-Type: - application/json ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:16:57.5222781Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3816cec9-a431-4909-9e1f-c72f88fb4d4d?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/80261e35-0cd1-4fb0-aeee-c9c2db6895c2?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1788' + - '1207' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:57 GMT + - Fri, 18 Nov 2022 18:17:00 GMT expires: - '-1' pragma: @@ -116,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -132,15 +128,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3816cec9-a431-4909-9e1f-c72f88fb4d4d?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/80261e35-0cd1-4fb0-aeee-c9c2db6895c2?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3816cec9-a431-4909-9e1f-c72f88fb4d4d\",\r\n - \ \"name\": \"3816cec9-a431-4909-9e1f-c72f88fb4d4d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/80261e35-0cd1-4fb0-aeee-c9c2db6895c2\",\r\n + \ \"name\": \"80261e35-0cd1-4fb0-aeee-c9c2db6895c2\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:14 GMT + - Fri, 18 Nov 2022 18:17:17 GMT expires: - '-1' pragma: @@ -179,46 +176,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-57-120fe\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-00-6d49f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n + \ \"duration\": \"PT9.129879S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:16:57.5222781Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '1598' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:15 GMT + - Fri, 18 Nov 2022 18:17:17 GMT expires: - '-1' pragma: @@ -250,44 +244,41 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-57-120fe\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-00-6d49f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n + \ \"duration\": \"PT9.129879S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:16:57.5222781Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '1598' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:16 GMT + - Fri, 18 Nov 2022 18:17:21 GMT expires: - '-1' pragma: @@ -319,44 +310,41 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-57-120fe\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-00-6d49f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:57.2857285Z\",\r\n + \ \"duration\": \"PT9.129879S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:16:57.5222781Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:57.2857285Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '1598' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:17 GMT + - Fri, 18 Nov 2022 18:17:24 GMT expires: - '-1' pragma: @@ -390,9 +378,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -402,7 +391,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:19:17 GMT + - Fri, 18 Nov 2022 18:17:26 GMT expires: - '-1' pragma: @@ -414,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -426,482 +415,160 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview - response: - body: - string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"shared - sql and web","templateLink":{"uri":"C:\\Users\\harshpatel\\Misc\\TemplateFiles\\empty.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4'' - for more details.","details":[{"code":"InvalidContentLink","message":"The - provided content link ''Azure.Deployments.Core.Entities.DeploymentTemplateContentLink'' - is invalid or not supported. Content link must be an absolute URI not referencing - local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable - to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 - 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). - Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', - request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''foo'' - at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', - request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', - request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The - ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription - for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. - The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","location":"West - US 2","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap/snapshots/2021-09-15-17-56-23-97152","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1/snapshots/2021-09-15-23-48-00-f5e95","updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}},"managedResources":[],"provisioningState":"succeededWithFailures","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One - or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown - error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"[parameters(''rgName'')]","type":"Microsoft.Resources/resourceGroups","apiVersion":"2018-05-01","location":"[parameters(''rgLocation'')]","properties":{}},{"name":"nestedDeployment","type":"Microsoft.Resources/deployments","resourceGroup":"[parameters(''rgName'')]","apiVersion":"2020-06-01","dependsOn":["[parameters(''rgName'')]"],"properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinnewrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentTwo","type":"Microsoft.Resources/deployments","resourceGroup":"filiz-test","apiVersion":"2020-06-01","properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinexistingrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', - ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', - ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', - ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The - resource group ''filiz-test-template-created'' is in deprovisioning state - and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The - resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot - perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', - ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', - ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', - ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', - uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', - ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' - does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn - how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2fhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2fvs0O88nOeeqFORS%2bbTIpTK5Kns32saRMlF%2bqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2fPKZdbKPYdBjsLMPPRZuF6cc%2bW7zsYk9VJU8vQS5N7fztHcdOpu16%2bPah04pvrS5%2fV7WGC78x5pyu%2f0B"}' - headers: - cache-control: - - no-cache - content-length: - - '245146' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Jan 2022 21:19:19 GMT + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:17:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '822' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:17:29.8378302Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:17:29.8378302Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5338e36e-14b5-4c7d-b4f6-a23815c30eea?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1207' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:17:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5338e36e-14b5-4c7d-b4f6-a23815c30eea?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5338e36e-14b5-4c7d-b4f6-a23815c30eea\",\r\n + \ \"name\": \"5338e36e-14b5-4c7d-b4f6-a23815c30eea\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:17:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 1c70c3c4-fa50-4926-83e3-00431afc7df1 - - 87e2a87d-d24a-469d-a904-e84fcfefe844 status: code: 200 message: OK @@ -909,379 +576,65 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B - response: - body: - string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D\"},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:50:04.0885604Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:50:04.0885604Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf_pu\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf/snapshots/2021-09-17-19-51-01-adde5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:51:00.3893514Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:51:00.3893514Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf-pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf/snapshots/2021-09-17-19-53-29-35b3d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:53:28.4521693Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:53:28.4521693Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu/snapshots/2021-09-17-19-56-23-1b2bc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D\"},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:54:42.7520085Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:56:22.212836Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pu\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"parameters\":{\"adVnetName\":{\"value\":\"ad-vnet\"},\"adVnetSubscriptionId\":{\"value\":\"ec0f79d3-16f0-4892-8165-f569a92c8273\"},\"dnsServerPrivateIp\":{\"value\":\"10.0.0.4\"},\"adminUsername\":{\"value\":\"bmoore\"},\"adSubnetName\":{\"value\":\"ad-vnet-subnet\"},\"adDomainName\":{\"value\":\"corp.mydomain.com\"},\"adVnetRG\":{\"value\":\"aad-stack\"},\"adminPassword\":{\"reference\":{\"keyVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo\"},\"secretName\":\"adminPass\"}}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"dnsLabelPrefix\":{\"type\":\"string\",\"defaultValue\":\"[concat('rds-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"Unique - public DNS prefix for the deployment. The fqdn will look something like '.westus.cloudapp.azure.com'. - Up to 62 chars, digits or dashes, lowercase, should start with a letter: must - conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result - the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb\"}},\"adDomainName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - name of the AD domain. For example contoso.com\"}},\"adVnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - vnet name of AD domain. For example johnvnet1\"}},\"adVnetRG\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - Resource Group containing the existing Virtual Network resource\"}},\"adVnetSubscriptionId\":{\"type\":\"string\",\"defaultValue\":\"[subscription().subscriptionId]\",\"metadata\":{\"description\":\"The - subscription containing the existing Virtual Network resource\"}},\"adSubnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - subnet name of AD domain\"}},\"dnsServerPrivateIp\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - private IP address of the ad dns server\"}},\"adminUsername\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. - For example johnadmin\"}},\"adminPassword\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The - password for the administrator account of the new VM and the domain\"}},\"imageSKU\":{\"type\":\"string\",\"allowedValues\":[\"2012-R2-Datacenter\",\"2016-Datacenter\",\"2019-Datacenter\",\"2022-datacenter\"],\"metadata\":{\"description\":\"Windows - server SKU\"},\"defaultValue\":\"2019-Datacenter\"},\"numberOfRdshInstances\":{\"type\":\"int\",\"defaultValue\":1,\"metadata\":{\"description\":\"Number - of RemoteDesktopSessionHosts\"}},\"rdshVmSize\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - size of the RDSH VMs\"},\"defaultValue\":\"Standard_D4s_v3\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\",\"metadata\":{\"description\":\"Location - for all resources.\"}},\"_artifactsLocation\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - base URI where artifacts required by this template are located. When the template - is deployed using the accompanying scripts, a private location in the subscription - will be used and this value will be automatically generated.\"},\"defaultValue\":\"[deployment().properties.templateLink.uri]\"},\"_artifactsLocationSasToken\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The - sasToken required to access _artifactsLocation. When the template is deployed - using the accompanying scripts, a sasToken will be automatically generated.\"},\"defaultValue\":\"\"},\"gatewayIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('gwd-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name - for the gateway, must be globally unique.\"}},\"connBrokerIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('cbd-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name - for the connection broker, must be globally unique.\"}},\"rdshNamingPrefix\":{\"type\":\"string\",\"defaultValue\":\"rdsh-\",\"maxLength\":16,\"metadata\":{\"description\":\"Naming - prefix for the RDS Host VMs and resources\"}}},\"variables\":{\"imagePublisher\":\"MicrosoftWindowsServer\",\"imageOffer\":\"WindowsServer\",\"subnet-id\":\"[resourceId(parameters('adVnetSubscriptionId'), - parameters('adVnetRG'),'Microsoft.Network/virtualNetworks/subnets', parameters('adVnetName'), - parameters('adSubnetName'))]\",\"publicIpAddressName\":\"publicIp\",\"gatewayPublicIpAddressName\":\"gatewayPublicIp\",\"brokerPublicIpAddressName\":\"brokerPublicIp\"},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('publicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('dnsLabelPrefix')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('gatewayPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('gatewayIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('brokerPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('connBrokerIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"gw-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"cb-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - 'availabilityset')]\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/loadBalancers\",\"name\":\"loadBalancer\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('publicIpAddressName'))]\"],\"properties\":{\"frontendIPConfigurations\":[{\"name\":\"LBFE\",\"properties\":{\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('publicIpAddressName'))]\"}}}],\"backendAddressPools\":[{\"name\":\"LBBAP\"}],\"loadBalancingRules\":[{\"name\":\"LBRule01\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', - 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools/', - 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Tcp\",\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', - 'loadbalancer', 'tcpProbe')]\"}}},{\"name\":\"LBRule02\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', - 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools', - 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Udp\",\"frontendPort\":3391,\"backendPort\":3391,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', - 'loadbalancer', 'tcpProbe')]\"}}}],\"probes\":[{\"name\":\"tcpProbe\",\"properties\":{\"protocol\":\"Tcp\",\"port\":443,\"intervalInSeconds\":5,\"numberOfProbes\":2}},{\"name\":\"tcpProbe01\",\"properties\":{\"protocol\":\"Tcp\",\"port\":3391,\"intervalInSeconds\":5,\"numberOfProbes\":2}}],\"inboundNatRules\":[{\"name\":\"rdp\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations','loadBalancer','LBFE')]\"},\"protocol\":\"Tcp\",\"frontendPort\":3389,\"backendPort\":3389,\"enableFloatingIP\":false}}]}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"gw-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses',variables('gatewayPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools','loadBalancer', - 'LBBAP')]\"}],\"loadBalancerInboundNatRules\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/inboundNatRules','loadBalancer', - 'rdp')]\"}]}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"cb-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('brokerPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex(), '-nic')]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-nic-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"gw-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - 'gw-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', - 'gw-nic')]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - 'gw-availabilityset')]\"},\"osProfile\":{\"computerName\":\"gateway\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"gw_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','gw-nic')]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"extensions\",\"name\":\"gateway\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - 'gw-vm')]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\Gateway\",\"properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex())]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-vm-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\",\"[resourceId('Microsoft.Network/networkInterfaces', - concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\"},\"osProfile\":{\"computerName\":\"[concat(parameters('rdshNamingPrefix'), - copyIndex())]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyIndex(),'-OSDisk')]\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces', - concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex(),'/sessionhost')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - concat(parameters('rdshNamingPrefix'), copyindex()))]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\SessionHost\",\"Properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"cb-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - 'cb-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', - 'cb-nic')]\",\"rdsh-vm-loop\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - 'cb-availabilityset')]\"},\"osProfile\":{\"computerName\":\"broker\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"cb_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','cb-nic')]\"}]}}},{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"cb-vm/rdsdeployment\",\"apiVersion\":\"2020-06-01\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - 'cb-vm')]\",\"[resourceId('Microsoft.Compute/virtualMachines/extensions', - 'gw-vm', 'gateway')]\",\"rdsh-vm-loop\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"configurationFunction\":\"Configuration.ps1\\\\RDSDeployment\",\"properties\":{\"adminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:adminPassword\"},\"connectionBroker\":\"[concat('broker.',parameters('adDomainName'))]\",\"domainName\":\"[parameters('adDomainName')]\",\"externalfqdn\":\"[reference(variables('gatewayPublicIpAddressName')).dnsSettings.fqdn]\",\"numberOfRdshInstances\":\"[parameters('numberOfRdshInstances')]\",\"sessionHostNamingPrefix\":\"[parameters('rdshNamingPrefix')]\",\"webAccessServer\":\"[concat('gateway.',parameters('adDomainName'))]\"}},\"protectedSettings\":{\"Items\":{\"adminPassword\":\"[parameters('adminPassword')]\"}}}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplate\",\"message\":\"Deployment - template validation failed: 'The template resource 'dnsLabelPrefix' at line - '8' and column '27' is not valid: The template function 'RESOURCEGROUP' is - not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.'.\",\"details\":[],\"additionalInfo\":[{\"type\":\"TemplateViolation\",\"info\":{\"lineNumber\":8,\"linePosition\":27,\"path\":\"properties.template.parameters.dnsLabelPrefix\"}}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T22:00:21.3463894Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T22:00:21.3463894Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"filiz-test-stack9\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"AuthorizationFailed\",\"message\":\"The - client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' - does not have authorization to perform action 'Microsoft.Resources/deployments/write' - over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope - is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westcentralus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"shared - sql and web\",\"templateLink\":{\"uri\":\"C:\\\\Users\\\\harshpatel\\\\Misc\\\\TemplateFiles\\\\empty.json\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed. See snapshot '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4' - for more details.\",\"details\":[{\"code\":\"InvalidContentLink\",\"message\":\"The - provided content link 'Azure.Deployments.Core.Entities.DeploymentTemplateContentLink' - is invalid or not supported. Content link must be an absolute URI not referencing - local host or UNC path.\",\"details\":[],\"additionalInfo\":[]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-01-21T20:06:54.3715401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-01-21T20:25:54.1835862Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp-shared-services\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The - template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:37:19.2142448Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:37:19.2142448Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create/snapshots/2021-11-17-20-45-56-90d18\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T14:25:40.0202065Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:45:56.782397Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The - template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East - US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', - format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', - variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - 'appPlanDeploy'), '2020-06-01').outputs.planId.value]\"},\"namePrefix\":{\"value\":\"[variables('websites')[copyIndex()].name]\"},\"dockerImage\":{\"value\":\"nginxdemos/hello\"},\"dockerImageTag\":{\"value\":\"[variables('websites')[copyIndex()].tag]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"17373956428318857886\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\"},\"dockerImage\":{\"type\":\"string\"},\"dockerImageTag\":{\"type\":\"string\"},\"appPlanId\":{\"type\":\"string\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/sites\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}site', - parameters('namePrefix'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"siteConfig\":{\"appSettings\":[{\"name\":\"DOCKER_REGISTRY_SERVER_URL\",\"value\":\"https://index.docker.io\"},{\"name\":\"DOCKER_REGISTRY_SERVER_USERNAME\",\"value\":\"\"},{\"name\":\"DOCKER_REGISTRY_SERVER_PASSWORD\",\"value\":\"\"},{\"name\":\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\"value\":\"false\"}],\"linuxFxVersion\":\"[format('DOCKER|{0}:{1}', - parameters('dockerImage'), parameters('dockerImageTag'))]\"},\"serverFarmId\":\"[parameters('appPlanId')]\"}}],\"outputs\":{\"siteUrl\":{\"type\":\"string\",\"value\":\"[reference(resourceId('Microsoft.Web/sites', - format('{0}site', parameters('namePrefix')))).hostNames[0]]\"}}}},\"dependsOn\":[\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"},{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East - US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:36:24.6329286Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:36:24.6329286Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps8692\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4/snapshots/2021-11-15-15-07-37-06804\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T15:06:34.4666682Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T15:07:36.8624014Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc/snapshots/2021-11-15-20-20-18-81368\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:19:17.0338745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:20:18.1175672Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa/snapshots/2021-11-15-20-42-21-f515c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:41:20.4753415Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:42:21.4238094Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl/snapshots/2021-11-15-21-12-24-ad962\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T21:11:23.4123304Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T21:12:24.6476543Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9\",\"parameters\":{\"resourceGroups\":{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun\",\"name\":\"tarun\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"15509277032350500834\"}},\"parameters\":{\"resourceGroups\":{\"type\":\"array\",\"metadata\":{\"description\":\"Resource - Groups definition to deploy resources to.\"}},\"deploymentLocation\":{\"type\":\"string\",\"defaultValue\":\"[deployment().location]\",\"metadata\":{\"description\":\"The - location of the deployment.\"}},\"tags\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"Specify - tags that should be assigned to the deployed resources. Tags are needed for - proper usage and billing handling.\"}},\"solutionVersionTag\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"The - version of this solution in the form of tag. This parameter is specified usually - by lz-deployment-script (deploy.ps1).\"}}},\"functions\":[],\"variables\":{\"allTags\":\"[union(parameters('tags'), - parameters('solutionVersionTag'))]\",\"defaultResourceGroupObject\":{\"tags\":{},\"create\":true,\"alertsScope\":{\"subscriptionId\":\"\",\"resourceGroup\":\"\",\"logAnalyticsWorkspace\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"actionGroups\":[],\"alertRules\":{\"memoryThrashing\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Memory Thrashing has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"memoryThrashingByServerName\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services service logs by server name has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"value_s\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"totalConnectionFailures\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Total Connection Failures has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":15,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":5,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"commandPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Command Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"processingPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Processing Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":2,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"}}}},\"resources\":[{\"condition\":\"[union(variables('defaultResourceGroupObject'), - parameters('resourceGroups')[copyIndex()]).create]\",\"copy\":{\"name\":\"resourceGroupsRes\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2021-04-01\",\"name\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"location\":\"[parameters('resourceGroups')[copyIndex()].location]\",\"tags\":\"[union(variables('allTags'), - union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\",\"properties\":{}},{\"copy\":{\"name\":\"analysisServiceMonResources\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceMonResources-{0}', - copyIndex())]\",\"resourceGroup\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[union(variables('defaultResourceGroupObject'), - parameters('resourceGroups')[copyIndex()])]\"},\"tags\":{\"value\":\"[union(variables('allTags'), - union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"13027831339953017732\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"defaultActionGroupObject\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceAlerts-{0}', - if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name)))]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[parameters('analysisServiceMonitoring')]\"},\"actionGroups\":{\"copy\":[{\"name\":\"value\",\"count\":\"[length(parameters('analysisServiceMonitoring').actionGroups)]\",\"input\":\"[union(variables('defaultActionGroupObject'), - parameters('analysisServiceMonitoring').actionGroups[copyIndex('value')])]\"}]},\"location\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - resourceGroup().location, reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), - 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - '2021-06-01', 'full').location)]\"},\"logAnalyticsWorkspaceResourceId\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - '', extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), - 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name))]\"},\"tags\":{\"value\":\"[parameters('tags')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"1278265623681629574\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"actionGroups\":{\"type\":\"array\"},\"location\":{\"type\":\"string\"},\"logAnalyticsWorkspaceResourceId\":{\"type\":\"string\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"alertRules\":{\"memoryThrashing\":{\"id\":\"2c995c3f-8e42-4eaf-82c2-80b9d443b2dd\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description), - 'This metric shows the average percentage of memory being thrashed from the - RAM of your resource, relative to the total size of RAM in the resource. Note - that this metric is relevant only for Import mode datasets, because they''re - hosting data in memory. This metric does not monitor datasets that are using - DirectQuery or live connection to Analysis Services. When the memory thrashing - keeps exceeding the given threshold, it''s worth investigating the problem - more deeply first, as scaling up is not always the solution for it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"Resource\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"memoryThrashingByServerName\":{\"id\":\"5b9e5597-32c6-4f1a-a984-52aa690ccf5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query), - 'AzureDiagnostics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and OperationName == ''LogMetric''\\r\\n and Category == ''Service''\\r\\n - \ and name_s == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description), - 'This metric shows the average percentage of memory being thrashed from the - RAM of your resource, relative to the total size of RAM in the resource, by - server name. Note that this metric is relevant only for Import mode datasets, - because they''re hosting data in memory. This metric does not monitor datasets - that are using DirectQuery or live connection to Analysis Services. When the - memory thrashing keeps exceeding the given threshold, it''s worth investigating - the problem more deeply first, as scaling up is not always the solution for - it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"_SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"ServerName_s\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"totalConnectionFailures\":{\"id\":\"f9125df9-eb5d-4967-8517-52c68f6f9dd2\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''TotalConnectionFailures''', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description), - 'The average count of failed connection attempts. Set the threshold to an - appropriate value after monitoring and discovering the normal average value - of this metric.', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"commandPoolJobQueueLength\":{\"id\":\"86b2903c-67b2-42a7-8e20-2ba68053cd5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''CommandPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description), - 'Monitors CPU thread utilization related to processing commands. Technically - there are several other types of commands, but when it comes to performance, - ''processing'' is the only one of concern. (the other ''types'' of commands - are things like DDL-ish to add/alter a partition). This particular counter - shows when a (processing) command is waiting on a thread to be allocated from - the command pool\u2026 in other words, if you see a value > 1 here for an - extended period of time, you have a bottleneck. When there is it is very likely - due to Azure AS becomes a junk yard for ''auto-upgraded'' Power BI solutions - w/ auto-refresh capabilities.', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"processingPoolJobQueueLength\":{\"id\":\"a7d45337-19cb-4cb2-b1d9-380bf5cf8970\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''ProcessingPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description), - 'Monitors for Processing Pool Job Queue Length. The processing thread pool - allocates threads for processing the data structures that make up a tabular - model. Same as CommandPoolJobQueueLength a value > 1 for and extended period - of time indicates a bottleneck. This is a much more common place to find a - bottleneck especially in larger models that leverage partitions and parallel - processing.', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]}},\"defaultDimension\":[{\"name\":\"_ResourceId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"resources\":[{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id), - variables('alertRules').memoryThrashing.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.displayName]\",\"description\":\"[variables('alertRules').memoryThrashing.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashing.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').memoryThrashing.dimensions), - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id), - variables('alertRules').memoryThrashingByServerName.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.displayName]\",\"description\":\"[variables('alertRules').memoryThrashingByServerName.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashingByServerName.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').memoryThrashingByServerName.dimensions), - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id), - variables('alertRules').commandPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').commandPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').commandPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').commandPoolJobQueueLength.dimensions), - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id), - variables('alertRules').processingPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').processingPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').processingPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').processingPoolJobQueueLength.dimensions), - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}}]}}}]}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - parameters('resourceGroups')[copyIndex()].name)]\"]}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"tsunkaraneni@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-16T23:17:33.6981155Z\",\"lastModifiedBy\":\"tsunkaraneni@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-16T23:31:28.1053874Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ghImplicit\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp/snapshots/2021-11-17-20-18-26-378e6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:17:25.3276637Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:18:26.5874089Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource - group 'resource-group' could not be found.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:58:13.256519Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:44:40.7588571Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create_checje\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg/snapshots/2021-11-17-21-03-16-860a6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T21:02:09.9177231Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T21:03:16.4615691Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc/snapshots/2021-11-18-20-42-37-e61e7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T20:41:35.3698362Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:42:37.6788971Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription53xmqc\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp/snapshots/2021-11-22-16-13-15-0eef8\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:15.1673603Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:15.1673603Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-hp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt/snapshots/2021-11-18-21-02-19-64f5e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:01:12.9792533Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:02:19.3094872Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g/snapshots/2021-11-18-21-09-35-16ebd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:08:34.3282811Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:09:35.8321305Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g/snapshots/2021-11-19-15-47-39-bcc03\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-19T15:46:36.9976152Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-19T15:47:38.9223058Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2/snapshots/2021-11-22-16-13-37-7052c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:37.2232093Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:37.2232093Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-2\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountType\":{\"type\":\"string\",\"defaultValue\":\"Standard_LRS\",\"allowedValues\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_ZRS\",\"Premium_LRS\"],\"metadata\":{\"description\":\"Storage - Account type\"}},\"location\":{\"type\":\"string\",\"defaultValue\":\"westus\",\"metadata\":{\"description\":\"Location - for all resources.\"}}},\"variables\":{\"storageAccountName\":\"deploymentscopetest\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"apiVersion\":\"2019-06-01\",\"name\":\"[variables('storageAccountName')]\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"[parameters('storageAccountType')]\"},\"kind\":\"StorageV2\",\"properties\":{}}],\"outputs\":{\"storageAccountName\":{\"type\":\"string\",\"value\":\"[variables('storageAccountName')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2bhE1HmzQCmuQWlt%2bTe%2b%2bzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2b1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2fzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2b60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2fGKXPzsiTN49yzlt6Rbrc%2f\"}" - headers: - cache-control: - - no-cache - content-length: - - '234657' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Jan 2022 21:19:19 GMT + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-33-30ef7\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT8.0231966S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:17:29.8378302Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:17:29.8378302Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1599' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:17:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 6d8b0ca7-4e43-481d-a7bc-9977c967b5d8 status: code: 200 message: OK @@ -1293,57 +646,156 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub list + - stack sub delete Connection: - keep-alive + ParameterSetName: + - --id --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-28-16-32-13-851e0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-25-40-dac1c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub/snapshots/2022-01-31-20-31-45-1b6a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-01-31-20-31-45-1b6a8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"next"},"bar":{"value":"one"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:31:44.8448442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca/snapshots/2022-01-31-20-47-02-aa353","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb/snapshots/2022-01-31-20-47-09-1fc68","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd/snapshots/2022-01-31-20-49-55-f898a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7/snapshots/2022-01-31-20-50-04-c02d1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr/snapshots/2022-01-31-20-50-11-cf3cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm/snapshots/2022-01-31-20-50-11-b3e71","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' - for more details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template parameters ''foo, bar'' in the - parameters file are not valid; they are not present in the original template - and can therefore not be provided at deployment time. The only supported parameters - for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42/snapshots/2022-01-31-21-09-44-2850a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp/snapshots/2022-01-31-21-09-44-8c7f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn/snapshots/2022-01-31-21-09-51-7f2c6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n/snapshots/2022-01-31-21-09-52-1e397","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' - for more details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template parameters ''foo, bar'' in the - parameters file are not valid; they are not present in the original template - and can therefore not be provided at deployment time. The only supported parameters - for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp/snapshots/2022-01-31-21-15-47-c195b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v/snapshots/2022-01-31-21-15-47-372f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn/snapshots/2022-01-31-21-15-52-4485d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj/snapshots/2022-01-31-21-15-57-551cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty/snapshots/2022-01-31-21-16-00-8a2b9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l/snapshots/2022-01-31-21-19-12-603a3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-12-603a3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:12.6491871Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-14-ce820","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:19:14.0307476Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:14.0307476Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxpii7ltks3masaeqe4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxpii7ltks3masaeqe4"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"deploying"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:19:15.6035138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:15.6035138Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription5yvufvjraewmywaljo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription5yvufvjraewmywaljo"}]}' + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-33-30ef7\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT8.0231966S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:17:29.8378302Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:17:29.8378302Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '140718' + - '1599' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:20 GMT + - Fri, 18 Nov 2022 18:17:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 40e05d3f-f30a-4162-b3e5-4cfdf148f138 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:17:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:17:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created - request: body: null headers: @@ -1356,11 +808,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -1373,7 +826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:20 GMT + - Fri, 18 Nov 2022 18:17:59 GMT expires: - '-1' pragma: @@ -1389,13 +842,24 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": - "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", - "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": - [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", - "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000002"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -1406,50 +870,44 @@ interactions: Connection: - keep-alive Content-Length: - - '739' + - '1658' Content-Type: - application/json ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:21.1751602Z\",\r\n + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000002\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:00.9441534Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:21.1751602Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:00.9441534Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0e5759e3-4b30-4223-970d-fbcf69ba87b9?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1788' + - '1243' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:21 GMT + - Fri, 18 Nov 2022 18:18:02 GMT expires: - '-1' pragma: @@ -1461,7 +919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1477,15 +935,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0e5759e3-4b30-4223-970d-fbcf69ba87b9?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4\",\r\n - \ \"name\": \"7b4b0c1a-a0f4-4c6f-93c9-90b56f1be9f4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0e5759e3-4b30-4223-970d-fbcf69ba87b9\",\r\n + \ \"name\": \"0e5759e3-4b30-4223-970d-fbcf69ba87b9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1494,7 +953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:38 GMT + - Fri, 18 Nov 2022 18:18:19 GMT expires: - '-1' pragma: @@ -1524,46 +983,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-21-1291f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-19-21-1291f\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:21.1751602Z\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-02-f7d8f\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"duration\": \"PT7.4398111S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:00.9441534Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:21.1751602Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:00.9441534Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '2098' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:38 GMT + - Fri, 18 Nov 2022 18:18:19 GMT expires: - '-1' pragma: @@ -1593,46 +1049,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --id --yes + - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-21-1291f\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-19-21-1291f\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:21.1751602Z\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-02-f7d8f\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"duration\": \"PT7.4398111S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:00.9441534Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:21.1751602Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:00.9441534Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2177' + - '2098' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:40 GMT + - Fri, 18 Nov 2022 18:18:25 GMT expires: - '-1' pragma: @@ -1664,11 +1117,12 @@ interactions: Content-Length: - '0' ParameterSetName: - - --id --yes + - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1678,7 +1132,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:19:40 GMT + - Fri, 18 Nov 2022 18:18:27 GMT expires: - '-1' pragma: @@ -1690,7 +1144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK @@ -1702,469 +1156,109 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview - response: - body: - string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"shared - sql and web","templateLink":{"uri":"C:\\Users\\harshpatel\\Misc\\TemplateFiles\\empty.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4'' - for more details.","details":[{"code":"InvalidContentLink","message":"The - provided content link ''Azure.Deployments.Core.Entities.DeploymentTemplateContentLink'' - is invalid or not supported. Content link must be an absolute URI not referencing - local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable - to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 - 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). - Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', - request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''foo'' - at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', - request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', - request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The - ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription - for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. - The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","location":"West - US 2","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap/snapshots/2021-09-15-17-56-23-97152","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1/snapshots/2021-09-15-23-48-00-f5e95","updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}},"managedResources":[],"provisioningState":"succeededWithFailures","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One - or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown - error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"[parameters(''rgName'')]","type":"Microsoft.Resources/resourceGroups","apiVersion":"2018-05-01","location":"[parameters(''rgLocation'')]","properties":{}},{"name":"nestedDeployment","type":"Microsoft.Resources/deployments","resourceGroup":"[parameters(''rgName'')]","apiVersion":"2020-06-01","dependsOn":["[parameters(''rgName'')]"],"properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinnewrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentTwo","type":"Microsoft.Resources/deployments","resourceGroup":"filiz-test","apiVersion":"2020-06-01","properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinexistingrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', - ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', - ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', - ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The - resource group ''filiz-test-template-created'' is in deprovisioning state - and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The - resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot - perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', - ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', - ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', - ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', - uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', - ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' - does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn - how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2fhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2fvs0O88nOeeqFORS%2bbTIpTK5Kns32saRMlF%2bqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2fPKZdbKPYdBjsLMPPRZuF6cc%2bW7zsYk9VJU8vQS5N7fztHcdOpu16%2bPah04pvrS5%2fV7WGC78x5pyu%2f0B"}' - headers: - cache-control: - - no-cache - content-length: - - '245146' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Jan 2022 21:19:41 GMT + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:28 GMT expires: - '-1' pragma: @@ -2175,9 +1269,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 339384f3-80d0-48e1-b40e-4277b0dce7ed - - 5545d98a-f14f-4ebb-a0f1-e5921d66eae5 status: code: 200 message: OK @@ -2189,375 +1280,3127 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B - response: - body: - string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D\"},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:50:04.0885604Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:50:04.0885604Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf_pu\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf/snapshots/2021-09-17-19-51-01-adde5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:51:00.3893514Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:51:00.3893514Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf-pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf/snapshots/2021-09-17-19-53-29-35b3d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:53:28.4521693Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:53:28.4521693Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu/snapshots/2021-09-17-19-56-23-1b2bc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D\"},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:54:42.7520085Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:56:22.212836Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pu\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"parameters\":{\"adVnetName\":{\"value\":\"ad-vnet\"},\"adVnetSubscriptionId\":{\"value\":\"ec0f79d3-16f0-4892-8165-f569a92c8273\"},\"dnsServerPrivateIp\":{\"value\":\"10.0.0.4\"},\"adminUsername\":{\"value\":\"bmoore\"},\"adSubnetName\":{\"value\":\"ad-vnet-subnet\"},\"adDomainName\":{\"value\":\"corp.mydomain.com\"},\"adVnetRG\":{\"value\":\"aad-stack\"},\"adminPassword\":{\"reference\":{\"keyVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo\"},\"secretName\":\"adminPass\"}}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"dnsLabelPrefix\":{\"type\":\"string\",\"defaultValue\":\"[concat('rds-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"Unique - public DNS prefix for the deployment. The fqdn will look something like '.westus.cloudapp.azure.com'. - Up to 62 chars, digits or dashes, lowercase, should start with a letter: must - conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result - the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb\"}},\"adDomainName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - name of the AD domain. For example contoso.com\"}},\"adVnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - vnet name of AD domain. For example johnvnet1\"}},\"adVnetRG\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - Resource Group containing the existing Virtual Network resource\"}},\"adVnetSubscriptionId\":{\"type\":\"string\",\"defaultValue\":\"[subscription().subscriptionId]\",\"metadata\":{\"description\":\"The - subscription containing the existing Virtual Network resource\"}},\"adSubnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - subnet name of AD domain\"}},\"dnsServerPrivateIp\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - private IP address of the ad dns server\"}},\"adminUsername\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. - For example johnadmin\"}},\"adminPassword\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The - password for the administrator account of the new VM and the domain\"}},\"imageSKU\":{\"type\":\"string\",\"allowedValues\":[\"2012-R2-Datacenter\",\"2016-Datacenter\",\"2019-Datacenter\",\"2022-datacenter\"],\"metadata\":{\"description\":\"Windows - server SKU\"},\"defaultValue\":\"2019-Datacenter\"},\"numberOfRdshInstances\":{\"type\":\"int\",\"defaultValue\":1,\"metadata\":{\"description\":\"Number - of RemoteDesktopSessionHosts\"}},\"rdshVmSize\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - size of the RDSH VMs\"},\"defaultValue\":\"Standard_D4s_v3\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\",\"metadata\":{\"description\":\"Location - for all resources.\"}},\"_artifactsLocation\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - base URI where artifacts required by this template are located. When the template - is deployed using the accompanying scripts, a private location in the subscription - will be used and this value will be automatically generated.\"},\"defaultValue\":\"[deployment().properties.templateLink.uri]\"},\"_artifactsLocationSasToken\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The - sasToken required to access _artifactsLocation. When the template is deployed - using the accompanying scripts, a sasToken will be automatically generated.\"},\"defaultValue\":\"\"},\"gatewayIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('gwd-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name - for the gateway, must be globally unique.\"}},\"connBrokerIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('cbd-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name - for the connection broker, must be globally unique.\"}},\"rdshNamingPrefix\":{\"type\":\"string\",\"defaultValue\":\"rdsh-\",\"maxLength\":16,\"metadata\":{\"description\":\"Naming - prefix for the RDS Host VMs and resources\"}}},\"variables\":{\"imagePublisher\":\"MicrosoftWindowsServer\",\"imageOffer\":\"WindowsServer\",\"subnet-id\":\"[resourceId(parameters('adVnetSubscriptionId'), - parameters('adVnetRG'),'Microsoft.Network/virtualNetworks/subnets', parameters('adVnetName'), - parameters('adSubnetName'))]\",\"publicIpAddressName\":\"publicIp\",\"gatewayPublicIpAddressName\":\"gatewayPublicIp\",\"brokerPublicIpAddressName\":\"brokerPublicIp\"},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('publicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('dnsLabelPrefix')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('gatewayPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('gatewayIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('brokerPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('connBrokerIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"gw-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"cb-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - 'availabilityset')]\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/loadBalancers\",\"name\":\"loadBalancer\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('publicIpAddressName'))]\"],\"properties\":{\"frontendIPConfigurations\":[{\"name\":\"LBFE\",\"properties\":{\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('publicIpAddressName'))]\"}}}],\"backendAddressPools\":[{\"name\":\"LBBAP\"}],\"loadBalancingRules\":[{\"name\":\"LBRule01\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', - 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools/', - 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Tcp\",\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', - 'loadbalancer', 'tcpProbe')]\"}}},{\"name\":\"LBRule02\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', - 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools', - 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Udp\",\"frontendPort\":3391,\"backendPort\":3391,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', - 'loadbalancer', 'tcpProbe')]\"}}}],\"probes\":[{\"name\":\"tcpProbe\",\"properties\":{\"protocol\":\"Tcp\",\"port\":443,\"intervalInSeconds\":5,\"numberOfProbes\":2}},{\"name\":\"tcpProbe01\",\"properties\":{\"protocol\":\"Tcp\",\"port\":3391,\"intervalInSeconds\":5,\"numberOfProbes\":2}}],\"inboundNatRules\":[{\"name\":\"rdp\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations','loadBalancer','LBFE')]\"},\"protocol\":\"Tcp\",\"frontendPort\":3389,\"backendPort\":3389,\"enableFloatingIP\":false}}]}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"gw-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses',variables('gatewayPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools','loadBalancer', - 'LBBAP')]\"}],\"loadBalancerInboundNatRules\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/inboundNatRules','loadBalancer', - 'rdp')]\"}]}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"cb-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('brokerPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex(), '-nic')]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-nic-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"gw-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - 'gw-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', - 'gw-nic')]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - 'gw-availabilityset')]\"},\"osProfile\":{\"computerName\":\"gateway\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"gw_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','gw-nic')]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"extensions\",\"name\":\"gateway\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - 'gw-vm')]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\Gateway\",\"properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex())]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-vm-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\",\"[resourceId('Microsoft.Network/networkInterfaces', - concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\"},\"osProfile\":{\"computerName\":\"[concat(parameters('rdshNamingPrefix'), - copyIndex())]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyIndex(),'-OSDisk')]\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces', - concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex(),'/sessionhost')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - concat(parameters('rdshNamingPrefix'), copyindex()))]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\SessionHost\",\"Properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"cb-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - 'cb-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', - 'cb-nic')]\",\"rdsh-vm-loop\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - 'cb-availabilityset')]\"},\"osProfile\":{\"computerName\":\"broker\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"cb_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','cb-nic')]\"}]}}},{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"cb-vm/rdsdeployment\",\"apiVersion\":\"2020-06-01\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - 'cb-vm')]\",\"[resourceId('Microsoft.Compute/virtualMachines/extensions', - 'gw-vm', 'gateway')]\",\"rdsh-vm-loop\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"configurationFunction\":\"Configuration.ps1\\\\RDSDeployment\",\"properties\":{\"adminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:adminPassword\"},\"connectionBroker\":\"[concat('broker.',parameters('adDomainName'))]\",\"domainName\":\"[parameters('adDomainName')]\",\"externalfqdn\":\"[reference(variables('gatewayPublicIpAddressName')).dnsSettings.fqdn]\",\"numberOfRdshInstances\":\"[parameters('numberOfRdshInstances')]\",\"sessionHostNamingPrefix\":\"[parameters('rdshNamingPrefix')]\",\"webAccessServer\":\"[concat('gateway.',parameters('adDomainName'))]\"}},\"protectedSettings\":{\"Items\":{\"adminPassword\":\"[parameters('adminPassword')]\"}}}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplate\",\"message\":\"Deployment - template validation failed: 'The template resource 'dnsLabelPrefix' at line - '8' and column '27' is not valid: The template function 'RESOURCEGROUP' is - not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.'.\",\"details\":[],\"additionalInfo\":[{\"type\":\"TemplateViolation\",\"info\":{\"lineNumber\":8,\"linePosition\":27,\"path\":\"properties.template.parameters.dnsLabelPrefix\"}}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T22:00:21.3463894Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T22:00:21.3463894Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"filiz-test-stack9\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"AuthorizationFailed\",\"message\":\"The - client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' - does not have authorization to perform action 'Microsoft.Resources/deployments/write' - over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope - is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westcentralus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"shared - sql and web\",\"templateLink\":{\"uri\":\"C:\\\\Users\\\\harshpatel\\\\Misc\\\\TemplateFiles\\\\empty.json\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed. See snapshot '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4' - for more details.\",\"details\":[{\"code\":\"InvalidContentLink\",\"message\":\"The - provided content link 'Azure.Deployments.Core.Entities.DeploymentTemplateContentLink' - is invalid or not supported. Content link must be an absolute URI not referencing - local host or UNC path.\",\"details\":[],\"additionalInfo\":[]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-01-21T20:06:54.3715401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-01-21T20:25:54.1835862Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp-shared-services\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The - template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:37:19.2142448Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:37:19.2142448Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create/snapshots/2021-11-17-20-45-56-90d18\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T14:25:40.0202065Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:45:56.782397Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The - template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East - US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', - format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', - variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - 'appPlanDeploy'), '2020-06-01').outputs.planId.value]\"},\"namePrefix\":{\"value\":\"[variables('websites')[copyIndex()].name]\"},\"dockerImage\":{\"value\":\"nginxdemos/hello\"},\"dockerImageTag\":{\"value\":\"[variables('websites')[copyIndex()].tag]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"17373956428318857886\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\"},\"dockerImage\":{\"type\":\"string\"},\"dockerImageTag\":{\"type\":\"string\"},\"appPlanId\":{\"type\":\"string\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/sites\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}site', - parameters('namePrefix'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"siteConfig\":{\"appSettings\":[{\"name\":\"DOCKER_REGISTRY_SERVER_URL\",\"value\":\"https://index.docker.io\"},{\"name\":\"DOCKER_REGISTRY_SERVER_USERNAME\",\"value\":\"\"},{\"name\":\"DOCKER_REGISTRY_SERVER_PASSWORD\",\"value\":\"\"},{\"name\":\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\"value\":\"false\"}],\"linuxFxVersion\":\"[format('DOCKER|{0}:{1}', - parameters('dockerImage'), parameters('dockerImageTag'))]\"},\"serverFarmId\":\"[parameters('appPlanId')]\"}}],\"outputs\":{\"siteUrl\":{\"type\":\"string\",\"value\":\"[reference(resourceId('Microsoft.Web/sites', - format('{0}site', parameters('namePrefix')))).hostNames[0]]\"}}}},\"dependsOn\":[\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"},{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East - US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:36:24.6329286Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:36:24.6329286Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps8692\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4/snapshots/2021-11-15-15-07-37-06804\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T15:06:34.4666682Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T15:07:36.8624014Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc/snapshots/2021-11-15-20-20-18-81368\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:19:17.0338745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:20:18.1175672Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa/snapshots/2021-11-15-20-42-21-f515c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:41:20.4753415Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:42:21.4238094Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl/snapshots/2021-11-15-21-12-24-ad962\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T21:11:23.4123304Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T21:12:24.6476543Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9\",\"parameters\":{\"resourceGroups\":{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun\",\"name\":\"tarun\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"15509277032350500834\"}},\"parameters\":{\"resourceGroups\":{\"type\":\"array\",\"metadata\":{\"description\":\"Resource - Groups definition to deploy resources to.\"}},\"deploymentLocation\":{\"type\":\"string\",\"defaultValue\":\"[deployment().location]\",\"metadata\":{\"description\":\"The - location of the deployment.\"}},\"tags\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"Specify - tags that should be assigned to the deployed resources. Tags are needed for - proper usage and billing handling.\"}},\"solutionVersionTag\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"The - version of this solution in the form of tag. This parameter is specified usually - by lz-deployment-script (deploy.ps1).\"}}},\"functions\":[],\"variables\":{\"allTags\":\"[union(parameters('tags'), - parameters('solutionVersionTag'))]\",\"defaultResourceGroupObject\":{\"tags\":{},\"create\":true,\"alertsScope\":{\"subscriptionId\":\"\",\"resourceGroup\":\"\",\"logAnalyticsWorkspace\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"actionGroups\":[],\"alertRules\":{\"memoryThrashing\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Memory Thrashing has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"memoryThrashingByServerName\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services service logs by server name has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"value_s\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"totalConnectionFailures\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Total Connection Failures has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":15,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":5,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"commandPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Command Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"processingPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Processing Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":2,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"}}}},\"resources\":[{\"condition\":\"[union(variables('defaultResourceGroupObject'), - parameters('resourceGroups')[copyIndex()]).create]\",\"copy\":{\"name\":\"resourceGroupsRes\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2021-04-01\",\"name\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"location\":\"[parameters('resourceGroups')[copyIndex()].location]\",\"tags\":\"[union(variables('allTags'), - union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\",\"properties\":{}},{\"copy\":{\"name\":\"analysisServiceMonResources\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceMonResources-{0}', - copyIndex())]\",\"resourceGroup\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[union(variables('defaultResourceGroupObject'), - parameters('resourceGroups')[copyIndex()])]\"},\"tags\":{\"value\":\"[union(variables('allTags'), - union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"13027831339953017732\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"defaultActionGroupObject\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceAlerts-{0}', - if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name)))]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[parameters('analysisServiceMonitoring')]\"},\"actionGroups\":{\"copy\":[{\"name\":\"value\",\"count\":\"[length(parameters('analysisServiceMonitoring').actionGroups)]\",\"input\":\"[union(variables('defaultActionGroupObject'), - parameters('analysisServiceMonitoring').actionGroups[copyIndex('value')])]\"}]},\"location\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - resourceGroup().location, reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), - 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - '2021-06-01', 'full').location)]\"},\"logAnalyticsWorkspaceResourceId\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - '', extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), - 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name))]\"},\"tags\":{\"value\":\"[parameters('tags')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"1278265623681629574\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"actionGroups\":{\"type\":\"array\"},\"location\":{\"type\":\"string\"},\"logAnalyticsWorkspaceResourceId\":{\"type\":\"string\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"alertRules\":{\"memoryThrashing\":{\"id\":\"2c995c3f-8e42-4eaf-82c2-80b9d443b2dd\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description), - 'This metric shows the average percentage of memory being thrashed from the - RAM of your resource, relative to the total size of RAM in the resource. Note - that this metric is relevant only for Import mode datasets, because they''re - hosting data in memory. This metric does not monitor datasets that are using - DirectQuery or live connection to Analysis Services. When the memory thrashing - keeps exceeding the given threshold, it''s worth investigating the problem - more deeply first, as scaling up is not always the solution for it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"Resource\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"memoryThrashingByServerName\":{\"id\":\"5b9e5597-32c6-4f1a-a984-52aa690ccf5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query), - 'AzureDiagnostics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and OperationName == ''LogMetric''\\r\\n and Category == ''Service''\\r\\n - \ and name_s == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description), - 'This metric shows the average percentage of memory being thrashed from the - RAM of your resource, relative to the total size of RAM in the resource, by - server name. Note that this metric is relevant only for Import mode datasets, - because they''re hosting data in memory. This metric does not monitor datasets - that are using DirectQuery or live connection to Analysis Services. When the - memory thrashing keeps exceeding the given threshold, it''s worth investigating - the problem more deeply first, as scaling up is not always the solution for - it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"_SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"ServerName_s\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"totalConnectionFailures\":{\"id\":\"f9125df9-eb5d-4967-8517-52c68f6f9dd2\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''TotalConnectionFailures''', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description), - 'The average count of failed connection attempts. Set the threshold to an - appropriate value after monitoring and discovering the normal average value - of this metric.', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"commandPoolJobQueueLength\":{\"id\":\"86b2903c-67b2-42a7-8e20-2ba68053cd5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''CommandPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description), - 'Monitors CPU thread utilization related to processing commands. Technically - there are several other types of commands, but when it comes to performance, - ''processing'' is the only one of concern. (the other ''types'' of commands - are things like DDL-ish to add/alter a partition). This particular counter - shows when a (processing) command is waiting on a thread to be allocated from - the command pool\u2026 in other words, if you see a value > 1 here for an - extended period of time, you have a bottleneck. When there is it is very likely - due to Azure AS becomes a junk yard for ''auto-upgraded'' Power BI solutions - w/ auto-refresh capabilities.', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"processingPoolJobQueueLength\":{\"id\":\"a7d45337-19cb-4cb2-b1d9-380bf5cf8970\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''ProcessingPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description), - 'Monitors for Processing Pool Job Queue Length. The processing thread pool - allocates threads for processing the data structures that make up a tabular - model. Same as CommandPoolJobQueueLength a value > 1 for and extended period - of time indicates a bottleneck. This is a much more common place to find a - bottleneck especially in larger models that leverage partitions and parallel - processing.', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]}},\"defaultDimension\":[{\"name\":\"_ResourceId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"resources\":[{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id), - variables('alertRules').memoryThrashing.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.displayName]\",\"description\":\"[variables('alertRules').memoryThrashing.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashing.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').memoryThrashing.dimensions), - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id), - variables('alertRules').memoryThrashingByServerName.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.displayName]\",\"description\":\"[variables('alertRules').memoryThrashingByServerName.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashingByServerName.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').memoryThrashingByServerName.dimensions), - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id), - variables('alertRules').commandPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').commandPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').commandPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').commandPoolJobQueueLength.dimensions), - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id), - variables('alertRules').processingPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').processingPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').processingPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').processingPoolJobQueueLength.dimensions), - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}}]}}}]}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - parameters('resourceGroups')[copyIndex()].name)]\"]}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"tsunkaraneni@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-16T23:17:33.6981155Z\",\"lastModifiedBy\":\"tsunkaraneni@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-16T23:31:28.1053874Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ghImplicit\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp/snapshots/2021-11-17-20-18-26-378e6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:17:25.3276637Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:18:26.5874089Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource - group 'resource-group' could not be found.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:58:13.256519Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:44:40.7588571Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create_checje\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg/snapshots/2021-11-17-21-03-16-860a6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T21:02:09.9177231Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T21:03:16.4615691Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc/snapshots/2021-11-18-20-42-37-e61e7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T20:41:35.3698362Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:42:37.6788971Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription53xmqc\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp/snapshots/2021-11-22-16-13-15-0eef8\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:15.1673603Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:15.1673603Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-hp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt/snapshots/2021-11-18-21-02-19-64f5e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:01:12.9792533Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:02:19.3094872Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g/snapshots/2021-11-18-21-09-35-16ebd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:08:34.3282811Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:09:35.8321305Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g/snapshots/2021-11-19-15-47-39-bcc03\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-19T15:46:36.9976152Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-19T15:47:38.9223058Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2/snapshots/2021-11-22-16-13-37-7052c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:37.2232093Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:37.2232093Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-2\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountType\":{\"type\":\"string\",\"defaultValue\":\"Standard_LRS\",\"allowedValues\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_ZRS\",\"Premium_LRS\"],\"metadata\":{\"description\":\"Storage - Account type\"}},\"location\":{\"type\":\"string\",\"defaultValue\":\"westus\",\"metadata\":{\"description\":\"Location - for all resources.\"}}},\"variables\":{\"storageAccountName\":\"deploymentscopetest\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"apiVersion\":\"2019-06-01\",\"name\":\"[variables('storageAccountName')]\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"[parameters('storageAccountType')]\"},\"kind\":\"StorageV2\",\"properties\":{}}],\"outputs\":{\"storageAccountName\":{\"type\":\"string\",\"value\":\"[variables('storageAccountName')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2bhE1HmzQCmuQWlt%2bTe%2b%2bzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2b1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2fzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2b60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2fGKXPzsiTN49yzlt6Rbrc%2f\"}" - headers: - cache-control: - - no-cache - content-length: - - '234657' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Jan 2022 21:19:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:05.409199Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:05.784269Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000003"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1658' + Content-Type: + - application/json + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000003\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:33.5049298Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:33.5049298Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/396cf045-da2a-4275-9a21-5ef1e2dd4b66?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1243' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/396cf045-da2a-4275-9a21-5ef1e2dd4b66?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/396cf045-da2a-4275-9a21-5ef1e2dd4b66\",\r\n + \ \"name\": \"396cf045-da2a-4275-9a21-5ef1e2dd4b66\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-36-63d91\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"duration\": \"PT9.1860138S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:33.5049298Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:33.5049298Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2098' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-36-63d91\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"duration\": \"PT9.1860138S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:33.5049298Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:33.5049298Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2098' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:18:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:19:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n + \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:19:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n + \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:19:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n + \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:20:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n + \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:20:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n + \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:21:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2022-04-25T19:02:06.5440853Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"type":"Microsoft.Network/publicIPAddresses","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkInterfaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"type":"Microsoft.Compute/disks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Compute/disks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.PowerPlatform/accounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.OperationalInsights/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"type":"Microsoft.OperationsManagement/solutions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2022-11-08T19:10:36.8883217Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.KeyVault/vaults","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.ContainerInstance/containerGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/dnszones","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:23:44.9589885Z","changedTime":"2022-11-14T23:03:01.9713904Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:28:25.4284299Z","changedTime":"2022-11-14T23:03:02.0267239Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"type":"Microsoft.Network/publicIPAddresses","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"type":"Microsoft.Network/networkInterfaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"type":"Microsoft.Network/publicIPAddresses","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"type":"Microsoft.Network/networkInterfaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3","name":"simpleblogstorage3","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-07T23:01:38.0105357Z","changedTime":"2022-11-07T23:11:58.1206582Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"type":"Microsoft.Insights/components","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"type":"Microsoft.Web/sites","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"type":"microsoft.alertsmanagement/smartDetectorAlertRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"type":"microsoft.cdn/profiles","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"type":"microsoft.cdn/profiles/endpoints","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","location":"westus2","createdTime":"2022-11-18T18:18:05.3854122Z","changedTime":"2022-11-18T18:18:05.5859263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:18:05.409199Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:18:05.409199Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","location":"westus2","createdTime":"2022-11-18T18:18:05.7553529Z","changedTime":"2022-11-18T18:18:05.9632277Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:18:05.784269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:18:05.784269Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '72270' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:21:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:21:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:21:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:22:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:22:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:22:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:22:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000002"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '738' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000002\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:22:42.4448364Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:22:42.4448364Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/89d2646d-f0b2-4cc4-b6ab-c069b8c88207?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1182' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:22:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/89d2646d-f0b2-4cc4-b6ab-c069b8c88207?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/89d2646d-f0b2-4cc4-b6ab-c069b8c88207\",\r\n + \ \"name\": \"89d2646d-f0b2-4cc4-b6ab-c069b8c88207\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-22-45-b39e4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT7.9763438S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:22:42.4448364Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:22:42.4448364Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-22-45-b39e4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT7.9763438S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:22:42.4448364Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:22:42.4448364Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:23:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resource-groups + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000003"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '738' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resource-groups + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000003\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:23:13.1306333Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:23:13.1306333Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/abfb2205-84e2-40ee-972e-624c8f070a33?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1182' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resource-groups + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/abfb2205-84e2-40ee-972e-624c8f070a33?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/abfb2205-84e2-40ee-972e-624c8f070a33\",\r\n + \ \"name\": \"abfb2205-84e2-40ee-972e-624c8f070a33\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resource-groups + --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-23-16-eb59a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT9.1630775S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:23:13.1306333Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:23:13.1306333Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-23-16-eb59a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT9.1630775S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:23:13.1306333Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:23:13.1306333Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:23:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n + \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n + \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:24:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n + \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:24:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n + \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:25:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n + \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:25:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:25:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '35887' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:25:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:26:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVKTkVRT1BNVlVLWkZQU0NDMlpDU3xGODU2MEYxQzY3NkREM0JBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVKTkVRT1BNVlVLWkZQU0NDMlpDU3xGODU2MEYxQzY3NkREM0JBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:26:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - --location --name + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:26:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:26:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", "name": "[parameters(''tsname'')]", "location": + "[resourceGroup().location]"}, {"type": "Microsoft.Resources/deployments", "apiVersion": + "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000002"}, + "tsname": {"value": "cli-test-template-spec000005"}}, "actionOnUnmanage": {"resources": + "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1722' + Content-Type: + - application/json + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000002\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000005\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:24.1254456Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:26:24.1254456Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1323' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:26:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n + \ \"name\": \"0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:26:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n + \ \"name\": \"0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-26-26-5ee14\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"duration\": \"PT34.1429412S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:24.1254456Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:26:24.1254456Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2078' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '20276' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:32.9178957Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2022-11-18T18:26:32.9178957Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000005\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '630' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-26-26-5ee14\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n + \ \"duration\": \"PT34.1429412S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:24.1254456Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:26:24.1254456Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2078' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:27:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:27:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:28:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:28:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:29:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:29:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:30:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n + \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:30:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:30:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 18:30:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 3afe3b6f-6565-4506-b216-4eac0c96219e status: code: 200 message: OK @@ -2569,42 +4412,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub list + - group list Connection: - keep-alive User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-28-16-32-13-851e0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-25-40-dac1c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub/snapshots/2022-01-31-20-31-45-1b6a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-01-31-20-31-45-1b6a8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"next"},"bar":{"value":"one"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:31:44.8448442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca/snapshots/2022-01-31-20-47-02-aa353","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb/snapshots/2022-01-31-20-47-09-1fc68","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd/snapshots/2022-01-31-20-49-55-f898a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7/snapshots/2022-01-31-20-50-04-c02d1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr/snapshots/2022-01-31-20-50-11-cf3cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm/snapshots/2022-01-31-20-50-11-b3e71","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' - for more details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template parameters ''foo, bar'' in the - parameters file are not valid; they are not present in the original template - and can therefore not be provided at deployment time. The only supported parameters - for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42/snapshots/2022-01-31-21-09-44-2850a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp/snapshots/2022-01-31-21-09-44-8c7f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn/snapshots/2022-01-31-21-09-51-7f2c6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n/snapshots/2022-01-31-21-09-52-1e397","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' - for more details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template parameters ''foo, bar'' in the - parameters file are not valid; they are not present in the original template - and can therefore not be provided at deployment time. The only supported parameters - for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp/snapshots/2022-01-31-21-15-47-c195b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v/snapshots/2022-01-31-21-15-47-372f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn/snapshots/2022-01-31-21-15-52-4485d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj/snapshots/2022-01-31-21-15-57-551cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty/snapshots/2022-01-31-21-16-00-8a2b9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l/snapshots/2022-01-31-21-19-31-cc84c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:31.6976428Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '137836' + - '35923' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:42 GMT + - Fri, 18 Nov 2022 18:30:43 GMT expires: - '-1' pragma: @@ -2615,8 +4443,90 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 52447020-4384-4238-8b88-d325960d5b4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:30:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 18 Nov 2022 18:31:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml index 3d5a9ac03f8..fa36aa7cc4a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml @@ -11,12 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -30,19 +30,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:37:49 GMT + - Fri, 18 Nov 2022 19:16:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 956A4FB1A5884DB5A541806162D4DD35 Ref B: BL2AA2030110009 Ref C: 2022-09-16T20:37:49Z' status: code: 404 message: Not Found @@ -54,7 +52,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "delete", "resourceGroups": "detach"}}}' + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -65,55 +64,55 @@ interactions: Connection: - keep-alive Content-Length: - - '678' + - '725' Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:37:51.0030162Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:37:51.0030162Z\"\r\n + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7998ca64-14b0-4299-a33f-974e218f6f5c?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57c824ed-c905-4caf-afdb-15a05af5fab1?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1061' + - '1150' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:37:50 GMT + - Fri, 18 Nov 2022 19:16:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 6B4314FDBD224CC18177A223DABC13B6 Ref B: BL2AA2030110009 Ref C: 2022-09-16T20:37:50Z' + - '1198' status: code: 201 message: Created @@ -129,37 +128,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7998ca64-14b0-4299-a33f-974e218f6f5c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57c824ed-c905-4caf-afdb-15a05af5fab1?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7998ca64-14b0-4299-a33f-974e218f6f5c\",\r\n - \ \"name\": \"7998ca64-14b0-4299-a33f-974e218f6f5c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57c824ed-c905-4caf-afdb-15a05af5fab1\",\r\n + \ \"name\": \"57c824ed-c905-4caf-afdb-15a05af5fab1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:38:07 GMT + - Fri, 18 Nov 2022 19:16:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 325755C3F58C44E7B22FFEEE9314C5D3 Ref B: BL2AA2030110009 Ref C: 2022-09-16T20:38:08Z' status: code: 200 message: OK @@ -175,52 +176,55 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-09-16-20-37-51-d7479\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-09-16-20-37-51-d7479\",\r\n - \ \"duration\": \"PT5.9827819S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:37:51.0030162Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:37:51.0030162Z\"\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-19-16-02-8828c\",\r\n + \ \"duration\": \"PT6.2966548S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1758' + - '1590' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:38:07 GMT + - Fri, 18 Nov 2022 19:16:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 808414AC494A409184CC5DD8E958036F Ref B: BL2AA2030110009 Ref C: 2022-09-16T20:38:08Z' status: code: 200 message: OK @@ -232,7 +236,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack group export template + - stack group export Connection: - keep-alive Content-Length: @@ -240,10 +244,10 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -265,21 +269,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:38:09 GMT + - Fri, 18 Nov 2022 19:16:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: B67688EC662044C68C9D7DC81FC1F612 Ref B: BL2AA2030105003 Ref C: 2022-09-16T20:38:09Z' status: code: 200 message: OK @@ -291,7 +297,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack group export template + - stack group export Connection: - keep-alive Content-Length: @@ -299,10 +305,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -324,21 +330,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:38:09 GMT + - Fri, 18 Nov 2022 19:16:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-msedge-ref: - - 'Ref A: 369C9E793491451B82F33CB587C01998 Ref B: BL2AA2030109033 Ref C: 2022-09-16T20:38:09Z' + - '1199' status: code: 200 message: OK @@ -356,50 +364,53 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-09-16-20-37-51-d7479\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-09-16-20-37-51-d7479\",\r\n - \ \"duration\": \"PT5.9827819S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:37:51.0030162Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:37:51.0030162Z\"\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-19-16-02-8828c\",\r\n + \ \"duration\": \"PT6.2966548S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1758' + - '1590' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:38:11 GMT + - Fri, 18 Nov 2022 19:16:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3F960E4DFA4541E893F3ED66EC55006D Ref B: BL2AA2030108027 Ref C: 2022-09-16T20:38:10Z' status: code: 200 message: OK @@ -417,50 +428,53 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-09-16-20-37-51-d7479\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-09-16-20-37-51-d7479\",\r\n - \ \"duration\": \"PT5.9827819S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:37:51.0030162Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:37:51.0030162Z\"\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-19-16-02-8828c\",\r\n + \ \"duration\": \"PT6.2966548S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1758' + - '1590' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:38:11 GMT + - Fri, 18 Nov 2022 19:16:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1E8DE26E7BA0469493DFEBA1D092C4B9 Ref B: BL2AA2030109035 Ref C: 2022-09-16T20:38:11Z' status: code: 200 message: OK @@ -480,10 +494,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -493,21 +507,19 @@ interactions: content-length: - '0' date: - - Fri, 16 Sep 2022 20:38:11 GMT + - Fri, 18 Nov 2022 19:16:25 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-msedge-ref: - - 'Ref A: 361A85019F884376A2474C5EE82F9F2A Ref B: BL2AA2030109035 Ref C: 2022-09-16T20:38:11Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml index 588ce8db25e..c6b3d1fc523 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml @@ -11,12 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -29,21 +29,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:13 GMT + - Fri, 18 Nov 2022 18:35: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 5DCB7C091C75485DB9E3835760F95AE4 Ref B: BL2AA2030110049 Ref C: 2022-09-16T20:15:14Z' status: code: 404 message: Not Found @@ -55,7 +51,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -66,57 +63,56 @@ interactions: Connection: - keep-alive Content-Length: - - '775' + - '822' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-09-16T20:15:14.6508606Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:15:14.6508606Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T18:35:50.9542982Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ee2efcbf-a6d4-4562-8065-daeb85934ee9?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e9ec723-fd65-432e-bbc8-bdba250c453c?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1112' + - '1201' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:14 GMT + - Fri, 18 Nov 2022 18:35:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: 1F9ED489735F45A59BBCDEF9763C6A48 Ref B: BL2AA2030110049 Ref C: 2022-09-16T20:15:14Z' + - '1199' status: code: 201 message: Created @@ -132,37 +128,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ee2efcbf-a6d4-4562-8065-daeb85934ee9?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e9ec723-fd65-432e-bbc8-bdba250c453c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ee2efcbf-a6d4-4562-8065-daeb85934ee9\",\r\n - \ \"name\": \"ee2efcbf-a6d4-4562-8065-daeb85934ee9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e9ec723-fd65-432e-bbc8-bdba250c453c\",\r\n + \ \"name\": \"7e9ec723-fd65-432e-bbc8-bdba250c453c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:32 GMT + - Fri, 18 Nov 2022 18:36:11 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 345129E450F748EAB8D41211BD97F67B Ref B: BL2AA2030110049 Ref C: 2022-09-16T20:15:32Z' status: code: 200 message: OK @@ -178,54 +176,57 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-09-16-20-15-15-1ddd4\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-09-16-20-15-15-1ddd4\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-35-54-018ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.1840153S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:15:14.6508606Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:15:14.6508606Z\"\r\n + \ \"duration\": \"PT8.9005308S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:35:50.9542982Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1710' + - '1593' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:32 GMT + - Fri, 18 Nov 2022 18:36:12 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9CD08C03C7C44A3A9877F46B6538F87D Ref B: BL2AA2030110049 Ref C: 2022-09-16T20:15:32Z' status: code: 200 message: OK @@ -237,7 +238,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub export template + - stack sub export Connection: - keep-alive Content-Length: @@ -245,10 +246,10 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -270,21 +271,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:33 GMT + - Fri, 18 Nov 2022 18:36:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 5CF2255B95644EE5A326B037B39757E1 Ref B: BL2AA2030110035 Ref C: 2022-09-16T20:15:33Z' status: code: 200 message: OK @@ -296,7 +299,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub export template + - stack sub export Connection: - keep-alive Content-Length: @@ -304,10 +307,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -329,21 +332,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:34 GMT + - Fri, 18 Nov 2022 18:36:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: BAC2FB42D64B4CCF854D8F2C87C80157 Ref B: BL2AA2030105037 Ref C: 2022-09-16T20:15:34Z' status: code: 200 message: OK @@ -361,52 +366,55 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-09-16-20-15-15-1ddd4\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-09-16-20-15-15-1ddd4\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-35-54-018ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.1840153S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:15:14.6508606Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:15:14.6508606Z\"\r\n + \ \"duration\": \"PT8.9005308S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:35:50.9542982Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1710' + - '1593' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:35 GMT + - Fri, 18 Nov 2022 18:36:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CD50006490B341D0A5734C4CA20844D2 Ref B: BL2AA2030108009 Ref C: 2022-09-16T20:15:35Z' status: code: 200 message: OK @@ -424,52 +432,55 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-09-16-20-15-15-1ddd4\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-09-16-20-15-15-1ddd4\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-35-54-018ac\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.1840153S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-09-16T20:15:14.6508606Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-09-16T20:15:14.6508606Z\"\r\n + \ \"duration\": \"PT8.9005308S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:35:50.9542982Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1710' + - '1593' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Sep 2022 20:15:35 GMT + - Fri, 18 Nov 2022 18:36:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1D6C184A089341B4875C143DCD88EFAE Ref B: BL2AA2030110005 Ref C: 2022-09-16T20:15:35Z' status: code: 200 message: OK @@ -489,10 +500,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -502,21 +513,19 @@ interactions: content-length: - '0' date: - - Fri, 16 Sep 2022 20:15:35 GMT + - Fri, 18 Nov 2022 18:36:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' - x-msedge-ref: - - 'Ref A: 55C57E7200DC4A56B13FDAC5479400CE Ref B: BL2AA2030110005 Ref C: 2022-09-16T20:15:35Z' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index ff9c30b5da6..a1ebc2dc76c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:09 GMT + - Fri, 18 Nov 2022 18:55:37 GMT expires: - '-1' pragma: @@ -50,8 +51,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -62,49 +64,43 @@ interactions: Connection: - keep-alive Content-Length: - - '642' + - '725' Content-Type: - application/json ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3762a0d-e49d-4f23-89fc-e0f724e5fdf8?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/953d6f6d-129b-495d-a9a5-3595d8407ed0?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1731' + - '1150' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:09 GMT + - Fri, 18 Nov 2022 18:55:37 GMT expires: - '-1' pragma: @@ -116,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -132,15 +128,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3762a0d-e49d-4f23-89fc-e0f724e5fdf8?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/953d6f6d-129b-495d-a9a5-3595d8407ed0?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3762a0d-e49d-4f23-89fc-e0f724e5fdf8\",\r\n - \ \"name\": \"b3762a0d-e49d-4f23-89fc-e0f724e5fdf8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/953d6f6d-129b-495d-a9a5-3595d8407ed0\",\r\n + \ \"name\": \"953d6f6d-129b-495d-a9a5-3595d8407ed0\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:26 GMT + - Fri, 18 Nov 2022 18:55:55 GMT expires: - '-1' pragma: @@ -179,44 +176,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-09-85bcf\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-31-21-18-09-85bcf\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-11-18-18-55-38-48666\",\r\n + \ \"duration\": \"PT4.7148647S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2216' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:26 GMT + - Fri, 18 Nov 2022 18:55:56 GMT expires: - '-1' pragma: @@ -248,48 +242,42 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-09-85bcf\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-31-21-18-09-85bcf\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": - \"xyz\"\r\n }\r\n },\r\n \"template\": {\r\n \"$schema\": - \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"foo\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n },\r\n \"bar\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": - \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n - \ \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-11-18-18-55-38-48666\",\r\n + \ \"duration\": \"PT4.7148647S\",\r\n \"denySettings\": {\r\n + \ \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n + \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2485' + - '1811' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:27 GMT + - Fri, 18 Nov 2022 18:55:56 GMT expires: - '-1' pragma: @@ -321,42 +309,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-09-85bcf\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-01-31-21-18-09-85bcf\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:09.4949629Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-11-18-18-55-38-48666\",\r\n + \ \"duration\": \"PT4.7148647S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:09.4949629Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2216' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:28 GMT + - Fri, 18 Nov 2022 18:55:58 GMT expires: - '-1' pragma: @@ -390,9 +375,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -402,7 +388,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:18:28 GMT + - Fri, 18 Nov 2022 18:55:58 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index d67728515ef..16eaab6dcd2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-list-deployment-stack-subscription000001'' @@ -28,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:50 GMT + - Fri, 18 Nov 2022 17:42:54 GMT expires: - '-1' pragma: @@ -49,8 +50,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -61,50 +63,44 @@ interactions: Connection: - keep-alive Content-Length: - - '739' + - '822' Content-Type: - application/json ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:51.2245549Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.2245549Z\"\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T17:42:54.9836572Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:42:54.9836572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/150a76e0-8785-4c34-9dcd-bcf62c6a77ba?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/99e45085-dd25-431d-9c03-e4eb73f64b15?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1784' + - '1203' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:51 GMT + - Fri, 18 Nov 2022 17:42:57 GMT expires: - '-1' pragma: @@ -116,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -132,15 +128,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/150a76e0-8785-4c34-9dcd-bcf62c6a77ba?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/99e45085-dd25-431d-9c03-e4eb73f64b15?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/150a76e0-8785-4c34-9dcd-bcf62c6a77ba\",\r\n - \ \"name\": \"150a76e0-8785-4c34-9dcd-bcf62c6a77ba\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/99e45085-dd25-431d-9c03-e4eb73f64b15\",\r\n + \ \"name\": \"99e45085-dd25-431d-9c03-e4eb73f64b15\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:08 GMT + - Fri, 18 Nov 2022 17:43:15 GMT expires: - '-1' pragma: @@ -179,46 +176,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-51-32277\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-18-51-32277\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-11-18-17-42-58-e1c21\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:51.2245549Z\",\r\n + \ \"duration\": \"PT9.1891742S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:42:54.9836572Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.2245549Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:42:54.9836572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2171' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:08 GMT + - Fri, 18 Nov 2022 17:43:15 GMT expires: - '-1' pragma: @@ -248,425 +242,399 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"shared - sql and web","templateLink":{"uri":"C:\\Users\\harshpatel\\Misc\\TemplateFiles\\empty.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4'' - for more details.","details":[{"code":"InvalidContentLink","message":"The - provided content link ''Azure.Deployments.Core.Entities.DeploymentTemplateContentLink'' - is invalid or not supported. Content link must be an absolute URI not referencing - local host or UNC path.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:06:54.3715401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:25:54.1835862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services","type":"Microsoft.Resources/deploymentStacks","name":"hp-shared-services"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412/snapshots/2021-08-05-21-43-40-ab2eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734/snapshots/2021-08-05-20-47-45-561b8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + string: '{"value":[{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-23T19:15:01.5981235Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-24T16:40:51.8924628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/TemplateSpecStack","type":"Microsoft.Resources/deploymentStacks","name":"TemplateSpecStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest2_tf-2021-09-13-21-44-13-097eb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidResourceGroupLocation","message":"Invalid + resource group location ''eastus''. The Resource group already exists in location + ''westus2''."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:44:13.4958458Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:44:13.4958458Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest2_tf"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_2-2021-09-15-15-29-15-9f56b","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:31:59.0977693Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:29:15.4823796Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_3-2021-09-15-15-30-22-9519a","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:30:22.1215654Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:30:22.1215654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_3"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_4-2021-09-15-15-32-06-8b48e","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:32:06.1775591Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:32:06.1775591Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_4"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mySubStack-2022-06-20-18-51-46-7a6f1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.0741566S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-02-01T21:35:50.3861621Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-20T18:51:45.8755542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStack","type":"Microsoft.Resources/deploymentStacks","name":"mySubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.001939S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone/snapshots/2022-04-05-17-29-24-64a9d'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''236c6ae3-acd8-43c3-b27b-9dcf44e35d59''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-05T16:27:38.5417212Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-05T17:29:23.9447321Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone","type":"Microsoft.Resources/deploymentStacks","name":"hpone"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9251897S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22/snapshots/2022-05-26-20-18-12-269e3'' + for more details. Correlation id: ''845b9eba-1687-4504-916e-8d69d56d2847''","details":[{"code":"InvalidRequestContent","message":"The + request content was invalid and could not be deserialized: ''Required property + ''contentVersion'' not found in JSON. Path ''properties.template'', line 6, + position 5.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-18T20:23:06.5444995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T20:18:11.4113067Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22","type":"Microsoft.Resources/deploymentStacks","name":"hp22"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detach-test-2022-06-15-17-25-59-01c8c","duration":"PT34.0312008S","outputs":{"storageAccountAName":{"type":"String","value":"deploymentscopetesta"},"storageAccountBName":{"type":"String","value":"deploymentscopetestb"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:53:43.8289431Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T17:25:59.1555357Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detach-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detach-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detatch-test-2022-06-14-21-57-39-972ba","duration":"PT10.1409527S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test/snapshots/2022-06-14-21-57-39-972ba'' + for more details. Correlation id: ''723328db-c1c9-4b5d-9fa9-9429eb056224''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-b'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-a'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:57:38.2436258Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T21:57:38.2436258Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detatch-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-example-storageaccount-2022-06-14-22-13-56-d5b2f","duration":"PT12.7634725S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount/snapshots/2022-06-14-22-13-56-d5b2f'' + for more details. Correlation id: ''bbdbbf47-5555-4a8e-901c-4a6d53b094aa''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T22:13:54.9096146Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T22:13:54.9096146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount","type":"Microsoft.Resources/deploymentStacks","name":"dante-example-storageaccount"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9740014S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg/snapshots/2022-06-15-16-47-09-62c43'' + for more details. Correlation id: ''f812d4e9-8926-4957-a4ae-1c18895674b3''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''angperezAKS'' at line + ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:47:07.7566368Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:47:07.7566368Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg","type":"Microsoft.Resources/deploymentStacks","name":"angperezStackRg"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.2094989S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack/snapshots/2022-06-15-16-51-12-544d9'' + for more details. Correlation id: ''2c1f0a54-6867-4206-9aea-ded21cee84e1''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''angperezAKS'' at line + ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:49:53.9387362Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:51:12.1631587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack","type":"Microsoft.Resources/deploymentStacks","name":"angperezStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.3648936S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13/snapshots/2022-06-17-18-53-18-03d4c'' + for more details. Correlation id: ''b864b76e-1dd6-41d5-a0b6-f08ab4aa49e3''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''sqlServerName'' at line + ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-17T18:53:16.7933655Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-17T18:53:16.7933655Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13","type":"Microsoft.Resources/deploymentStacks","name":"teststack13"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy-2022-06-23-17-09-19-b7d99","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.1677588S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy/snapshots/2022-06-23-17-09-19-b7d99'' + for more details. Correlation id: ''a0f6b921-5643-42c2-84b8-7091762fc357''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:09:17.4941031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:09:17.4941031Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy","type":"Microsoft.Resources/deploymentStacks","name":"dummy"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteTestStack-2022-09-07-17-32-25-5a92d","duration":"PT9.0890768S","parameters":{"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"keyVaultName":{"value":"danted-stackstest1523"},"secretValue":{"value":"HelloToTheWorld"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack/snapshots/2022-09-07-17-32-25-5a92d'' + for more details. Correlation id: ''3334e5a3-5ab1-4a77-9ab0-3d02b5c5f8da''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''Microsoft.KeyVault/vaults/danted-stackstest1523'' + is not defined in the template. Please see https://aka.ms/arm-template for + usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:34:18.5382285Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T17:32:24.3045971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteTestStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStorageStack-2022-09-07-18-33-27-a89a9","duration":"PT43.548586S","outputs":{},"parameters":{"namePrefix":{"value":"danted1234"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-07T18:05:16.4036646Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T18:33:25.9618998Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStorageStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStorageStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/9_19_test1-2022-09-26-16-20-50-2da1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.5093326S","parameters":{"name":{"value":"resource2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:47.4745761Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:47.4745761Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/deployments/subStack-2022-11-04-01-38-25-933c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","duration":"PT10.0476458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T01:38:22.5331641Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T01:38:22.5331641Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack","type":"Microsoft.Resources/deploymentStacks","name":"subStack"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/gptestBugBash-2021-08-10-23-14-45-07694","parameters":{"rgname":{"value":"pstestBugBashRG"},"principalId":{"value":"3602fbdc-4558-4a64-966c-2629723a3189"},"rgLocation":{"value":"eastus2euap"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Authorization/locks/DontDelete"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Authorization/roleAssignments/44d2e010-b263-5c5f-98a9-4a7ee7eeca84"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Network/publicIPAddresses/pip"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-10T23:14:45.516492Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-10T23:14:45.516492Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptestBugBash","type":"Microsoft.Resources/deploymentStacks","name":"gptestBugBash"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testpollingstack-2021-08-11-19-12-44-422e5","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-11T19:12:44.3040355Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-11T19:12:44.3040355Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testpollingstack","type":"Microsoft.Resources/deploymentStacks","name":"testpollingstack"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidDeployment","message":"The + ''location'' property is not allowed for ''testdeploymentscope-2021-08-12-22-35-46-919e5'' + at resource group scope. Please see https://aka.ms/deploy-to-subscription + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-12T22:08:09.396501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-12T22:35:45.8498994Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testdeploymentscope","type":"Microsoft.Resources/deploymentStacks","name":"testdeploymentscope"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/gptestBugBash2-2021-09-08-19-29-49-1c296","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-16T21:24:23.2631976Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T19:29:49.4722587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptestBugBash2","type":"Microsoft.Resources/deploymentStacks","name":"gptestBugBash2"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_canary-2021-10-27-15-31-52-867d5","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-27T15:31:52.2677322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-27T15:31:52.2677322Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_canary","type":"Microsoft.Resources/deploymentStacks","name":"hp2_bb_canary"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660/snapshots/2021-08-05-21-33-21-2a758","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). - Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36/snapshots/2021-08-05-21-35-58-a85a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841/snapshots/2021-08-05-21-38-53-9edd2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377/snapshots/2021-08-05-21-41-06-1ae62","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611/snapshots/2021-08-05-21-44-02-3e9d9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258/snapshots/2021-08-05-21-45-03-07494","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', - request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097/snapshots/2021-08-06-18-38-35-2fd49","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033/snapshots/2021-08-06-18-39-11-eb9eb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009/snapshots/2021-08-06-20-43-40-a4717","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","metadata":{"description":"description"}},"bar":{"type":"string","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''foo'' at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', - request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''hostingPlanName'' at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''hostingPlanName'' at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The value for the template parameter ''hostingPlanName'' at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238/snapshots/2021-08-10-19-14-19-0659c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739/snapshots/2021-08-10-19-19-01-98f19","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661/snapshots/2021-08-10-19-25-48-d772b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648/snapshots/2021-08-10-19-28-58-af5a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195/snapshots/2021-08-10-19-29-57-498d2","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149/snapshots/2021-08-10-19-31-00-51299","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103/snapshots/2021-08-10-19-32-09-4271b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951/snapshots/2021-08-10-19-33-14-25dc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838/snapshots/2021-08-10-19-34-01-07952","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331/snapshots/2021-08-10-19-35-15-c67dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896/snapshots/2021-08-10-19-36-34-83a7e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646/snapshots/2021-08-10-19-38-22-ea27a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676/snapshots/2021-08-10-19-39-56-a8ed7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506/snapshots/2021-08-10-21-28-43-37651","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309/snapshots/2021-08-11-16-34-39-0073d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756/snapshots/2021-08-12-21-07-49-45875","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805/snapshots/2021-08-12-21-08-51-ba718","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"updateBehavior":"detachResources","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', - request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"template":{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"hostingPlanName":{"type":"string"},"siteLocation":{"type":"string"},"sku":{"type":"string","allowedValues":["Free","Shared","Basic","Standard"],"defaultValue":"Free"},"workerSize":{"type":"int","allowedValues":[0,1,2],"defaultValue":0}},"resources":[{"apiVersion":"2014-04-01","name":"[parameters(''hostingPlanName'')]","type":"Microsoft.Web/serverfarms","location":"[parameters(''siteLocation'')]","properties":{"name":"[parameters(''hostingPlanName'')]","sku":"[parameters(''sku'')]","workerSize":"[parameters(''workerSize'')]","numberOfWorkers":1}}]},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198/snapshots/2021-08-12-21-49-26-7c74c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5/snapshots/2021-09-09-14-21-54-9698d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6/snapshots/2021-09-09-15-15-24-11168","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8/snapshots/2021-09-09-16-19-04-df10a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts/snapshots/2021-11-08-15-41-12-4ec86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9/snapshots/2021-09-10-17-58-29-cb546","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12/snapshots/2021-09-11-00-44-31-f5c52","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13/snapshots/2021-09-11-00-47-06-13bdb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu/snapshots/2021-09-11-00-51-34-ecdfb","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"storageAccountName":{"type":"string","defaultValue":"armbuilddemo18122"},"nestedDeploymentRG":{"type":"string","defaultValue":"ps_test_subscription_deployment"},"policyLocation":{"type":"string","defaultValue":"northeurope"}},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"policy2","apiVersion":"2016-12-01","properties":{"policyType":"Custom","parameters":{},"policyRule":{"if":{"field":"location","equals":"[parameters(''policyLocation'')]"},"then":{"effect":"deny"}}}},{"type":"Microsoft.Authorization/policyAssignments","name":"location-lock","apiVersion":"2016-12-01","dependsOn":["policy2"],"properties":{"scope":"[subscription().id]","policyDefinitionId":"[resourceId(''Microsoft.Authorization/policyDefinitions'', - ''policy2'')]"}},{"type":"Microsoft.Resources/resourceGroups","name":"[parameters(''nestedDeploymentRG'')]","location":"West - US","apiVersion":"2019-05-01","properties":{}},{"type":"Microsoft.Resources/deployments","name":"rg-nested","apiVersion":"2017-05-10","resourceGroup":"[parameters(''nestedDeploymentRG'')]","dependsOn":["[parameters(''nestedDeploymentRG'')]"],"properties":{"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters(''storageAccountName'')]","apiVersion":"2015-06-15","location":"East - US","properties":{"accountType":"Standard_LRS"}}]},"mode":"Incremental"}}]},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf/snapshots/2021-09-13-21-54-02-90a56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf/snapshots/2021-09-13-21-55-30-a210c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf/snapshots/2021-09-13-21-56-20-83ef0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu/snapshots/2021-09-13-22-03-08-472ec","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu/snapshots/2021-09-13-22-08-21-43ac7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf/snapshots/2021-09-13-22-09-27-9ecc9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu/snapshots/2021-09-13-22-10-35-c838d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts/snapshots/2021-09-14-16-08-34-33a22","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf/snapshots/2021-09-14-16-09-42-aa585","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu/snapshots/2021-09-14-16-11-04-efdc8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription - for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"updateBehavior":"detachResources","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[{"type":"Microsoft.Resources/deploymentStacks","apiVersion":"2021-05-01-preview","location":"West - US 2","properties":{"updateBehavior":"Detach","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"}},"name":"hp_bb","comments":"tests","metadata":{"comments":"tests2"}}],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap/snapshots/2021-09-15-17-56-23-97152","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1/snapshots/2021-09-15-23-48-00-f5e95","updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}},"managedResources":[],"provisioningState":"succeededWithFailures","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Compute/virtualMachines/simple-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkInterfaces/myVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkSecurityGroups/default-NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/publicIPAddresses/myPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Storage/storageAccounts/storageforfilizsvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-template-created/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"deletedResources":[],"failedResources":[{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Compute/virtualMachines/simple-vm"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkInterfaces/myVMNic"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkSecurityGroups/default-NSG"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/publicIPAddresses/myPublicIP"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Storage/storageAccounts/storageforfilizsvm"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-template-created/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown - error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"[parameters(''rgName'')]","type":"Microsoft.Resources/resourceGroups","apiVersion":"2018-05-01","location":"[parameters(''rgLocation'')]","properties":{}},{"name":"nestedDeployment","type":"Microsoft.Resources/deployments","resourceGroup":"[parameters(''rgName'')]","apiVersion":"2020-06-01","dependsOn":["[parameters(''rgName'')]"],"properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinnewrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentTwo","type":"Microsoft.Resources/deployments","resourceGroup":"filiz-test","apiVersion":"2020-06-01","properties":{"mode":"Incremental","template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"name":"teststorageinexistingrg","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"westus2","properties":{"accessTier":"hot","minimumTlsVersion":"TLS1_0","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}]}}},{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', - ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', - ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', - ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations @@ -674,39 +642,26 @@ interactions: resource group ''filiz-test-template-created'' is in deprovisioning state and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot - perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"updateBehavior":"purgeResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"rgName":{"type":"string","defaultValue":"filiz-test-template-created"},"rgLocation":{"type":"string","defaultValue":"westus2"}},"variables":{},"resources":[{"name":"nestedDeploymentThree","type":"Microsoft.Resources/deployments","subscriptionId":"28cbf98f-381d-4425-9ac4-cf342dab9753","resourceGroup":"filiz-test-in-Sub5","apiVersion":"2020-06-01","properties":{"mode":"Incremental","expressionEvaluationOptions":{"scope":"inner"},"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2021-04-01","name":"storageforfilizsvm","location":"westus2","sku":{"name":"Standard_LRS"},"kind":"Storage"},{"type":"Microsoft.Network/publicIPAddresses","apiVersion":"2021-02-01","name":"myPublicIP","location":"westus2","sku":{"name":"Basic"},"properties":{"publicIPAllocationMethod":"Dynamic","dnsSettings":{"domainNameLabel":"[toLower(format(''{0}-{1}'', - ''filizstestvm'', uniqueString(resourceGroup().id, ''filizstestvm'')))]"}}},{"type":"Microsoft.Network/networkSecurityGroups","apiVersion":"2021-02-01","name":"default-NSG","location":"westus2","properties":{"securityRules":[{"name":"default-allow-3389","properties":{"priority":1000,"access":"Allow","direction":"Inbound","destinationPortRange":"3389","protocol":"Tcp","sourcePortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*"}}]}},{"type":"Microsoft.Network/virtualNetworks","apiVersion":"2021-02-01","name":"MyVNET","location":"westus2","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}},{"type":"Microsoft.Network/virtualNetworks/subnets","apiVersion":"2021-02-01","name":"[format(''{0}/{1}'', - ''MyVNET'', ''Subnet'')]","properties":{"addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]"}},"dependsOn":["[resourceId(''Microsoft.Network/networkSecurityGroups'', - ''default-NSG'')]","[resourceId(''Microsoft.Network/virtualNetworks'', ''MyVNET'')]"]},{"type":"Microsoft.Network/networkInterfaces","apiVersion":"2021-02-01","name":"myVMNic","location":"westus2","properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]"},"subnet":{"id":"[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"}}}]},"dependsOn":["[resourceId(''Microsoft.Network/publicIPAddresses'', - ''myPublicIP'')]","[resourceId(''Microsoft.Network/virtualNetworks/subnets'', - ''MyVNET'', ''Subnet'')]"]},{"type":"Microsoft.Compute/virtualMachines","apiVersion":"2021-03-01","name":"simple-vm","location":"westus2","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v3"},"osProfile":{"computerName":"simple-vm","adminUsername":"blueprintadmin","adminPassword":"blueprint123!"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2019-Datacenter","version":"latest"},"osDisk":{"createOption":"FromImage","managedDisk":{"storageAccountType":"StandardSSD_LRS"}},"dataDisks":[{"diskSizeGB":1023,"lun":0,"createOption":"Empty"}]},"networkProfile":{"networkInterfaces":[{"id":"[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]"}]},"diagnosticsProfile":{"bootDiagnostics":{"enabled":true,"storageUri":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', - ''storageforfilizsvm'')).primaryEndpoints.blob]"}}},"dependsOn":["[resourceId(''Microsoft.Network/networkInterfaces'', - ''myVMNic'')]","[resourceId(''Microsoft.Storage/storageAccounts'', ''storageforfilizsvm'')]"]}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6/snapshots/2021-09-16-19-32-29-87c2a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string"},"storageLocation":{"type":"string"}},"variables":{},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7/snapshots/2021-09-16-19-52-18-918e9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"},"mgName":{"type":"string","defaultValue":"[concat(''mg-'', - uniqueString(newGuid()))]"}},"variables":{},"resources":[{"name":"[parameters(''mgName'')]","type":"Microsoft.Management/managementGroups","apiVersion":"2019-11-01","scope":"/","location":"westus2","properties":{}},{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}}],"outputs":{}},"managedResources":[{"lockMode":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"minimumTlsVersion":{"type":"string","defaultValue":"TLS1_0"},"storageLocation":{"type":"string","defaultValue":"westus2"}},"variables":{"mgId":"[concat(''Microsoft.Management/managementGroups/'', - ''AzBlueprint'')]"},"resources":[{"name":"teststorageinnewrg2","type":"Microsoft.Storage/storageAccounts","apiVersion":"2019-06-01","location":"[parameters(''storageLocation'')]","properties":{"accessTier":"hot","minimumTlsVersion":"[parameters(''minimumTlsVersion'')]","supportsHttpsTrafficOnly":"true","allowBlobPublicAccess":"false","allowSharedKeyAccess":"true"},"dependsOn":[],"sku":{"name":"Standard_LRS"},"kind":"StorageV2","tags":{}},{"type":"Microsoft.Resources/deployments","apiVersion":"2021-04-01","name":"nestedDeployment","scope":"[variables(''mgId'')]","location":"eastus","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-08-01/managementGroupDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[{"type":"Microsoft.Authorization/policyDefinitions","name":"LocationRestriction","apiVersion":"2020-09-01","properties":{"policyType":"Custom","mode":"All","parameters":{},"policyRule":{"if":{"not":{"field":"location","in":"westus2"}},"then":{"effect":"deny"}}}}]}}}],"outputs":{}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' - does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds/snapshots/2021-09-17-19-34-45-a483c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn - how deployment scopes work","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu/snapshots/2021-09-17-19-49-17-85f69","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2fhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2fvs0O88nOeeqFORS%2bbTIpTK5Kns32saRMlF%2bqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2fPKZdbKPYdBjsLMPPRZuF6cc%2bW7zsYk9VJU8vQS5N7fztHcdOpu16%2bPah04pvrS5%2fV7WGC78x5pyu%2f0B"}' + does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn + how deployment scopes work","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAEb%2fC1n2tMpVZSZmqYi3gZkiuvmylFJYx6S1LaAY%2f%2ft0%2b55Pck6%2bi1aSkwpoWUhtcNF2frSJI22gfSnF5UDXD6hEOTmQUnVQWwnSweygyyqRWFCuKCuljswkQz27CzIryYBjZSZwe0kXuI6Le30nw7Zl6lywmqZESD2kWDDJMtVZE8kqgYnUU8J%2f2PluiRTChXxBnIL6Rt8EQ8uwLGC4wDABF6SmpHl8kAXlG1aQcjhz5Bz%2bz4fzqtpSsWiN%2fjLuLyIj75%2fTYHo82l67mc2MtJENdYWFbf%2bE5yu4M%2bsfNoJiBXar%2bRSLVROO9%2fgzDz35vY%2bf37OzbGMzbDHYwn2LhXeOU44Cv35bxwukjjw9hcViAou09T06HjfLfBmY3lF8GBM4Woqq9xrc07Trk4bEAea5IDlSJP1Lv70M16F2%2fQU%3d"}' headers: cache-control: - no-cache content-length: - - '245146' + - '185154' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:10 GMT + - Fri, 18 Nov 2022 17:43:20 GMT expires: - '-1' pragma: @@ -718,8 +673,9 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 180da15d-b817-4070-8870-622e776f50d8 - - 777f121b-b9ae-4cc9-bc50-24da2a8d875a + - fbbaa666-9107-4cf5-bd11-e22ecc7cc5c2 + - c7888f6e-2754-488e-8ac8-f186fbe9a120 + - 83d58912-3290-4561-9041-18300f4dc987 status: code: 200 message: OK @@ -727,7 +683,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -735,359 +691,140 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7bboIwAED%2FhSx7q1BAcSZmYYgXBmaI6ObLUkpxHUpLy0Uw%2Fvs0O88nOeeqFORS%2BbTIpTK5Kns32saRMlF%2BqorLiaqeUYGO5EyKaoD6WpABZmdV1onEgvKKskKqCCYZGhlDkOlJBkw9g2A8SoZgbI7xyDIzbOhQ5YI1NCVCqgHFgkmWVYMNkawWmEg1JfzEukclqhDO5SviFDR3%2Bx6Y6poOgTYEGgRckIaS9vlJ5pRvWU6K6dKUK%2Fsf117V9Y4Kr9esdWx5kXa0utRflKXh9NvlUktb2dKx0LHhXvAqtPewObE3W4RgH64WWIRtMDvg72PgyN9D%2FPKZdbKPYdBjsLMPPRZuF6cc%2BW7zsYk9VJU8vQS5N7fztHcdOpu16%2BPah04pvrS5%2FV7WGC78x5pyu%2F0B + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAEb/C1n2tMpVZSZmqYi3gZkiuvmylFJYx6S1LaAY/t0%2B55Pck6%2Bi1aSkwpoWUhtcNF2frSJI22gfSnF5UDXD6hEOTmQUnVQWwnSweygyyqRWFCuKCuljswkQz27CzIryYBjZSZwe0kXuI6Le30nw7Zl6lywmqZESD2kWDDJMtVZE8kqgYnUU8J/2PluiRTChXxBnIL6Rt8EQ8uwLGC4wDABF6SmpHl8kAXlG1aQcjhz5Bz%2Bz4fzqtpSsWiN/jLuLyIj75/TYHo82l67mc2MtJENdYWFbf%2BE5yu4M%2BsfNoJiBXar%2BRSLVROO9/gzDz35vY%2Bf37OzbGMzbDHYwn2LhXeOU44Cv35bxwukjjw9hcViAou09T06HjfLfBmY3lF8GBM4Woqq9xrc07Trk4bEAea5IDlSJP1Lv70M16F2/QU%3D response: body: - string: "{\"value\":[{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu/snapshots/2021-09-17-19-50-04-8428f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D\"},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:50:04.0885604Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:50:04.0885604Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf_pu\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf/snapshots/2021-09-17-19-51-01-adde5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:51:00.3893514Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:51:00.3893514Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tf-pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf/snapshots/2021-09-17-19-53-29-35b3d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:53:28.4521693Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:53:28.4521693Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pf\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu/snapshots/2021-09-17-19-56-23-1b2bc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"john - doe\",\"parametersLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D\"},\"templateLink\":{\"uri\":\"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T19:54:42.7520085Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T19:56:22.212836Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpmatrix_sub_create_tu_pu\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"parameters\":{\"adVnetName\":{\"value\":\"ad-vnet\"},\"adVnetSubscriptionId\":{\"value\":\"ec0f79d3-16f0-4892-8165-f569a92c8273\"},\"dnsServerPrivateIp\":{\"value\":\"10.0.0.4\"},\"adminUsername\":{\"value\":\"bmoore\"},\"adSubnetName\":{\"value\":\"ad-vnet-subnet\"},\"adDomainName\":{\"value\":\"corp.mydomain.com\"},\"adVnetRG\":{\"value\":\"aad-stack\"},\"adminPassword\":{\"reference\":{\"keyVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo\"},\"secretName\":\"adminPass\"}}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"dnsLabelPrefix\":{\"type\":\"string\",\"defaultValue\":\"[concat('rds-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"Unique - public DNS prefix for the deployment. The fqdn will look something like '.westus.cloudapp.azure.com'. - Up to 62 chars, digits or dashes, lowercase, should start with a letter: must - conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result - the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb\"}},\"adDomainName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - name of the AD domain. For example contoso.com\"}},\"adVnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - vnet name of AD domain. For example johnvnet1\"}},\"adVnetRG\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - Resource Group containing the existing Virtual Network resource\"}},\"adVnetSubscriptionId\":{\"type\":\"string\",\"defaultValue\":\"[subscription().subscriptionId]\",\"metadata\":{\"description\":\"The - subscription containing the existing Virtual Network resource\"}},\"adSubnetName\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - subnet name of AD domain\"}},\"dnsServerPrivateIp\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - private IP address of the ad dns server\"}},\"adminUsername\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. - For example johnadmin\"}},\"adminPassword\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The - password for the administrator account of the new VM and the domain\"}},\"imageSKU\":{\"type\":\"string\",\"allowedValues\":[\"2012-R2-Datacenter\",\"2016-Datacenter\",\"2019-Datacenter\",\"2022-datacenter\"],\"metadata\":{\"description\":\"Windows - server SKU\"},\"defaultValue\":\"2019-Datacenter\"},\"numberOfRdshInstances\":{\"type\":\"int\",\"defaultValue\":1,\"metadata\":{\"description\":\"Number - of RemoteDesktopSessionHosts\"}},\"rdshVmSize\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - size of the RDSH VMs\"},\"defaultValue\":\"Standard_D4s_v3\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\",\"metadata\":{\"description\":\"Location - for all resources.\"}},\"_artifactsLocation\":{\"type\":\"string\",\"metadata\":{\"description\":\"The - base URI where artifacts required by this template are located. When the template - is deployed using the accompanying scripts, a private location in the subscription - will be used and this value will be automatically generated.\"},\"defaultValue\":\"[deployment().properties.templateLink.uri]\"},\"_artifactsLocationSasToken\":{\"type\":\"securestring\",\"metadata\":{\"description\":\"The - sasToken required to access _artifactsLocation. When the template is deployed - using the accompanying scripts, a sasToken will be automatically generated.\"},\"defaultValue\":\"\"},\"gatewayIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('gwd-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name - for the gateway, must be globally unique.\"}},\"connBrokerIpDNS\":{\"type\":\"string\",\"defaultValue\":\"[concat('cbd-', - uniqueString(resourceGroup().id))]\",\"metadata\":{\"description\":\"DNS name - for the connection broker, must be globally unique.\"}},\"rdshNamingPrefix\":{\"type\":\"string\",\"defaultValue\":\"rdsh-\",\"maxLength\":16,\"metadata\":{\"description\":\"Naming - prefix for the RDS Host VMs and resources\"}}},\"variables\":{\"imagePublisher\":\"MicrosoftWindowsServer\",\"imageOffer\":\"WindowsServer\",\"subnet-id\":\"[resourceId(parameters('adVnetSubscriptionId'), - parameters('adVnetRG'),'Microsoft.Network/virtualNetworks/subnets', parameters('adVnetName'), - parameters('adSubnetName'))]\",\"publicIpAddressName\":\"publicIp\",\"gatewayPublicIpAddressName\":\"gatewayPublicIp\",\"brokerPublicIpAddressName\":\"brokerPublicIp\"},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('publicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('dnsLabelPrefix')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('gatewayPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('gatewayIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/publicIPAddresses\",\"name\":\"[variables('brokerPublicIpAddressName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\",\"dnsSettings\":{\"domainNameLabel\":\"[parameters('connBrokerIpDNS')]\"}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"gw-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"cb-availabilityset\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/availabilitySets\",\"location\":\"[parameters('location')]\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - 'availabilityset')]\",\"properties\":{\"PlatformUpdateDomainCount\":20,\"PlatformFaultDomainCount\":2},\"sku\":{\"name\":\"Aligned\"}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/loadBalancers\",\"name\":\"loadBalancer\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('publicIpAddressName'))]\"],\"properties\":{\"frontendIPConfigurations\":[{\"name\":\"LBFE\",\"properties\":{\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('publicIpAddressName'))]\"}}}],\"backendAddressPools\":[{\"name\":\"LBBAP\"}],\"loadBalancingRules\":[{\"name\":\"LBRule01\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', - 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools/', - 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Tcp\",\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', - 'loadbalancer', 'tcpProbe')]\"}}},{\"name\":\"LBRule02\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations', - 'loadbalancer', 'LBFE')]\"},\"backendAddressPool\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools', - 'loadbalancer', 'LBBAP')]\"},\"protocol\":\"Udp\",\"frontendPort\":3391,\"backendPort\":3391,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":5,\"loadDistribution\":\"SourceIPProtocol\",\"probe\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/probes', - 'loadbalancer', 'tcpProbe')]\"}}}],\"probes\":[{\"name\":\"tcpProbe\",\"properties\":{\"protocol\":\"Tcp\",\"port\":443,\"intervalInSeconds\":5,\"numberOfProbes\":2}},{\"name\":\"tcpProbe01\",\"properties\":{\"protocol\":\"Tcp\",\"port\":3391,\"intervalInSeconds\":5,\"numberOfProbes\":2}}],\"inboundNatRules\":[{\"name\":\"rdp\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations','loadBalancer','LBFE')]\"},\"protocol\":\"Tcp\",\"frontendPort\":3389,\"backendPort\":3389,\"enableFloatingIP\":false}}]}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"gw-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses',variables('gatewayPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools','loadBalancer', - 'LBBAP')]\"}],\"loadBalancerInboundNatRules\":[{\"id\":\"[resourceId('Microsoft.Network/loadBalancers/inboundNatRules','loadBalancer', - 'rdp')]\"}]}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"cb-nic\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"[resourceId('Microsoft.Network/publicIPAddresses', - variables('brokerPublicIpAddressName'))]\"},\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Network/networkInterfaces\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex(), '-nic')]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-nic-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Network/loadBalancers', - 'loadBalancer')]\"],\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfig\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"[variables('subnet-id')]\"}}}],\"dnsSettings\":{\"dnsServers\":[\"[parameters('dnsServerPrivateIp')]\"]}}},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"gw-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - 'gw-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', - 'gw-nic')]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - 'gw-availabilityset')]\"},\"osProfile\":{\"computerName\":\"gateway\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"gw_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','gw-nic')]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"extensions\",\"name\":\"gateway\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - 'gw-vm')]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\Gateway\",\"properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex())]\",\"location\":\"[parameters('location')]\",\"copy\":{\"name\":\"rdsh-vm-loop\",\"count\":\"[parameters('numberOfRdshInstances')]\"},\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\",\"[resourceId('Microsoft.Network/networkInterfaces', - concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - concat(parameters('rdshNamingPrefix'), 'availabilityset'))]\"},\"osProfile\":{\"computerName\":\"[concat(parameters('rdshNamingPrefix'), - copyIndex())]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyIndex(),'-OSDisk')]\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces', - concat(parameters('rdshNamingPrefix'), copyindex(), '-nic'))]\"}]}},\"resources\":[{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('rdshNamingPrefix'), - copyindex(),'/sessionhost')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - concat(parameters('rdshNamingPrefix'), copyindex()))]\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"ConfigurationFunction\":\"Configuration.ps1\\\\SessionHost\",\"Properties\":{\"DomainName\":\"[parameters('adDomainName')]\",\"AdminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:AdminPassword\"}}},\"protectedSettings\":{\"Items\":{\"AdminPassword\":\"[parameters('adminPassword')]\"}}}}]},{\"apiVersion\":\"2020-06-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"name\":\"cb-vm\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/availabilitySets', - 'cb-availabilityset')]\",\"[resourceId('Microsoft.Network/networkInterfaces', - 'cb-nic')]\",\"rdsh-vm-loop\"],\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('rdshVmSize')]\"},\"availabilitySet\":{\"id\":\"[resourceId('Microsoft.Compute/availabilitySets', - 'cb-availabilityset')]\"},\"osProfile\":{\"computerName\":\"broker\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"[variables('imagePublisher')]\",\"offer\":\"[variables('imageOffer')]\",\"sku\":\"[parameters('imageSKU')]\",\"version\":\"latest\"},\"osDisk\":{\"name\":\"cb_OSDisk\",\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"managedDisk\":{\"storageAccountType\":\"StandardSSD_LRS\"}}},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[resourceId('Microsoft.Network/networkInterfaces','cb-nic')]\"}]}}},{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"cb-vm/rdsdeployment\",\"apiVersion\":\"2020-06-01\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[resourceId('Microsoft.Compute/virtualMachines', - 'cb-vm')]\",\"[resourceId('Microsoft.Compute/virtualMachines/extensions', - 'gw-vm', 'gateway')]\",\"rdsh-vm-loop\"],\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"type\":\"DSC\",\"typeHandlerVersion\":\"2.11\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"ModulesUrl\":\"[uri(parameters('_artifactsLocation'),concat('DSC/Configuration.zip', - parameters('_artifactsLocationSasToken')))]\",\"configurationFunction\":\"Configuration.ps1\\\\RDSDeployment\",\"properties\":{\"adminCreds\":{\"UserName\":\"[parameters('adminUsername')]\",\"Password\":\"PrivateSettingsRef:adminPassword\"},\"connectionBroker\":\"[concat('broker.',parameters('adDomainName'))]\",\"domainName\":\"[parameters('adDomainName')]\",\"externalfqdn\":\"[reference(variables('gatewayPublicIpAddressName')).dnsSettings.fqdn]\",\"numberOfRdshInstances\":\"[parameters('numberOfRdshInstances')]\",\"sessionHostNamingPrefix\":\"[parameters('rdshNamingPrefix')]\",\"webAccessServer\":\"[concat('gateway.',parameters('adDomainName'))]\"}},\"protectedSettings\":{\"Items\":{\"adminPassword\":\"[parameters('adminPassword')]\"}}}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplate\",\"message\":\"Deployment - template validation failed: 'The template resource 'dnsLabelPrefix' at line - '8' and column '27' is not valid: The template function 'RESOURCEGROUP' is - not expected at this location. Please see https://aka.ms/arm-template-expressions + string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:50:04.0885604Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:50:04.0885604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:51:00.3893514Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:51:00.3893514Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf-pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:53:28.4521693Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:53:28.4521693Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:54:42.7520085Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:56:22.212836Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{"adVnetName":{"value":"ad-vnet"},"adVnetSubscriptionId":{"value":"ec0f79d3-16f0-4892-8165-f569a92c8273"},"dnsServerPrivateIp":{"value":"10.0.0.4"},"adminUsername":{"value":"bmoore"},"adSubnetName":{"value":"ad-vnet-subnet"},"adDomainName":{"value":"corp.mydomain.com"},"adVnetRG":{"value":"aad-stack"},"adminPassword":{"reference":{"keyVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo"},"secretName":"adminPass"}}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''dnsLabelPrefix'' at + line ''8'' and column ''27'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.'.\",\"details\":[],\"additionalInfo\":[{\"type\":\"TemplateViolation\",\"info\":{\"lineNumber\":8,\"linePosition\":27,\"path\":\"properties.template.parameters.dnsLabelPrefix\"}}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-17T22:00:21.3463894Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-17T22:00:21.3463894Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"filiz-test-stack9\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"AuthorizationFailed\",\"message\":\"The - client 'harshpatel@microsoft.com' with object id '2d79a9af-9d95-4170-89e0-efab097c7daf' - does not have authorization to perform action 'Microsoft.Resources/deployments/write' - over scope '/subscriptions/00000000-0000-0000-0000-000000000000' or the scope - is invalid. If access was recently granted, please refresh your credentials.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T19:48:19.4198449Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T19:48:19.4198449Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei/snapshots/2021-09-20-20-51-37-6d840\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T20:51:35.6106822Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T20:51:35.6106822Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2/snapshots/2021-09-20-21-05-42-d1951\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:05:40.8310162Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:05:40.8310162Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll/snapshots/2021-09-20-21-12-37-d55bb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:12:35.6680098Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:12:35.6680098Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"lollllllllll\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2/snapshots/2021-09-20-21-36-06-92078\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:36:04.5554974Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:36:04.5554974Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv/snapshots/2021-09-20-21-40-18-c95d5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:40:16.9285842Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:40:16.9285842Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt/snapshots/2021-09-20-21-42-53-6c05c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-20T21:42:52.0782141Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-20T21:42:52.0782141Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2/snapshots/2021-09-21-16-46-16-5b7d4\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:46:13.0543587Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:46:13.0543587Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w/snapshots/2021-09-21-16-48-03-0ab48\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-21T16:48:00.0416885Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-21T16:48:00.0416885Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e/snapshots/2021-09-23-13-58-27-acca5\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T13:58:19.9106289Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T13:58:19.9106289Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5/snapshots/2021-09-23-14-09-33-d376f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:09:26.2162792Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:09:26.2162792Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v/snapshots/2021-09-23-14-11-05-a320b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:10:56.9901386Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:10:56.9901386Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg/snapshots/2021-09-23-14-14-24-ff660\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:14:16.6982424Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:14:16.6982424Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b/snapshots/2021-09-23-14-19-04-42851\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:18:57.6431545Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:18:57.6431545Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb/snapshots/2021-09-23-14-28-42-f95c7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T14:28:35.7385575Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T14:28:35.7385575Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi/snapshots/2021-09-23-15-36-34-a3232\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-23T15:36:25.6807389Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-23T15:36:25.6807389Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50/snapshots/2021-09-27-20-33-01-516ff\",\"updateBehavior\":\"detachResources\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-27T20:32:39.4217317Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-09-27T20:32:39.4217317Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2/snapshots/2021-10-01-14-14-35-64eb8\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-09-30T16:50:53.0934702Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:14:15.7887316Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hptest2\"},{\"location\":\"westcentralus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"description\":\"shared - sql and web\",\"templateLink\":{\"uri\":\"C:\\\\Users\\\\harshpatel\\\\Misc\\\\TemplateFiles\\\\empty.json\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed. See snapshot '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services/snapshots/2022-01-21-20-25-54-d3fe4' - for more details.\",\"details\":[{\"code\":\"InvalidContentLink\",\"message\":\"The - provided content link 'Azure.Deployments.Core.Entities.DeploymentTemplateContentLink' - is invalid or not supported. Content link must be an absolute URI not referencing - local host or UNC path.\",\"details\":[],\"additionalInfo\":[]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-01-21T20:06:54.3715401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-01-21T20:25:54.1835862Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-shared-services\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp-shared-services\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh/snapshots/2021-10-01-13-58-30-2aed4\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T13:57:41.1847322Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T13:57:41.1847322Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg/snapshots/2021-10-01-14-07-52-4aca1\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-01T14:07:15.4046137Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-01T14:07:15.4046137Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50/snapshots/2021-11-05-16-55-41-e4b25\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25\",\"parameters\":{\"bar\":{\"value\":\"xyz\"},\"foo\":{\"value\":\"abc\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T16:55:41.0189076Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T16:55:41.0189076Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp2_bb_50\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1/snapshots/2021-10-11-16-25-13-8faf0\",\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeededWithFailures\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-04T16:26:50.5947681Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-11T16:24:03.7631746Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_df_1\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The - template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:37:19.2142448Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:37:19.2142448Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create/snapshots/2021-11-17-20-45-56-90d18\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T14:25:40.0202065Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:45:56.782397Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"InvalidTemplateSpec\",\"message\":\"The - template link ID '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T14:41:02.4356082Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T14:41:02.4356082Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz/snapshots/2021-10-18-15-03-31-6de98\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:01:33.1770554Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:03:30.7704565Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir/snapshots/2021-10-18-15-08-45-d31ac\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-18T15:07:17.9213523Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-18T15:08:18.4975412Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription4mqjir\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086/snapshots/2021-10-19-16-45-55-7b78d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:45:54.3518991Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:45:54.3518991Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3086\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836/snapshots/2021-10-19-16-52-31-5f56a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T16:52:30.9693468Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T16:52:30.9693468Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1836\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074/snapshots/2021-10-19-17-06-24-0725f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f\",\"parameters\":{},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:06:23.7002099Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:06:23.7002099Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6074\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East - US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":27,"path":"properties.template.parameters.dnsLabelPrefix"}}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-17T22:00:21.3463894Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T22:00:21.3463894Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"AuthorizationFailed","message":"The + client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' + does not have authorization to perform action ''Microsoft.Resources/deployments/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000'' or the + scope is invalid. If access was recently granted, please refresh your credentials.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T19:48:19.4198449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T19:48:19.4198449Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T20:51:35.6106822Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T20:51:35.6106822Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:05:40.8310162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:05:40.8310162Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:12:35.6680098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:12:35.6680098Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll","type":"Microsoft.Resources/deploymentStacks","name":"lollllllllll"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:36:04.5554974Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:36:04.5554974Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:40:16.9285842Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:40:16.9285842Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:42:52.0782141Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:42:52.0782141Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-21T16:46:13.0543587Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-21T16:46:13.0543587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-21T16:48:00.0416885Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-21T16:48:00.0416885Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T13:58:19.9106289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T13:58:19.9106289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:09:26.2162792Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:09:26.2162792Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:10:56.9901386Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:10:56.9901386Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:14:16.6982424Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:14:16.6982424Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:18:57.6431545Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:18:57.6431545Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:28:35.7385575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:28:35.7385575Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T15:36:25.6807389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T15:36:25.6807389Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-27T20:32:39.4217317Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-27T20:32:39.4217317Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_50"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-30T16:50:53.0934702Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T14:14:15.7887316Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2","type":"Microsoft.Resources/deploymentStacks","name":"hptest2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mySubStack-2022-06-20-18-51-46-7a6f1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.0741566S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-02-01T21:35:50.3861621Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-20T18:51:45.8755542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStack","type":"Microsoft.Resources/deploymentStacks","name":"mySubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.001939S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone/snapshots/2022-04-05-17-29-24-64a9d'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''236c6ae3-acd8-43c3-b27b-9dcf44e35d59''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-05T16:27:38.5417212Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-05T17:29:23.9447321Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone","type":"Microsoft.Resources/deploymentStacks","name":"hpone"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9251897S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22/snapshots/2022-05-26-20-18-12-269e3'' + for more details. Correlation id: ''845b9eba-1687-4504-916e-8d69d56d2847''","details":[{"code":"InvalidRequestContent","message":"The + request content was invalid and could not be deserialized: ''Required property + ''contentVersion'' not found in JSON. Path ''properties.template'', line 6, + position 5.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-18T20:23:06.5444995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T20:18:11.4113067Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22","type":"Microsoft.Resources/deploymentStacks","name":"hp22"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-04-27-17-16-32-c05e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT46.17268S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks6fq7lg6a2c4oyl3tm4nclfpwjghhuuos22zvw66monjatto4w/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpwlpcdu3ucnpgghodkeam3nnwaqdsi5z5ynglm/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg/snapshots/2022-04-27-17-16-32-c05e0'' + for more details.","details":[{"code":"DeploymentFailed","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks6fq7lg6a2c4oyl3tm4nclfpwjghhuuos22zvw66monjatto4w/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpwlpcdu3ucnpgghodkeam3nnwaqdsi5z5ynglm/versions/v1''. + Either the template spec version does not exist, or the user does not have + access. Please see https://aka.ms/arm-deploy for usage details. Error Code: + ''ServerTimeout'', Detailed Error: The request timed out. Diagnostic information: + timestamp ''20220427T171653Z'', subscription id ''a1bfa635-f2bf-42f1-86b5-848c674fc321'', + tracking id ''dc9b4f61-4ce3-4ffc-b98e-70ecee88b3d7'', request correlation + id ''627c1564-4808-480c-9296-e597bcbaa4a1''. Diagnostic information: timestamp + ''20220427T171653Z'', tracking Id ''dc9b4f61-4ce3-4ffc-b98e-70ecee88b3d7'', + request correlation Id ''627c1564-4808-480c-9296-e597bcbaa4a1''."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:16:29.2922667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:16:29.2922667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-27-17-17-28-e6e77","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT16.7042892S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:17:25.9228775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:17:25.9228775Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription4bas6bgmmdut36t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription4bas6bgmmdut36t"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detach-test-2022-06-15-17-25-59-01c8c","duration":"PT34.0312008S","outputs":{"storageAccountAName":{"type":"String","value":"deploymentscopetesta"},"storageAccountBName":{"type":"String","value":"deploymentscopetestb"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:53:43.8289431Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T17:25:59.1555357Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detach-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detach-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detatch-test-2022-06-14-21-57-39-972ba","duration":"PT10.1409527S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test/snapshots/2022-06-14-21-57-39-972ba'' + for more details. Correlation id: ''723328db-c1c9-4b5d-9fa9-9429eb056224''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:12:29.3345984Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:12:29.3345984Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps175\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274/snapshots/2021-10-19-17-15-01-bf8cf\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:14:49.4351416Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:15:01.180634Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4274\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583/snapshots/2021-10-19-17-19-07-a7ceb\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:18:25.7212979Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:07.1648963Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1583\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867/snapshots/2021-10-19-17-19-47-c2408\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:19:46.7570435Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:19:46.7570435Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1867\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437/snapshots/2021-10-19-17-20-07-b9cb3\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:20:06.8260216Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:20:06.8260216Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps437\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906/snapshots/2021-10-19-17-24-02-c7d1e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:23:50.912183Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:24:02.5159965Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3906\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781/snapshots/2021-10-19-17-31-31-e074b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:30:54.8199045Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:31:31.5117985Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps781\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796/snapshots/2021-10-19-17-32-20-2861b\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:19.6402071Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:19.6402071Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5796\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420/snapshots/2021-10-19-17-32-38-34362\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:32:37.6073194Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:32:37.6073194Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps5420\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205/snapshots/2021-10-19-17-40-19-0072a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:40:18.9660861Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:40:18.9660861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps3205\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696/snapshots/2021-10-19-17-41-14-f8cda\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-19T17:41:13.3903692Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-19T17:41:13.3903692Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4696\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz/snapshots/2021-10-21-13-54-08-2b923\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T13:53:05.5338226Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T13:54:07.7508046Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut/snapshots/2021-10-21-14-48-03-88639\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-21T14:47:02.3811951Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-21T14:48:02.5162767Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7/snapshots/2021-10-27-15-26-45-2c28d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T15:25:42.4421091Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T15:26:44.5347824Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist/snapshots/2021-11-01-16-25-26-833dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:41:02.8192804Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T16:25:25.8944733Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"shouldnotexist\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w/snapshots/2021-10-29-17-19-25-1c304\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:19:25.0094772Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:19:25.0094772Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-create-deployment-stack-subscription56r32mivz7ic36w\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z/snapshots/2021-10-29-17-28-02-94702\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.3445727Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:01.9714966Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574/snapshots/2021-10-29-17-27-43-a68dd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:27:42.8855732Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:27:42.8855732Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5/snapshots/2021-10-29-17-28-06-2533f\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:06.3731401Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:06.3731401Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h/snapshots/2021-10-29-17-28-09-31c8c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:28:09.2279775Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:28:09.2279775Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp/snapshots/2021-10-29-17-42-24-2f8ab\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:23.4565657Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:23.4565657Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla/snapshots/2021-10-29-17-42-24-0564d\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:24.0694861Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:24.0694861Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d/snapshots/2021-10-29-17-42-32-63c5a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:42:31.3859118Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:42:31.3859118Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr/snapshots/2021-10-29-17-45-19-16e68\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:44:59.3519432Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:19.3365624Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj/snapshots/2021-10-29-17-45-02-64560\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:02.0061035Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:02.0061035Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscription7uldyssruansxuj\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp/snapshots/2021-10-29-17-45-24-f4ace\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:23.4694512Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:23.4694512Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq/snapshots/2021-10-29-17-45-32-133fc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.4559907Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.4559907Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i/snapshots/2021-10-29-17-45-32-e6c58\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:45:31.392848Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:45:31.392848Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q/snapshots/2021-10-29-17-56-19-4e06e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T17:55:17.899007Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T17:56:19.0801133Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription2itu4q\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm/snapshots/2021-10-29-18-53-09-45891\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-29T18:52:08.0432709Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-29T18:53:08.8891818Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp/snapshots/2021-11-01-15-20-30-c3f89\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T15:19:26.5294367Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-01T15:20:30.1078116Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription3p34wp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1/snapshots/2021-11-05-14-45-36-2ba95\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1\"},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-01T16:26:23.8125615Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T14:45:36.2610103Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hpts1\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"purgeResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792\",\"parameters\":{},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"9792940981470365642\"}},\"functions\":[],\"variables\":{\"websites\":[{\"name\":\"fancy\",\"tag\":\"latest\"},{\"name\":\"plain\",\"tag\":\"plain-text\"}]},\"resources\":[{\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2020-06-01\",\"name\":\"adotfrank-rg\",\"location\":\"[deployment().location]\"},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"appPlanDeploy\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"namePrefix\":{\"value\":\"adotfrank\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"3091021280087149250\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"defaultValue\":\"B1\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/serverfarms\",\"apiVersion\":\"2020-06-01\",\"name\":\"mysite\",\"location\":\"[resourceGroup().location]\",\"kind\":\"linux\",\"sku\":{\"name\":\"[parameters('sku')]\"},\"properties\":{\"reserved\":true}}],\"outputs\":{\"planId\":{\"type\":\"string\",\"value\":\"[resourceId('Microsoft.Web/serverfarms', - format('{0}appPlan', parameters('namePrefix')))]\"}}}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - 'adotfrank-rg')]\"]},{\"copy\":{\"name\":\"siteDeploy\",\"count\":\"[length(variables('websites'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}siteDeploy', - variables('websites')[copyIndex()].name)]\",\"resourceGroup\":\"adotfrank-rg\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"appPlanId\":{\"value\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - 'appPlanDeploy'), '2020-06-01').outputs.planId.value]\"},\"namePrefix\":{\"value\":\"[variables('websites')[copyIndex()].name]\"},\"dockerImage\":{\"value\":\"nginxdemos/hello\"},\"dockerImageTag\":{\"value\":\"[variables('websites')[copyIndex()].tag]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"17373956428318857886\"}},\"parameters\":{\"namePrefix\":{\"type\":\"string\"},\"location\":{\"type\":\"string\",\"defaultValue\":\"[resourceGroup().location]\"},\"dockerImage\":{\"type\":\"string\"},\"dockerImageTag\":{\"type\":\"string\"},\"appPlanId\":{\"type\":\"string\"}},\"functions\":[],\"resources\":[{\"type\":\"Microsoft.Web/sites\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('{0}site', - parameters('namePrefix'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"siteConfig\":{\"appSettings\":[{\"name\":\"DOCKER_REGISTRY_SERVER_URL\",\"value\":\"https://index.docker.io\"},{\"name\":\"DOCKER_REGISTRY_SERVER_USERNAME\",\"value\":\"\"},{\"name\":\"DOCKER_REGISTRY_SERVER_PASSWORD\",\"value\":\"\"},{\"name\":\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\"value\":\"false\"}],\"linuxFxVersion\":\"[format('DOCKER|{0}:{1}', - parameters('dockerImage'), parameters('dockerImageTag'))]\"},\"serverFarmId\":\"[parameters('appPlanId')]\"}}],\"outputs\":{\"siteUrl\":{\"type\":\"string\",\"value\":\"[reference(resourceId('Microsoft.Web/sites', - format('{0}site', parameters('namePrefix')))).hostNames[0]]\"}}}},\"dependsOn\":[\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - 'appPlanDeploy')]\",\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - 'adotfrank-rg')]\"]}],\"outputs\":{\"siteUrls\":{\"type\":\"array\",\"copy\":{\"count\":\"[length(variables('websites'))]\",\"input\":\"[reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - subscription().subscriptionId, 'adotfrank-rg'), 'Microsoft.Resources/deployments', - format('{0}siteDeploy', variables('websites')[copyIndex()].name)), '2020-06-01').outputs.siteUrl.value]\"}}}},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite\"}],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-b'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-a'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:57:38.2436258Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T21:57:38.2436258Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detatch-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-example-storageaccount-2022-06-14-22-13-56-d5b2f","duration":"PT12.7634725S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount/snapshots/2022-06-14-22-13-56-d5b2f'' + for more details. Correlation id: ''bbdbbf47-5555-4a8e-901c-4a6d53b094aa''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T22:13:54.9096146Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T22:13:54.9096146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount","type":"Microsoft.Resources/deploymentStacks","name":"dante-example-storageaccount"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9740014S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg/snapshots/2022-06-15-16-47-09-62c43'' + for more details. Correlation id: ''f812d4e9-8926-4957-a4ae-1c18895674b3''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''angperezAKS'' at line + ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:47:07.7566368Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:47:07.7566368Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg","type":"Microsoft.Resources/deploymentStacks","name":"angperezStackRg"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.2094989S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack/snapshots/2022-06-15-16-51-12-544d9'' + for more details. Correlation id: ''2c1f0a54-6867-4206-9aea-ded21cee84e1''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''angperezAKS'' at line + ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:49:53.9387362Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:51:12.1631587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack","type":"Microsoft.Resources/deploymentStacks","name":"angperezStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.3648936S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13/snapshots/2022-06-17-18-53-18-03d4c'' + for more details. Correlation id: ''b864b76e-1dd6-41d5-a0b6-f08ab4aa49e3''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''sqlServerName'' at line + ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-17T18:53:16.7933655Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-17T18:53:16.7933655Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13","type":"Microsoft.Resources/deploymentStacks","name":"teststack13"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy-2022-06-23-17-09-19-b7d99","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.1677588S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy/snapshots/2022-06-23-17-09-19-b7d99'' + for more details. Correlation id: ''a0f6b921-5643-42c2-84b8-7091762fc357''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"},{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:09:17.4941031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:09:17.4941031Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy","type":"Microsoft.Resources/deploymentStacks","name":"dummy"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteTestStack-2022-09-07-17-32-25-5a92d","duration":"PT9.0890768S","parameters":{"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"keyVaultName":{"value":"danted-stackstest1523"},"secretValue":{"value":"HelloToTheWorld"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack/snapshots/2022-09-07-17-32-25-5a92d'' + for more details. Correlation id: ''3334e5a3-5ab1-4a77-9ab0-3d02b5c5f8da''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"fitopata@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T15:02:38.9889696Z\",\"lastModifiedBy\":\"fitopata@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T15:13:51.4211642Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"repro\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7/snapshots/2021-11-02-16-47-05-b613c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T16:45:59.8209721Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T16:47:05.4842135Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx/snapshots/2021-11-02-17-15-54-8a1cc\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-02T17:14:47.1456522Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-02T17:15:53.8410163Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp/snapshots/2021-11-03-14-36-55-0dd0a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-03T14:35:51.3843559Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-03T14:36:55.445654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen/snapshots/2021-11-04-14-58-49-c5759\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T14:57:45.2338258Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T14:58:48.7272611Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks/snapshots/2021-11-04-15-10-05-118df\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-04T15:09:02.03315Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-04T15:10:05.0413021Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27/snapshots/2021-11-05-13-53-48-5597a\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-05T13:52:45.154655Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-05T13:53:48.4051267Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz/snapshots/2021-11-08-17-51-41-6eeb0\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-08T17:50:37.8777875Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-08T17:51:41.7610477Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271/snapshots/2021-11-11-22-18-03-98c08\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:16:44.9692359Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:18:02.6858472Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps9271\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125/snapshots/2021-11-11-22-19-41-17735\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"templateLink\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1\"},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:19:13.5864143Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:19:41.4727654Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps4125\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480/snapshots/2021-11-11-22-21-19-29234\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:19.0918203Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:19.0918203Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps6480\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927/snapshots/2021-11-11-22-21-54-25b10\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:21:53.3918115Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:21:53.3918115Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps7927\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257/snapshots/2021-11-11-22-29-34-32f37\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37\",\"parameters\":{\"storageAccountName\":{\"value\":\"armbuilddemo18123\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\",\"defaultValue\":\"armbuilddemo18122\"},\"nestedDeploymentRG\":{\"type\":\"string\",\"defaultValue\":\"ps_test_subscription_deployment\"},\"policyLocation\":{\"type\":\"string\",\"defaultValue\":\"northeurope\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy2\",\"apiVersion\":\"2016-12-01\",\"properties\":{\"policyType\":\"Custom\",\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"location\",\"equals\":\"[parameters('policyLocation')]\"},\"then\":{\"effect\":\"deny\"}}}},{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"location-lock\",\"apiVersion\":\"2016-12-01\",\"dependsOn\":[\"policy2\"],\"properties\":{\"scope\":\"[subscription().id]\",\"policyDefinitionId\":\"[resourceId('Microsoft.Authorization/policyDefinitions', - 'policy2')]\"}},{\"type\":\"Microsoft.Resources/resourceGroups\",\"name\":\"[parameters('nestedDeploymentRG')]\",\"location\":\"West - US\",\"apiVersion\":\"2019-05-01\",\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"rg-nested\",\"apiVersion\":\"2017-05-10\",\"resourceGroup\":\"[parameters('nestedDeploymentRG')]\",\"dependsOn\":[\"[parameters('nestedDeploymentRG')]\"],\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[parameters('storageAccountName')]\",\"apiVersion\":\"2015-06-15\",\"location\":\"East - US\",\"properties\":{\"accountType\":\"Standard_LRS\"}}]},\"mode\":\"Incremental\"}}]},\"managedResources\":[{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2\"},{\"lockMode\":\"none\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"}],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:29:06.805572Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:29:33.6304101Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps1257\"},{\"location\":\"westus2\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d\",\"parameters\":{\"workerSize\":{\"value\":0},\"hostingPlanName\":{\"value\":\"xDeploymentTestHost26669\"},\"sku\":{\"value\":\"Basic\"},\"siteLocation\":{\"value\":\"East - US\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"hostingPlanName\":{\"type\":\"string\"},\"siteLocation\":{\"type\":\"string\"},\"sku\":{\"type\":\"string\",\"allowedValues\":[\"Free\",\"Shared\",\"Basic\",\"Standard\"],\"defaultValue\":\"Free\"},\"workerSize\":{\"type\":\"int\",\"allowedValues\":[0,1,2],\"defaultValue\":0}},\"resources\":[{\"apiVersion\":\"2014-04-01\",\"name\":\"[parameters('hostingPlanName')]\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"[parameters('siteLocation')]\",\"properties\":{\"name\":\"[parameters('hostingPlanName')]\",\"sku\":\"[parameters('sku')]\",\"workerSize\":\"[parameters('workerSize')]\",\"numberOfWorkers\":1}}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''Microsoft.KeyVault/vaults/danted-stackstest1523'' + is not defined in the template. Please see https://aka.ms/arm-template for + usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:34:18.5382285Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T17:32:24.3045971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteTestStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStorageStack-2022-09-07-18-33-27-a89a9","duration":"PT43.548586S","outputs":{},"parameters":{"namePrefix":{"value":"danted1234"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-07T18:05:16.4036646Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T18:33:25.9618998Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStorageStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStorageStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/9_19_test1-2022-09-26-16-20-50-2da1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.5093326S","parameters":{"name":{"value":"resource2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:47.4745761Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:47.4745761Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/deployments/subStack-2022-11-04-01-38-25-933c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","duration":"PT10.0476458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T01:38:22.5331641Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T01:38:22.5331641Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack","type":"Microsoft.Resources/deploymentStacks","name":"subStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackPollingTest-2022-11-15-18-00-23-43c41","duration":"PT22.548223S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:55:43.6664349Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:23.6612325Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackPollingTest","type":"Microsoft.Resources/deploymentStacks","name":"testStackPollingTest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-01T13:57:41.1847322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T13:57:41.1847322Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-01T14:07:15.4046137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T14:07:15.4046137Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25","parameters":{"bar":{"value":"xyz"},"foo":{"value":"abc"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T16:55:41.0189076Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T16:55:41.0189076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50","type":"Microsoft.Resources/deploymentStacks","name":"hp2_bb_50"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-04T16:26:50.5947681Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-11T16:24:03.7631746Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1","type":"Microsoft.Resources/deploymentStacks","name":"hp_df_1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T14:37:19.2142448Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T14:37:19.2142448Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T14:25:40.0202065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T20:45:56.782397Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create","type":"Microsoft.Resources/deploymentStacks","name":"hp_prod_sub_create"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T14:41:02.4356082Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T14:41:02.4356082Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T15:01:33.1770554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T15:03:30.7704565Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T15:07:17.9213523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T15:08:18.4975412Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4mqjir"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T16:45:54.3518991Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T16:45:54.3518991Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086","type":"Microsoft.Resources/deploymentStacks","name":"ps3086"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T16:52:30.9693468Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T16:52:30.9693468Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836","type":"Microsoft.Resources/deploymentStacks","name":"ps1836"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:06:23.7002099Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:06:23.7002099Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074","type":"Microsoft.Resources/deploymentStacks","name":"ps6074"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35","parameters":{"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:12:29.3345984Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:12:29.3345984Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175","type":"Microsoft.Resources/deploymentStacks","name":"ps175"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:14:49.4351416Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:15:01.180634Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274","type":"Microsoft.Resources/deploymentStacks","name":"ps4274"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:18:25.7212979Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:19:07.1648963Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583","type":"Microsoft.Resources/deploymentStacks","name":"ps1583"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:19:46.7570435Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:19:46.7570435Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867","type":"Microsoft.Resources/deploymentStacks","name":"ps1867"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:20:06.8260216Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:20:06.8260216Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437","type":"Microsoft.Resources/deploymentStacks","name":"ps437"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:23:50.912183Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:24:02.5159965Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906","type":"Microsoft.Resources/deploymentStacks","name":"ps3906"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:30:54.8199045Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:31:31.5117985Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781","type":"Microsoft.Resources/deploymentStacks","name":"ps781"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:32:19.6402071Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:32:19.6402071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796","type":"Microsoft.Resources/deploymentStacks","name":"ps5796"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:32:37.6073194Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:32:37.6073194Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420","type":"Microsoft.Resources/deploymentStacks","name":"ps5420"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:40:18.9660861Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:40:18.9660861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205","type":"Microsoft.Resources/deploymentStacks","name":"ps3205"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:41:13.3903692Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:41:13.3903692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696","type":"Microsoft.Resources/deploymentStacks","name":"ps4696"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-21T13:53:05.5338226Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T13:54:07.7508046Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-21T14:47:02.3811951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T14:48:02.5162767Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-27T15:25:42.4421091Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-27T15:26:44.5347824Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T18:41:02.8192804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-01T16:25:25.8944733Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist","type":"Microsoft.Resources/deploymentStacks","name":"shouldnotexist"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:19:25.0094772Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:19:25.0094772Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription56r32mivz7ic36w"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:27:42.3445727Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:01.9714966Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:27:42.8855732Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:27:42.8855732Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:28:06.3731401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:06.3731401Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:28:09.2279775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:09.2279775Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:23.4565657Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:23.4565657Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:24.0694861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:24.0694861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:31.3859118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:31.3859118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:44:59.3519432Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:19.3365624Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:02.0061035Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:02.0061035Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7uldyssruansxuj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:23.4694512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:23.4694512Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:31.4559907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:31.4559907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:31.392848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:31.392848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:55:17.899007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:56:19.0801133Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription2itu4q"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T18:52:08.0432709Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T18:53:08.8891818Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-01T15:19:26.5294367Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-01T15:20:30.1078116Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription3p34wp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-01T16:26:23.8125615Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T14:45:36.2610103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1","type":"Microsoft.Resources/deploymentStacks","name":"hpts1"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Web/serverFarms/xDeploymentTestHost26669' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"createdByType\":\"Application\",\"createdAt\":\"2021-11-11T22:36:24.6329286Z\",\"lastModifiedBy\":\"546094f3-32fa-493c-824c-bd9575b0d2fe\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-11-11T22:36:24.6329286Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ps8692\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4/snapshots/2021-11-15-15-07-37-06804\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"foo\":{\"value\":\"abc\"},\"bar\":{\"value\":\"xyz\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T15:06:34.4666682Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T15:07:36.8624014Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc/snapshots/2021-11-15-20-20-18-81368\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:19:17.0338745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:20:18.1175672Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa/snapshots/2021-11-15-20-42-21-f515c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T20:41:20.4753415Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T20:42:21.4238094Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl/snapshots/2021-11-15-21-12-24-ad962\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-15T21:11:23.4123304Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-15T21:12:24.6476543Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9\",\"parameters\":{\"resourceGroups\":{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun\",\"name\":\"tarun\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"15509277032350500834\"}},\"parameters\":{\"resourceGroups\":{\"type\":\"array\",\"metadata\":{\"description\":\"Resource - Groups definition to deploy resources to.\"}},\"deploymentLocation\":{\"type\":\"string\",\"defaultValue\":\"[deployment().location]\",\"metadata\":{\"description\":\"The - location of the deployment.\"}},\"tags\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"Specify - tags that should be assigned to the deployed resources. Tags are needed for - proper usage and billing handling.\"}},\"solutionVersionTag\":{\"type\":\"object\",\"defaultValue\":{},\"metadata\":{\"description\":\"The - version of this solution in the form of tag. This parameter is specified usually - by lz-deployment-script (deploy.ps1).\"}}},\"functions\":[],\"variables\":{\"allTags\":\"[union(parameters('tags'), - parameters('solutionVersionTag'))]\",\"defaultResourceGroupObject\":{\"tags\":{},\"create\":true,\"alertsScope\":{\"subscriptionId\":\"\",\"resourceGroup\":\"\",\"logAnalyticsWorkspace\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"actionGroups\":[],\"alertRules\":{\"memoryThrashing\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Memory Thrashing has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"memoryThrashingByServerName\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services service logs by server name has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":5,\"timeWindowInMinutes\":5,\"severity\":1,\"operator\":\"GreaterThan\",\"threshold\":70,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"value_s\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"totalConnectionFailures\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Total Connection Failures has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":15,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":5,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"commandPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Command Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":3,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"},\"processingPoolJobQueueLength\":{\"id\":\"\",\"displayName\":\"Azure - Analysis Services Processing Pool Job Queue Length has reached threshold\",\"enabled\":false,\"tags\":{},\"autoMitigate\":true,\"frequencyInMinutes\":15,\"timeWindowInMinutes\":60,\"severity\":2,\"operator\":\"GreaterThan\",\"threshold\":1,\"muteActionsDurationInMinutes\":0,\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"Average\",\"dimensions\":[],\"minFailingPeriodsToAlert\":1,\"numberOfEvaluationPeriods\":1,\"overrideQueryTimeRange\":0,\"customProperties\":{},\"skipQueryValidation\":false,\"checkWorkspaceAlertsStorageConfigured\":false,\"description\":\"\",\"query\":\"\"}}}},\"resources\":[{\"condition\":\"[union(variables('defaultResourceGroupObject'), - parameters('resourceGroups')[copyIndex()]).create]\",\"copy\":{\"name\":\"resourceGroupsRes\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2021-04-01\",\"name\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"location\":\"[parameters('resourceGroups')[copyIndex()].location]\",\"tags\":\"[union(variables('allTags'), - union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\",\"properties\":{}},{\"copy\":{\"name\":\"analysisServiceMonResources\",\"count\":\"[length(parameters('resourceGroups'))]\"},\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceMonResources-{0}', - copyIndex())]\",\"resourceGroup\":\"[parameters('resourceGroups')[copyIndex()].name]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[union(variables('defaultResourceGroupObject'), - parameters('resourceGroups')[copyIndex()])]\"},\"tags\":{\"value\":\"[union(variables('allTags'), - union(variables('defaultResourceGroupObject'), parameters('resourceGroups')[copyIndex()]).tags)]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"13027831339953017732\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"defaultActionGroupObject\":{\"name\":\"\",\"resourceGroup\":\"\",\"subscriptionId\":\"[subscription().subscriptionId]\"}},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2020-06-01\",\"name\":\"[format('analysisServiceAlerts-{0}', - if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - uniqueString(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name)))]\",\"properties\":{\"expressionEvaluationOptions\":{\"scope\":\"inner\"},\"mode\":\"Incremental\",\"parameters\":{\"analysisServiceMonitoring\":{\"value\":\"[parameters('analysisServiceMonitoring')]\"},\"actionGroups\":{\"copy\":[{\"name\":\"value\",\"count\":\"[length(parameters('analysisServiceMonitoring').actionGroups)]\",\"input\":\"[union(variables('defaultActionGroupObject'), - parameters('analysisServiceMonitoring').actionGroups[copyIndex('value')])]\"}]},\"location\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - resourceGroup().location, reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), - 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - '2021-06-01', 'full').location)]\"},\"logAnalyticsWorkspaceResourceId\":{\"value\":\"[if(empty(parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name), - '', extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.subscriptionId, - parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.resourceGroup), - 'Microsoft.OperationalInsights/workspaces', parameters('analysisServiceMonitoring').alertsScope.logAnalyticsWorkspace.name))]\"},\"tags\":{\"value\":\"[parameters('tags')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"metadata\":{\"_generator\":{\"name\":\"bicep\",\"version\":\"0.4.1008.15138\",\"templateHash\":\"1278265623681629574\"}},\"parameters\":{\"analysisServiceMonitoring\":{\"type\":\"object\"},\"actionGroups\":{\"type\":\"array\"},\"location\":{\"type\":\"string\"},\"logAnalyticsWorkspaceResourceId\":{\"type\":\"string\"},\"tags\":{\"type\":\"object\"}},\"functions\":[],\"variables\":{\"alertRules\":{\"memoryThrashing\":{\"id\":\"2c995c3f-8e42-4eaf-82c2-80b9d443b2dd\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description), - 'This metric shows the average percentage of memory being thrashed from the - RAM of your resource, relative to the total size of RAM in the resource. Note - that this metric is relevant only for Import mode datasets, because they''re - hosting data in memory. This metric does not monitor datasets that are using - DirectQuery or live connection to Analysis Services. When the memory thrashing - keeps exceeding the given threshold, it''s worth investigating the problem - more deeply first, as scaling up is not always the solution for it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"Resource\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"memoryThrashingByServerName\":{\"id\":\"5b9e5597-32c6-4f1a-a984-52aa690ccf5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query), - 'AzureDiagnostics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and OperationName == ''LogMetric''\\r\\n and Category == ''Service''\\r\\n - \ and name_s == ''memory_thrashing_metric''', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description), - 'This metric shows the average percentage of memory being thrashed from the - RAM of your resource, relative to the total size of RAM in the resource, by - server name. Note that this metric is relevant only for Import mode datasets, - because they''re hosting data in memory. This metric does not monitor datasets - that are using DirectQuery or live connection to Analysis Services. When the - memory thrashing keeps exceeding the given threshold, it''s worth investigating - the problem more deeply first, as scaling up is not always the solution for - it.', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"_SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"ServerName_s\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"totalConnectionFailures\":{\"id\":\"f9125df9-eb5d-4967-8517-52c68f6f9dd2\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''TotalConnectionFailures''', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description), - 'The average count of failed connection attempts. Set the threshold to an - appropriate value after monitoring and discovering the normal average value - of this metric.', parameters('analysisServiceMonitoring').alertRules.totalConnectionFailures.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"commandPoolJobQueueLength\":{\"id\":\"86b2903c-67b2-42a7-8e20-2ba68053cd5a\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''CommandPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description), - 'Monitors CPU thread utilization related to processing commands. Technically - there are several other types of commands, but when it comes to performance, - ''processing'' is the only one of concern. (the other ''types'' of commands - are things like DDL-ish to add/alter a partition). This particular counter - shows when a (processing) command is waiting on a thread to be allocated from - the command pool\u2026 in other words, if you see a value > 1 here for an - extended period of time, you have a bottleneck. When there is it is very likely - due to Azure AS becomes a junk yard for ''auto-upgraded'' Power BI solutions - w/ auto-refresh capabilities.', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"processingPoolJobQueueLength\":{\"id\":\"a7d45337-19cb-4cb2-b1d9-380bf5cf8970\",\"query\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query), - 'AzureMetrics\\r\\n| where ResourceProvider == ''MICROSOFT.ANALYSISSERVICES''\\r\\n - \ and MetricName == ''ProcessingPoolJobQueueLength''', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.query)]\",\"description\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description), - 'Monitors for Processing Pool Job Queue Length. The processing thread pool - allocates threads for processing the data structures that make up a tabular - model. Same as CommandPoolJobQueueLength a value > 1 for and extended period - of time indicates a bottleneck. This is a much more common place to find a - bottleneck especially in larger models that leverage partitions and parallel - processing.', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.description)]\",\"dimensions\":[{\"name\":\"TenantId\",\"operator\":\"Include\",\"values\":[\"*\"]},{\"name\":\"SubscriptionId\",\"operator\":\"Include\",\"values\":[\"*\"]}]}},\"defaultDimension\":[{\"name\":\"_ResourceId\",\"operator\":\"Include\",\"values\":[\"*\"]}]},\"resources\":[{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id), - variables('alertRules').memoryThrashing.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashing.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.displayName]\",\"description\":\"[variables('alertRules').memoryThrashing.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashing.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashing.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').memoryThrashing.dimensions), - parameters('analysisServiceMonitoring').alertRules.memoryThrashing.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashing.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id), - variables('alertRules').memoryThrashingByServerName.id, parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.displayName]\",\"description\":\"[variables('alertRules').memoryThrashingByServerName.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').memoryThrashingByServerName.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').memoryThrashingByServerName.dimensions), - parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.memoryThrashingByServerName.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id), - variables('alertRules').commandPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').commandPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').commandPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').commandPoolJobQueueLength.dimensions), - parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.commandPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}},{\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"apiVersion\":\"2021-08-01\",\"name\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id), - variables('alertRules').processingPoolJobQueueLength.id, parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.id)]\",\"location\":\"[parameters('location')]\",\"tags\":\"[union(parameters('tags'), - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.tags)]\",\"kind\":\"LogAlert\",\"properties\":{\"displayName\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.displayName]\",\"description\":\"[variables('alertRules').processingPoolJobQueueLength.description]\",\"enabled\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.enabled]\",\"autoMitigate\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.autoMitigate]\",\"severity\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.severity]\",\"evaluationFrequency\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.frequencyInMinutes)]\",\"windowSize\":\"[format('PT{0}M', - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeWindowInMinutes)]\",\"overrideQueryTimeRange\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.overrideQueryTimeRange))]\",\"muteActionsDuration\":\"[if(equals(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes, - 0), null(), format('PT{0}M', parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.muteActionsDurationInMinutes))]\",\"scopes\":[\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - if(empty(parameters('analysisServiceMonitoring').alertsScope.resourceGroup), - format('/subscriptions/{0}', parameters('analysisServiceMonitoring').alertsScope.subscriptionId), - subscriptionResourceId(parameters('analysisServiceMonitoring').alertsScope.subscriptionId, - 'Microsoft.Resources/resourceGroups', parameters('analysisServiceMonitoring').alertsScope.resourceGroup)), - parameters('logAnalyticsWorkspaceResourceId'))]\"],\"criteria\":{\"allOf\":[{\"query\":\"[variables('alertRules').processingPoolJobQueueLength.query]\",\"timeAggregation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.timeAggregation]\",\"metricMeasureColumn\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.metricMeasureColumn]\",\"resourceIdColumn\":\"[if(empty(parameters('logAnalyticsWorkspaceResourceId')), - '_ResourceId', null())]\",\"operator\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.operator]\",\"threshold\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.threshold]\",\"failingPeriods\":{\"minFailingPeriodsToAlert\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.minFailingPeriodsToAlert]\",\"numberOfEvaluationPeriods\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.numberOfEvaluationPeriods]\"},\"dimensions\":\"[if(empty(parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions), - union(if(empty(parameters('logAnalyticsWorkspaceResourceId')), createArray(), - variables('defaultDimension')), variables('alertRules').processingPoolJobQueueLength.dimensions), - parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.dimensions)]\"}]},\"actions\":{\"copy\":[{\"name\":\"actionGroups\",\"count\":\"[length(parameters('actionGroups'))]\",\"input\":\"[extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', - parameters('actionGroups')[copyIndex('actionGroups')].subscriptionId, parameters('actionGroups')[copyIndex('actionGroups')].resourceGroup), - 'microsoft.insights/actionGroups', parameters('actionGroups')[copyIndex('actionGroups')].name)]\"}],\"customProperties\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.customProperties]\"},\"skipQueryValidation\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.skipQueryValidation]\",\"checkWorkspaceAlertsStorageConfigured\":\"[parameters('analysisServiceMonitoring').alertRules.processingPoolJobQueueLength.checkWorkspaceAlertsStorageConfigured]\"}}]}}}]}},\"dependsOn\":[\"[subscriptionResourceId('Microsoft.Resources/resourceGroups', - parameters('resourceGroups')[copyIndex()].name)]\"]}]},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details."},{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\"}]}]}]}},\"systemData\":{\"createdBy\":\"tsunkaraneni@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-16T23:17:33.6981155Z\",\"lastModifiedBy\":\"tsunkaraneni@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-16T23:31:28.1053874Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"ghImplicit\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp/snapshots/2021-11-17-20-18-26-378e6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:17:25.3276637Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T20:18:26.5874089Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource - group 'resource-group' could not be found.\",\"details\":[],\"additionalInfo\":[]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T20:58:13.256519Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:44:40.7588571Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"hp_prod_sub_create_checje\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg/snapshots/2021-11-17-21-03-16-860a6\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-17T21:02:09.9177231Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-17T21:03:16.4615691Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc/snapshots/2021-11-18-20-42-37-e61e7\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T20:41:35.3698362Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T20:42:37.6788971Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscription53xmqc\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp/snapshots/2021-11-22-16-13-15-0eef8\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:15.1673603Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:15.1673603Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-hp\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt/snapshots/2021-11-18-21-02-19-64f5e\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:01:12.9792533Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:02:19.3094872Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g/snapshots/2021-11-18-21-09-35-16ebd\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-18T21:08:34.3282811Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-18T21:09:35.8321305Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g/snapshots/2021-11-19-15-47-39-bcc03\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-19T15:46:36.9976152Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-19T15:47:38.9223058Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2/snapshots/2021-11-22-16-13-37-7052c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:13:37.2232093Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:13:37.2232093Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-2\"},{\"location\":\"westus\",\"properties\":{\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountType\":{\"type\":\"string\",\"defaultValue\":\"Standard_LRS\",\"allowedValues\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_ZRS\",\"Premium_LRS\"],\"metadata\":{\"description\":\"Storage - Account type\"}},\"location\":{\"type\":\"string\",\"defaultValue\":\"westus\",\"metadata\":{\"description\":\"Location - for all resources.\"}}},\"variables\":{\"storageAccountName\":\"deploymentscopetest\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"apiVersion\":\"2019-06-01\",\"name\":\"[variables('storageAccountName')]\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"[parameters('storageAccountType')]\"},\"kind\":\"StorageV2\",\"properties\":{}}],\"outputs\":{\"storageAccountName\":{\"type\":\"string\",\"value\":\"[variables('storageAccountName')]\"}}},\"managedResources\":[],\"provisioningState\":\"failed\",\"error\":{\"code\":\"DeploymentStackUpdateFailed\",\"message\":\"One - or more stages of deploymentStack update failed.\",\"details\":[{\"code\":\"DeploymentStackDeploymentFailed\",\"message\":\"One - or more resources could not be deployed.\",\"details\":[{\"code\":\"DeploymentFailed\",\"message\":\"At + for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-11-02T15:02:38.9889696Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T15:13:51.4211642Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro","type":"Microsoft.Resources/deploymentStacks","name":"repro"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-02T16:45:59.8209721Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T16:47:05.4842135Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-02T17:14:47.1456522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T17:15:53.8410163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-03T14:35:51.3843559Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T14:36:55.445654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-04T14:57:45.2338258Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T14:58:48.7272611Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-04T15:09:02.03315Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T15:10:05.0413021Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T13:52:45.154655Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T13:53:48.4051267Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-08T17:50:37.8777875Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T17:51:41.7610477Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:16:44.9692359Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:18:02.6858472Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271","type":"Microsoft.Resources/deploymentStacks","name":"ps9271"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:19:13.5864143Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:19:41.4727654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125","type":"Microsoft.Resources/deploymentStacks","name":"ps4125"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:21:19.0918203Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:21:19.0918203Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480","type":"Microsoft.Resources/deploymentStacks","name":"ps6480"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:21:53.3918115Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:21:53.3918115Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927","type":"Microsoft.Resources/deploymentStacks","name":"ps7927"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:29:06.805572Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:29:33.6304101Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257","type":"Microsoft.Resources/deploymentStacks","name":"ps1257"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d","parameters":{"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"ResourceNotFound\",\"message\":\"The - Resource 'Microsoft.Storage/storageAccounts/deploymentscopetest' under resource - group '' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}]}]}]}},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:17:46.80745Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:20:05.9319831Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-3\"},{\"location\":\"westus\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4/snapshots/2021-11-29-21-39-53-0b595\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:24:17.4398839Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-29T21:39:53.5762409Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"deployment-scope-check-4\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7/snapshots/2021-11-22-16-36-51-5d65c\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T16:35:48.7273275Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T16:36:51.51709Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7\"},{\"location\":\"westus2\",\"properties\":{\"snapshotId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l/snapshots/2021-11-22-20-12-41-5ff21\",\"updateBehavior\":\"detachResources\",\"deploymentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21\",\"deploymentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"foo\":{\"type\":\"string\",\"defaultValue\":\"foo\",\"metadata\":{\"description\":\"description\"}},\"bar\":{\"type\":\"string\",\"defaultValue\":\"bar\",\"metadata\":{\"description\":\"description\"}}},\"functions\":[],\"variables\":{},\"resources\":[],\"outputs\":{\"foo\":{\"type\":\"string\",\"value\":\"[parameters('foo')]\"},\"bar\":{\"type\":\"string\",\"value\":\"[parameters('bar')]\"}}},\"managedResources\":[],\"provisioningState\":\"succeeded\"},\"systemData\":{\"createdBy\":\"harshpatel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-11-22T20:12:40.5996915Z\",\"lastModifiedBy\":\"harshpatel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-11-22T20:12:40.5996915Z\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\",\"type\":\"Microsoft.Resources/deploymentStacks\",\"name\":\"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l\"}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2bhE1HmzQCmuQWlt%2bTe%2b%2bzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2b1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2fzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2b60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2fGKXPzsiTN49yzlt6Rbrc%2f\"}" + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:36:24.6329286Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:36:24.6329286Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692","type":"Microsoft.Resources/deploymentStacks","name":"ps8692"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T15:06:34.4666682Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T15:07:36.8624014Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T20:19:17.0338745Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T20:20:18.1175672Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAIX%2fC9n2tMpFJ8zELAyY4sQ58TZeltIW1qC0tlwE438fbifn8STfOeei5ORczGmeSWV0UXZeuN6Eykj5KQouR6p6hDlMyZHkRQ%2b2pSA9xI6qLGOJBOUFZblUoR4ncNh%2fAokRJ2BgJDqwhvETsAYWGpqDBPUNXeWCVRQTIdWAIsEkS4reikhWCkSkigk%2fsOZGCQuIMvkCOQVVl%2b4AY0MzDKBZQNMBF6SipH64kxnla5aRfDwdSN%2f%2bl2f7ZbmlYtZq5mJjzkItNRs8n5xOfaddT6carmVNLWGgYdag6UrDduTs9OrAXm3hg92nP0HCrwM3Qt9p4LhL7XmfNLLd6MEZfWA3ahF3wg3h765XLbf72enA%2bOK8yGZvdrYwPadx7RrLYH6YcPFVe1Eem0ta38rd93Fn5fqoQHG001SQFBYE%2f03o3rZXgXL9BQ%3d%3d"}' headers: cache-control: - no-cache content-length: - - '234657' + - '127842' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:11 GMT + - Fri, 18 Nov 2022 17:43:22 GMT expires: - '-1' pragma: @@ -1099,7 +836,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b7adcefc-358d-4ca1-94ed-23cdbfc28e1e + - 7d51b3b0-889f-415e-81ef-4ef0d1ad0085 status: code: 200 message: OK @@ -1107,7 +844,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1115,38 +852,194 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2021-05-01-preview&%24skiptoken=JY7dboIwAEbfhWy7qxRQYSZmYcAUB%2BhE1HmzQCmuQWlt%2BTe%2B%2BzT7ci5Pcr6rVOC29EiRC2lylXZOuIlCaSL9liUTE1k%2Bx0V8xGdclIO4rzgeIHqWRZUIxAkrCS2EHCtJFo%2B1EcjUJANDNVOAMU5GwBgaaKwPM6Spisw4rUmKuZB9gjgVNCsHayxoxREWcorZiXaPSljGKBdvMSOgvtv3wFSFqgLgCEAFMI5rgpuXJ5ETtqE5LqbzoXDN%2FzmmW1Vbwhc91INIX4TwqHepN7tcNKvfzOcwbURDDOqhI2zRfA1T82DtlPpE303ugt2XO0PcbXz7gH6OvmWv4Os%2B60QfKX6Llql96BFzwgizT9upV9v94nKiLGiDfPFh5oHuWJ1tNqnwvdOM8e%2FGKXPzsiTN49yzlt6Rbrc%2F + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAIX/C9n2tMpFJ8zELAyY4sQ58TZeltIW1qC0tlwE438fbifn8STfOeei5ORczGmeSWV0UXZeuN6Eykj5KQouR6p6hDlMyZHkRQ%2B2pSA9xI6qLGOJBOUFZblUoR4ncNh/AokRJ2BgJDqwhvETsAYWGpqDBPUNXeWCVRQTIdWAIsEkS4reikhWCkSkigk/sOZGCQuIMvkCOQVVl%2B4AY0MzDKBZQNMBF6SipH64kxnla5aRfDwdSN/%2Bl2f7ZbmlYtZq5mJjzkItNRs8n5xOfaddT6carmVNLWGgYdag6UrDduTs9OrAXm3hg92nP0HCrwM3Qt9p4LhL7XmfNLLd6MEZfWA3ahF3wg3h765XLbf72enA%2BOK8yGZvdrYwPadx7RrLYH6YcPFVe1Eem0ta38rd93Fn5fqoQHG001SQFBYE/03o3rZXgXL9BQ%3D%3D response: body: - string: '{"value":[{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn/snapshots/2021-11-22-20-22-41-73158","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp/snapshots/2021-11-23-17-18-24-26d26","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm/snapshots/2021-11-23-17-21-41-10fda","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo/snapshots/2021-11-23-17-33-24-43bef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm/snapshots/2021-11-23-17-37-39-6d955","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f/snapshots/2021-11-23-17-38-50-889de","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5/snapshots/2021-11-23-17-41-06-92248","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz/snapshots/2021-11-23-17-42-38-ba2a6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk/snapshots/2021-11-23-17-44-03-9ce80","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2/snapshots/2021-11-23-17-51-59-ff40b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p/snapshots/2021-11-23-17-52-22-3d72e","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj/snapshots/2021-11-23-17-52-30-e1430","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x/snapshots/2021-11-23-17-56-09-844fa","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq/snapshots/2021-11-23-17-56-18-0ce56","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops/snapshots/2021-11-23-17-56-31-0c0df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue/snapshots/2021-11-23-17-56-34-7899c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve/snapshots/2021-11-23-17-56-38-552ef","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5/snapshots/2021-11-23-17-59-27-8d937","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5/snapshots/2021-11-23-18-06-21-55c40","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7/snapshots/2021-11-23-19-25-55-8fd86","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx/snapshots/2021-11-23-19-25-37-ffb78","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit/snapshots/2021-11-23-19-25-59-c950b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme/snapshots/2021-11-23-19-31-44-5240a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t/snapshots/2021-11-24-19-16-36-e6867","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7/snapshots/2021-11-24-19-16-58-c2832","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk/snapshots/2021-11-24-19-16-59-f87dd","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3/snapshots/2021-11-24-19-19-34-88ace","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd/snapshots/2021-11-24-19-31-08-86781","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm/snapshots/2021-11-29-19-13-40-17aac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g/snapshots/2021-11-29-21-42-10-c2009","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g/snapshots/2021-12-07-20-49-53-051df","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut/snapshots/2021-11-29-22-14-59-8a737","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd/snapshots/2021-11-29-22-29-28-b2644","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3/snapshots/2021-12-02-15-00-43-29357","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c/snapshots/2021-12-02-17-53-24-e989d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4/snapshots/2021-12-02-17-53-33-f4862","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v/snapshots/2021-12-02-17-56-03-19895","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd/snapshots/2021-12-07-20-00-51-b5ff5","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub/snapshots/2021-12-08-16-32-43-c2452","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5/snapshots/2021-12-08-17-15-19-2cd64","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6/snapshots/2021-12-08-18-12-17-a4884","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b/snapshots/2021-12-08-18-12-25-34cfc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7/snapshots/2021-12-08-18-12-27-1f788","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if/snapshots/2021-12-08-18-12-30-8c463","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd/snapshots/2021-12-08-18-18-13-d1105","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4/snapshots/2021-12-08-21-56-34-9ba7f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q/snapshots/2021-12-15-18-08-12-2075b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii/snapshots/2021-12-15-19-18-02-c11d3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6/snapshots/2021-12-21-22-24-43-76005","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb/snapshots/2021-12-21-22-39-21-17769","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko/snapshots/2021-12-21-22-46-47-56b9b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle/snapshots/2022-01-05-15-53-43-0f40f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw/snapshots/2022-01-05-15-53-50-4e74f","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz/snapshots/2022-01-05-15-57-25-e6d2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f/snapshots/2022-01-05-16-03-42-c8508","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud/snapshots/2022-01-11-18-36-06-dda2b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd/snapshots/2022-01-14-18-15-27-acdd6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn/snapshots/2022-01-20-17-10-04-cc503","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z/snapshots/2022-01-20-17-35-50-c43db","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk/snapshots/2022-01-21-17-54-52-14e95","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5/snapshots/2022-01-21-18-18-34-422f3","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a/snapshots/2022-01-21-20-29-54-523ac","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2/snapshots/2022-01-21-20-37-38-3d91a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak/snapshots/2022-01-26-00-05-11-e8bab","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf/snapshots/2022-01-28-16-32-13-851e0","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud/snapshots/2022-01-28-16-25-40-dac1c","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub/snapshots/2022-01-31-20-31-45-1b6a8","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-01-31-20-31-45-1b6a8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"next"},"bar":{"value":"one"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:31:44.8448442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca/snapshots/2022-01-31-20-47-02-aa353","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb/snapshots/2022-01-31-20-47-09-1fc68","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd/snapshots/2022-01-31-20-49-55-f898a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7/snapshots/2022-01-31-20-50-04-c02d1","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr/snapshots/2022-01-31-20-50-11-cf3cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm/snapshots/2022-01-31-20-50-11-b3e71","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T20:41:20.4753415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T20:42:21.4238094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T21:11:23.4123304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T21:12:24.6476543Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9","parameters":{"resourceGroups":{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}]}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}]}},"systemData":{"createdBy":"tsunkaraneni@microsoft.com","createdByType":"User","createdAt":"2021-11-16T23:17:33.6981155Z","lastModifiedBy":"tsunkaraneni@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-16T23:31:28.1053874Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit","type":"Microsoft.Resources/deploymentStacks","name":"ghImplicit"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T20:17:25.3276637Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T20:18:26.5874089Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''resource-group'' could not be found.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T20:58:13.256519Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T20:44:40.7588571Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje","type":"Microsoft.Resources/deploymentStacks","name":"hp_prod_sub_create_checje"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T21:02:09.9177231Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T21:03:16.4615691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T20:41:35.3698362Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T20:42:37.6788971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription53xmqc"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:13:15.1673603Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:13:15.1673603Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-hp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T21:01:12.9792533Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T21:02:19.3094872Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T21:08:34.3282811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T21:09:35.8321305Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-19T15:46:36.9976152Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T15:47:38.9223058Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:13:37.2232093Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:13:37.2232093Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-2"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:17:46.80745Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:20:05.9319831Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:24:17.4398839Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:39:53.5762409Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:35:48.7273275Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:36:51.51709Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:12:40.5996915Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:12:40.5996915Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-02-25-19-24-11-02c37","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-25T19:24:11.172495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' for more details.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The template parameters ''foo, bar'' in the parameters file are not valid; they are not present in the original template and can therefore not be provided at deployment time. The only supported parameters for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42/snapshots/2022-01-31-21-09-44-2850a","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp/snapshots/2022-01-31-21-09-44-8c7f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn/snapshots/2022-01-31-21-09-51-7f2c6","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n/snapshots/2022-01-31-21-09-52-1e397","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc","updateBehavior":"detachResources","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.4.1008.15138","templateHash":"18335756685998555005"}},"parameters":{"location":{"type":"string","defaultValue":"centralus"},"storageAccountName":{"type":"string","defaultValue":"uniquestorage001","maxLength":24,"minLength":3}},"functions":[],"resources":[{"type":"Providers.Test/statefulResources","apiVersion":"2014-04-01","name":"[parameters(''storageAccountName'')]","location":"[parameters(''location'')]"}],"outputs":{"storageId":{"type":"string","value":"[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}},"managedResources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' for more details.","details":[{"code":"InvalidTemplate","message":"Deployment template validation failed: ''The template parameters ''foo, bar'' in the parameters file are not valid; they are not present in the original template and can therefore not be provided at deployment time. The only supported parameters for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp/snapshots/2022-01-31-21-15-47-c195b","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v/snapshots/2022-01-31-21-15-47-372f7","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn/snapshots/2022-01-31-21-15-52-4485d","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj/snapshots/2022-01-31-21-15-57-551cf","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty/snapshots/2022-01-31-21-16-00-8a2b9","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l/snapshots/2022-01-31-21-18-51-77cbc","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-18-51-77cbc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:18:51.0633755Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-51-32277","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-18-51-32277","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:51.2245549Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:18:51.2245549Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westus2","properties":{"snapshotId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniqpnwes4cxfv2d5/snapshots/2022-01-31-21-18-57-120fe","updateBehavior":"detachResources","deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-18-57-120fe","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"foo":{"type":"string","defaultValue":"foo","metadata":{"description":"description"}},"bar":{"type":"string","defaultValue":"bar","metadata":{"description":"description"}}},"functions":[],"variables":{},"resources":[],"outputs":{"foo":{"type":"string","value":"[parameters(''foo'')]"},"bar":{"type":"string","value":"[parameters(''bar'')]"}}},"managedResources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:57.2857285Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:18:57.2857285Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniqpnwes4cxfv2d5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniqpnwes4cxfv2d5"}]}' + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAEb%2fC1n2tMrFG5qYpeI9YOYFby%2bmtoV1KC1tAcX436fb93ySc%2fLdjZRetc%2fSRBndu7Edrtbhyuga31oL1TXNC0pRTC801TVU5ZLWML%2bYKj8pLJnQjKfKRPYpQq16E0TOKQINJ7KB2zo1gdtwcavdiHDdsU0hecEIlcoMGJZc8UjXllTxXGKqTELFmd9elpVGOFGfSDBQPOmnoOdYjgMsF1g2EJIWjJbvbyphYs0TmvYmDTWF%2fxvCaZ5vmJxVVnsetmcrK27fiD%2fOsrpXrScTi5SqZK64dnbwiidLi8CDt7WLM%2b9DuQfbxXSM5b4MBgd8jANP%2fRzCzi66qSq0gwqDDTxUWHq3kAjkD4uvZThDOhPkGiSzEUxINfTYYFDO47lve5ncWyPY9xadY%2ba%2f8ozHh4HkBcaxpDHSlPzlP5%2bGy8B4%2fAI%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '105783' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Nov 2022 17:43:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 78922796-6a33-4da3-aa66-71299c2de7b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAEb/C1n2tMrFG5qYpeI9YOYFby%2BmtoV1KC1tAcX436fb93ySc/LdjZRetc/SRBndu7Edrtbhyuga31oL1TXNC0pRTC801TVU5ZLWML%2BYKj8pLJnQjKfKRPYpQq16E0TOKQINJ7KB2zo1gdtwcavdiHDdsU0hecEIlcoMGJZc8UjXllTxXGKqTELFmd9elpVGOFGfSDBQPOmnoOdYjgMsF1g2EJIWjJbvbyphYs0TmvYmDTWF/xvCaZ5vmJxVVnsetmcrK27fiD/OsrpXrScTi5SqZK64dnbwiidLi8CDt7WLM%2B9DuQfbxXSM5b4MBgd8jANP/RzCzi66qSq0gwqDDTxUWHq3kAjkD4uvZThDOhPkGiSzEUxINfTYYFDO47lve5ncWyPY9xadY%2Ba/8ozHh4HkBcaxpDHSlPzlP5%2BGy8B4/AI%3D + response: + body: + string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:31.6976428Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT5.0963878S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp77/snapshots/2022-05-27-18-18-53-83c61'' + for more details. Correlation id: ''2a21bfec-0641-46c5-af29-d041271ae7cf''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''sqlServerName'' at line + ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T15:44:34.5616677Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-27T18:18:51.5771521Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp77","type":"Microsoft.Resources/deploymentStacks","name":"hp77"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-11-17-06-09-dc3dc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.3437174S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:19.5709979Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:08.2890473Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionuyruv3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionuyruv3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-05-36-5884b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT14.3473298S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:34.9404604Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:05:34.9404604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription7je46pkv4ly2w7sdt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription7je46pkv4ly2w7sdt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-11-17-05-59-02f1d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.5794656S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:57.7866312Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:05:57.7866312Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionawdwgojr2azfies","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionawdwgojr2azfies"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-06-09-8433b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.3102277S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:06:08.197594Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:08.197594Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono2u76jatulle7jxhjf","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono2u76jatulle7jxhjf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-06-11-ddf64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.1844204S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:06:09.3601536Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:09.3601536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription4wd5bhjmz6soao5lee","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription4wd5bhjmz6soao5lee"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-11-17-09-08-2aedf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.8135181S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:08:15.9398492Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:07.7562419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription5hi54v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription5hi54v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-08-37-7e9d6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT10.6105923S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:08:35.4317746Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:08:35.4317746Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontds4i2di4gqv4ikk4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontds4i2di4gqv4ikk4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-11-17-09-06-0fa1a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.1000913S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:03.1785622Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:03.1785622Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionny3opsthmn5kvl7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionny3opsthmn5kvl7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-09-11-08ec1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT14.0165756S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:08.9243576Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:08.9243576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionoulsxedw52jvdiqpjn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionoulsxedw52jvdiqpjn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-09-15-a6fb0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.8216339S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:13.4236281Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:13.4236281Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionn23qblpzc27zivvotn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionn23qblpzc27zivvotn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-11-52-2b52e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.009615S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:11:50.1377153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:11:50.1377153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnlqtjrafznkqelasu","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionnlqtjrafznkqelasu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-14-01-9c921","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.7837082S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:13:59.5897268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:13:59.5897268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpuoh26b6axfjpjbgs","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionpuoh26b6axfjpjbgs"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.4349888S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp23/snapshots/2022-04-19-19-53-26-26125'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''411f217a-ffdc-43fe-bf71-24b75e6b2a55''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-19T19:53:24.0334447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:53:24.0334447Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp23","type":"Microsoft.Resources/deploymentStacks","name":"hp23"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT6.175094S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp82/snapshots/2022-04-21-18-57-25-ae0bd'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''0fc50863-9f11-491c-be2f-26bc1813e556''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-21T18:57:22.9382114Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-21T18:57:22.9382114Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp82","type":"Microsoft.Resources/deploymentStacks","name":"hp82"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4306-2022-04-22-16-48-19-6e0e2","duration":"PT23.6963395S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:46:37.4846781Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:48:18.2376819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4306","type":"Microsoft.Resources/deploymentStacks","name":"ps4306"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4441-2022-04-22-16-51-09-f271e","duration":"PT26.0686067S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2399/providers/Microsoft.Resources/templateSpecs/ps2494/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:50:33.598735Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:51:08.7092523Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4441","type":"Microsoft.Resources/deploymentStacks","name":"ps4441"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8719-2022-04-22-16-53-52-88805","duration":"PT31.0064039S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:53:50.4870495Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:53:50.4870495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8719","type":"Microsoft.Resources/deploymentStacks","name":"ps8719"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1307-2022-04-22-16-55-15-023dd","duration":"PT29.0285475S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:55:12.7052984Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:55:12.7052984Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1307","type":"Microsoft.Resources/deploymentStacks","name":"ps1307"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3275-2022-04-22-17-03-16-899fe","duration":"PT25.4700707S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:02:41.1244637Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:03:15.1082627Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3275","type":"Microsoft.Resources/deploymentStacks","name":"ps3275"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2022-2022-04-22-17-08-10-c1758","duration":"PT9.3108048S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"bar":{"value":"xyz"},"foo":{"value":"abc"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:08:07.8577681Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:08:07.8577681Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2022","type":"Microsoft.Resources/deploymentStacks","name":"ps2022"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1913-2022-04-22-17-31-58-8ecee","duration":"PT26.4054684S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:30:23.5098344Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:31:56.7883282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1913","type":"Microsoft.Resources/deploymentStacks","name":"ps1913"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5815-2022-04-22-17-34-13-629ba","duration":"PT27.825526S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8794/providers/Microsoft.Resources/templateSpecs/ps283/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:33:25.815992Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:34:12.9983797Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5815","type":"Microsoft.Resources/deploymentStacks","name":"ps5815"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps832-2022-04-22-17-37-11-73ef9","duration":"PT30.1533737S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:37:09.0011353Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:37:09.0011353Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps832","type":"Microsoft.Resources/deploymentStacks","name":"ps832"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8224-2022-04-22-17-38-26-a1b80","duration":"PT32.0832653S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:38:24.0548236Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:38:24.0548236Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8224","type":"Microsoft.Resources/deploymentStacks","name":"ps8224"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5967-2022-04-25-17-00-49-29ee3","duration":"PT30.705107S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T16:55:03.7751295Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:00:46.5883527Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5967","type":"Microsoft.Resources/deploymentStacks","name":"ps5967"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1886-2022-04-25-17-02-47-b923e","duration":"PT27.2589278S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8033/providers/Microsoft.Resources/templateSpecs/ps1794/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:02:07.7242282Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:02:45.470847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1886","type":"Microsoft.Resources/deploymentStacks","name":"ps1886"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2292-2022-04-25-17-05-31-ded65","duration":"PT31.3371289S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:05:28.4068234Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:05:28.4068234Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2292","type":"Microsoft.Resources/deploymentStacks","name":"ps2292"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2994-2022-04-25-17-06-45-05ecf","duration":"PT27.2821172S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:06:43.0639185Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:06:43.0639185Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2994","type":"Microsoft.Resources/deploymentStacks","name":"ps2994"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9521-2022-04-25-17-14-25-5f3bb","duration":"PT26.7493798S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:13:52.3029272Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:14:24.7369532Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9521","type":"Microsoft.Resources/deploymentStacks","name":"ps9521"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2090-2022-04-25-17-22-25-70ea1","duration":"PT12.0704318S","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26669"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2090/snapshots/2022-04-25-17-22-25-70ea1'' + for more details.","details":[{"code":"DeploymentFailed","message":"At least + one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:22:23.3588989Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:22:23.3588989Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2090","type":"Microsoft.Resources/deploymentStacks","name":"ps2090"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9456-2022-04-25-18-36-57-b58e4","duration":"PT25.5752395S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:35:09.0556409Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:36:55.1551166Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9456","type":"Microsoft.Resources/deploymentStacks","name":"ps9456"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1667-2022-04-25-18-38-51-288d4","duration":"PT27.0929961S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4008/providers/Microsoft.Resources/templateSpecs/ps6226/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:38:15.3633486Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:38:50.4274414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1667","type":"Microsoft.Resources/deploymentStacks","name":"ps1667"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6461-2022-04-25-18-41-35-25f36","duration":"PT29.6086821S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:41:32.3821421Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:41:32.3821421Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6461","type":"Microsoft.Resources/deploymentStacks","name":"ps6461"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5986-2022-04-25-18-42-54-b2f45","duration":"PT32.3488547S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:42:51.7871722Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:42:51.7871722Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5986","type":"Microsoft.Resources/deploymentStacks","name":"ps5986"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7543-2022-04-25-18-51-57-40c41","duration":"PT27.9803613S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:51:17.1733876Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:51:54.3634901Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7543","type":"Microsoft.Resources/deploymentStacks","name":"ps7543"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1458-2022-04-25-18-58-47-b449d","duration":"PT11.0873053S","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1458/snapshots/2022-04-25-18-58-47-b449d'' + for more details.","details":[{"code":"DeploymentFailed","message":"At least + one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:58:45.4438949Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:58:45.4438949Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1458","type":"Microsoft.Resources/deploymentStacks","name":"ps1458"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/138-2022-05-03-15-28-20-9c41a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.5683401S","outputs":{"storageAccountName":{"type":"String","value":"deploymentscopetest"},"storageAccountName2":{"type":"String","value":"deploymentscopetest2"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest2/providers/Microsoft.Authorization/locks/MySiteLock"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-28T15:34:54.6527163Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-03T15:28:19.3881678Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/138","type":"Microsoft.Resources/deploymentStacks","name":"138"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-29-19-18-40-e7ed3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.505281S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-29T19:18:37.5350519Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T19:18:37.5350519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionz6g2vuwbhp7fmt5io","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionz6g2vuwbhp7fmt5io"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-29-19-33-32-ff4ce","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.9340789S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-29T19:32:21.7900515Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T19:33:32.0280202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondmgvvw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondmgvvw"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT3.2123482S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/test/snapshots/2022-05-02-19-29-16-14593'' + for more details. Correlation id: ''7309e325-1184-4262-b29e-c7f55bea232c''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''Template schema ''https://schema.management.azure.com/schemas/2021-05-01/deploymentTemplate.json#'' + is not supported. Supported versions are ''2014-04-01-preview,2015-01-01,2018-05-01,2019-04-01,2019-08-01''. + Please see https://aka.ms/arm-template for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":4,"linePosition":98,"path":"properties.template.$schema"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-05-02T19:27:11.4571246Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-02T19:29:15.1538791Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/test","type":"Microsoft.Resources/deploymentStacks","name":"test"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg_9-2022-09-26-16-20-08-0fd67","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT31.0501257S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9/snapshots/2022-09-26-16-20-08-0fd67'' + for more details. Correlation id: ''af5a19f7-4daa-4a57-9285-41698413c9a5''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"message":"No + HTTP resource was found that matches the request URI ''https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/delete_all_rg?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:05.958234Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:05.958234Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-09-26-16-47-14-d493f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.1915998S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:47:12.3295438Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:47:12.3295438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription7aynifdnb5o32wy3b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription7aynifdnb5o32wy3b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/trackedRGHP-2022-09-26-17-34-48-77a36","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT4M21.518069S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP"}],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T17:25:51.184283Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T17:34:47.5970069Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/trackedRGHP","type":"Microsoft.Resources/deploymentStacks","name":"trackedRGHP"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Resources/deployments/trackedRGHP2-2022-09-26-17-40-21-f9767","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","duration":"PT6M25.7125642S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Resources/templateSpecs/wave"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel4"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T17:37:43.244932Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T17:40:20.437079Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/trackedRGHP2","type":"Microsoft.Resources/deploymentStacks","name":"trackedRGHP2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-26-18-44-07-fe03d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","duration":"PT20.5842006S","parameters":{"rgname":{"value":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij"},"tsname":{"value":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:05.1416959Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:05.1416959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionj3uf6k5wdpltres","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionj3uf6k5wdpltres"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9176-2022-09-29-17-48-20-dc0b3","duration":"PT10.5021189S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9176/snapshots/2022-09-29-17-48-20-dc0b3'' + for more details. Correlation id: ''eb5901b5-dbe7-4f31-980c-5d3e4c2f999c''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T17:48:16.3934247Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T17:48:16.3934247Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9176","type":"Microsoft.Resources/deploymentStacks","name":"ps9176"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/rname-2022-09-29-17-53-53-c6692","duration":"PT9.8309056S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rname/snapshots/2022-09-29-17-53-53-c6692'' + for more details. Correlation id: ''604554ce-7b3d-427b-abda-d737afab3673''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T17:53:50.0219942Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T17:53:50.0219942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rname","type":"Microsoft.Resources/deploymentStacks","name":"rname"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6607-2022-09-29-18-16-34-5443d","duration":"PT10.7104429S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6607/snapshots/2022-09-29-18-16-34-5443d'' + for more details. Correlation id: ''1468979d-9248-4f86-b789-9e49fec1772c''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T18:16:30.6584934Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T18:16:30.6584934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6607","type":"Microsoft.Resources/deploymentStacks","name":"ps6607"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps311-2022-09-29-19-26-43-f5333","duration":"PT11.1852537S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps311/snapshots/2022-09-29-19-26-43-f5333'' + for more details. Correlation id: ''d7ee5cbd-c1f5-4e24-96e3-669e57b58be4''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"RoleDefinitionLimitExceeded","message":"Role + definition limit exceeded. No more role definitions can be created."}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T19:26:39.5039157Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T19:26:39.5039157Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps311","type":"Microsoft.Resources/deploymentStacks","name":"ps311"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1272-2022-09-29-20-08-21-68e7e","duration":"PT8.8745404S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:08:18.5062505Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:08:18.5062505Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1272","type":"Microsoft.Resources/deploymentStacks","name":"ps1272"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1292-2022-09-29-20-10-24-2677c","duration":"PT10.0211213S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:10:21.2044074Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:10:21.2044074Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1292","type":"Microsoft.Resources/deploymentStacks","name":"ps1292"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2395-2022-09-29-20-18-32-eb1f3","duration":"PT10.1153363S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:18:29.2038306Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:18:29.2038306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2395","type":"Microsoft.Resources/deploymentStacks","name":"ps2395"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1437-2022-09-29-20-55-10-992de","duration":"PT9.6629483S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:55:07.1552838Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:55:07.1552838Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1437","type":"Microsoft.Resources/deploymentStacks","name":"ps1437"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3697-2022-09-29-20-59-18-ff07e","duration":"PT7.6068354S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:58:59.0460377Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:59:17.4247133Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3697","type":"Microsoft.Resources/deploymentStacks","name":"ps3697"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4987-2022-09-29-21-03-39-71f4c","duration":"PT8.1566476S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T21:03:20.5426523Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T21:03:38.4199538Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4987","type":"Microsoft.Resources/deploymentStacks","name":"ps4987"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6728-2022-09-30-16-06-51-dd76d","duration":"PT7.7596451S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-30T16:06:25.054911Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-30T16:06:50.0217499Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6728","type":"Microsoft.Resources/deploymentStacks","name":"ps6728"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-15-49-10-d5e06","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","duration":"PT21.7560333S","parameters":{"rgname":{"value":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b"},"tsname":{"value":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:08.4192544Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:08.4192544Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionkla64dpkjtekqlr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionkla64dpkjtekqlr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3545-2022-10-27-15-37-33-3cacb","duration":"PT11.3230296S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps1961/providers/Microsoft.Resources/templateSpecs/ps323/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3545/snapshots/2022-10-27-15-37-33-3cacb'' + for more details. Correlation id: ''71896f95-2b7e-4b81-a084-3ed3324cbf8c''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''StacksTestRGiyrmpdcyfhgl6'' could not be found."}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:37:28.7957759Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:37:28.7957759Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3545","type":"Microsoft.Resources/deploymentStacks","name":"ps3545"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4476-2022-10-27-15-40-23-1fd56","duration":"PT8.4024741S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:39:59.3336413Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:40:21.6001638Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4476","type":"Microsoft.Resources/deploymentStacks","name":"ps4476"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2600-2022-10-27-15-40-42-a26b9","duration":"PT23.4755593S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:40:38.8519053Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:40:38.8519053Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2600","type":"Microsoft.Resources/deploymentStacks","name":"ps2600"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation-2022-11-02-15-11-55-72693","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6.9967863S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedPrincipals":["7c1752e8-668a-4aed-9405-20d1e9daf1e6"]},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-02T15:07:01.4801558Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-02T15:11:54.0026423Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_2-2022-11-03-16-35-30-42dfa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT31.9224311S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-02T15:10:47.4355981Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:35:29.2845863Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_3-2022-11-03-16-35-43-c828c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8M55.1244079S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"deletedResources":[],"failedResources":[{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The + client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' + has permission to perform action ''Providers.Test/statefulResources/delete'' + on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6''; + however, the access is denied because of the deny assignment with name ''Deny + assignment ''956788b5-e25c-cee3-1192-252580cd6937'' created by Deployment + Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_4''.'' + and Id ''956788b5e25ccee31192252580cd6937'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The + client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' + has permission to perform action ''Providers.Test/statefulResources/delete'' + on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7''; + however, the access is denied because of the deny assignment with name ''Deny + assignment ''458d9276-e99d-d46f-9fee-924b27d058df'' created by Deployment + Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_2''.'' + and Id ''458d9276e99dd46f9fee924b27d058df'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"error":{"code":"DeploymentStackDeleteFailed","message":"One + or more stages of deploymentStack deletion failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3/snapshots/2022-11-03-16-38-14-c6537'' + for more details. Correlation id: ''6c457a1b-e929-42f0-b299-0e408917a60a''","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"One + or more resources could not be deleted. Refer to failed resources of snapshot + ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3/snapshots/2022-11-03-16-38-14-c6537'' + for more details.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An + unknown error occurred while trying to delete resources. These resources are + still present in the stack but can be deleted manually."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:35:40.6964229Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:35:40.6964229Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_4-2022-11-03-16-40-35-fc335","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT11.762819S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:40:33.0681835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:40:33.0681835Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_5-2022-11-03-16-46-01-2e0fd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.6762159S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedPrincipals":["7c1752e8-668a-4aed-9405-20d1e9daf1e6"]},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:41:34.2429594Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:45:59.9578596Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_10-2022-11-07-23-01-46-cbb0c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6M55.4791159S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T22:49:55.0248823Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:01:45.7935127Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_10","type":"Microsoft.Resources/deploymentStacks","name":"misc_10"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_11-2022-11-07-23-02-00-6b52e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT1M45.9466554S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_11/snapshots/2022-11-07-23-02-00-6b52e'' + for more details. Correlation id: ''879b19c3-e361-4385-978d-102b2919439a''","details":[{"code":"DeploymentFailed","message":"Could + not deploy the specified template successfully. DeploymentId ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_11-2022-11-07-23-02-00-6b52e'' + was canceled."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:01:57.5407868Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:01:57.5407868Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_11","type":"Microsoft.Resources/deploymentStacks","name":"misc_11"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_12-2022-11-07-23-13-07-c2f39","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.788458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsa12"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:13:04.0313262Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:13:04.0313262Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_12","type":"Microsoft.Resources/deploymentStacks","name":"misc_12"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_13-2022-11-07-23-14-35-b6848","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.1095473S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsa12"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:32.7471811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:32.7471811Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_13","type":"Microsoft.Resources/deploymentStacks","name":"misc_13"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_14-2022-11-07-23-17-03-0d0de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT5.5337977S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:16:04.2198436Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:17:02.4614826Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_14","type":"Microsoft.Resources/deploymentStacks","name":"misc_14"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_15-2022-11-07-23-23-41-7813e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT33.118398S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsaya4ieas2hwqse"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:23:38.1823385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:23:38.1823385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_15","type":"Microsoft.Resources/deploymentStacks","name":"misc_15"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT4.4528846S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_16/snapshots/2022-11-07-23-26-30-f4b8e'' + for more details. Correlation id: ''cbb0a607-9c93-4f1b-8a39-839d80389078''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse'' + at line ''40'' and column ''9'' is defined multiple times in a template. Please + see https://aka.ms/arm-template/#resources for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":40,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:26:27.1893369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:26:27.1893369Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_16","type":"Microsoft.Resources/deploymentStacks","name":"misc_16"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_17-2022-11-14-21-57-48-ae42a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6.4730847S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:28:18.0835118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T21:57:46.7942297Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_17","type":"Microsoft.Resources/deploymentStacks","name":"misc_17"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStack-2022-11-17-23-11-44-6dde9","duration":"PT10.5007301S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-14T21:11:15.4433745Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T23:11:41.3794663Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStack"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check1-2022-11-18-17-15-29-d2382","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.8619026S","denySettings":{"mode":"none","applyToChildScopes":true},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-14T22:09:29.4800338Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:15:25.6900711Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check1","type":"Microsoft.Resources/deploymentStacks","name":"check1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-11-18-17-42-58-e1c21","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.1891742S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:42:54.9836572Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:42:54.9836572Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"}]}' headers: cache-control: - no-cache content-length: - - '141107' + - '112537' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:11 GMT + - Fri, 18 Nov 2022 17:43:24 GMT expires: - '-1' pragma: @@ -1158,7 +1051,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 9a788e81-7fe0-4fd8-81d2-97af1f92ed3b + - f265715d-41e9-4f85-bd38-d4c18fdb5547 status: code: 200 message: OK @@ -1176,44 +1069,41 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-01-31-21-18-51-32277\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-18-51-32277\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-11-18-17-42-58-e1c21\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:51.2245549Z\",\r\n + \ \"duration\": \"PT9.1891742S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:42:54.9836572Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:51.2245549Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:42:54.9836572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2171' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:12 GMT + - Fri, 18 Nov 2022 17:43:29 GMT expires: - '-1' pragma: @@ -1247,9 +1137,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1259,7 +1150,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:19:12 GMT + - Fri, 18 Nov 2022 17:43:30 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index eb167e3df5d..6f26dde81d3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:53 GMT + - Fri, 18 Nov 2022 18:53:41 GMT expires: - '-1' pragma: @@ -50,8 +51,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -62,49 +64,43 @@ interactions: Connection: - keep-alive Content-Length: - - '642' + - '725' Content-Type: - application/json ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"updateBehavior\": \"detachResources\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9ef3ace7-1ece-448d-b130-ff3556cf6654?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53447571-c087-40b4-8198-de9eb87d34bf?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1731' + - '1150' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:18:53 GMT + - Fri, 18 Nov 2022 18:53:41 GMT expires: - '-1' pragma: @@ -116,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -132,15 +128,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9ef3ace7-1ece-448d-b130-ff3556cf6654?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53447571-c087-40b4-8198-de9eb87d34bf?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9ef3ace7-1ece-448d-b130-ff3556cf6654\",\r\n - \ \"name\": \"9ef3ace7-1ece-448d-b130-ff3556cf6654\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53447571-c087-40b4-8198-de9eb87d34bf\",\r\n + \ \"name\": \"53447571-c087-40b4-8198-de9eb87d34bf\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:10 GMT + - Fri, 18 Nov 2022 18:53:59 GMT expires: - '-1' pragma: @@ -179,44 +176,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --update-behavior --template-file --parameters + - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n + \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2216' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:11 GMT + - Fri, 18 Nov 2022 18:53:59 GMT expires: - '-1' pragma: @@ -248,42 +242,39 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n + \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2216' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:11 GMT + - Fri, 18 Nov 2022 18:54:01 GMT expires: - '-1' pragma: @@ -315,42 +306,39 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n + \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2216' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:12 GMT + - Fri, 18 Nov 2022 18:54:01 GMT expires: - '-1' pragma: @@ -382,42 +370,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"snapshotId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/snapshots/2022-01-31-21-18-53-95311\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-01-31-21-18-53-95311\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:18:53.9076724Z\",\r\n + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n + \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:18:53.9076724Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2216' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:13 GMT + - Fri, 18 Nov 2022 18:54:02 GMT expires: - '-1' pragma: @@ -451,9 +436,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -463,7 +449,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:19:13 GMT + - Fri, 18 Nov 2022 18:54:03 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index 4ca03b726c7..22dc47b13ad 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -28,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:14 GMT + - Fri, 18 Nov 2022 17:36:47 GMT expires: - '-1' pragma: @@ -49,8 +50,9 @@ interactions: "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "updateBehavior": - "detachResources", "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -61,50 +63,44 @@ interactions: Connection: - keep-alive Content-Length: - - '739' + - '822' Content-Type: - application/json ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"updateBehavior\": - \"detachResources\",\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"initializing\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-11-18T17:36:48.6960486Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f760f4bb-9459-4893-aaa9-da3eeabf1919?api-version=2021-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8d25179-9fe0-41d0-9ac9-032bee425ce8?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1782' + - '1201' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:15 GMT + - Fri, 18 Nov 2022 17:36:52 GMT expires: - '-1' pragma: @@ -116,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -132,15 +128,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f760f4bb-9459-4893-aaa9-da3eeabf1919?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8d25179-9fe0-41d0-9ac9-032bee425ce8?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f760f4bb-9459-4893-aaa9-da3eeabf1919\",\r\n - \ \"name\": \"f760f4bb-9459-4893-aaa9-da3eeabf1919\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8d25179-9fe0-41d0-9ac9-032bee425ce8\",\r\n + \ \"name\": \"f8d25179-9fe0-41d0-9ac9-032bee425ce8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:33 GMT + - Fri, 18 Nov 2022 17:37:09 GMT expires: - '-1' pragma: @@ -179,46 +176,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --update-behavior --template-file --parameters + - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n + \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2168' + - '1593' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:33 GMT + - Fri, 18 Nov 2022 17:37:09 GMT expires: - '-1' pragma: @@ -250,44 +244,41 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n + \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2168' + - '1593' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:34 GMT + - Fri, 18 Nov 2022 17:37:11 GMT expires: - '-1' pragma: @@ -319,44 +310,41 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n + \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2168' + - '1593' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:35 GMT + - Fri, 18 Nov 2022 17:37:14 GMT expires: - '-1' pragma: @@ -388,44 +376,41 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-01-31-21-19-16-7fc75\",\r\n - \ \"updateBehavior\": \"detachResources\",\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-19-16-7fc75\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n },\r\n \"managedResources\": [],\r\n \"provisioningState\": - \"succeeded\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-31T21:19:15.6035138Z\",\r\n + \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-01-31T21:19:15.6035138Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2168' + - '1593' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Jan 2022 21:19:36 GMT + - Fri, 18 Nov 2022 17:37:16 GMT expires: - '-1' pragma: @@ -459,9 +444,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2021-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -471,7 +457,7 @@ interactions: content-length: - '0' date: - - Mon, 31 Jan 2022 21:19:36 GMT + - Fri, 18 Nov 2022 17:37:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index e4b596c196d..e4a591b43d0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2118,25 +2118,25 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # deploy to rg - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # create deployment stack with bicep file and rg scope - self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" -g {resource-group}', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" -g {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2145,10 +2145,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('az group create --location {location} --name {resource-group-two}') # create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2157,7 +2157,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group-two} --resource-type {resource-type-specs}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2175,10 +2175,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub delete --name {name} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2187,7 +2187,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-two}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2206,7 +2206,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2215,7 +2215,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file}" --delete-all', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) @@ -2240,7 +2240,7 @@ def test_show_deployment_stack_subscription(self): }) - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2268,7 +2268,7 @@ def test_list_deployment_stack_subscription(self): }) - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() @@ -2309,7 +2309,7 @@ def test_delete_deployment_stack_subscription(self): }) # create stack - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) @@ -2321,7 +2321,7 @@ def test_delete_deployment_stack_subscription(self): #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id - created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) @@ -2416,16 +2416,16 @@ def test_export_template_deployment_stack_subscription(self): }) - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # show stack with stack name - self.cmd('stack sub exportTemplate --name {name}') + self.cmd('stack sub export --name {name}') # show stack with stack id - self.cmd('stack sub exportTemplate --id {deployment-stack-id}') + self.cmd('stack sub export --id {deployment-stack-id}') # show stack with stack name self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) @@ -2471,28 +2471,28 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # create deployment stack with bicep file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # test flag: delete--resources, create deployment stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack, default actionOnUnmanage settings should be detached - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check that resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group} --resource-type {resource-type-specs}') @@ -2501,7 +2501,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group} --resource-type {resource-type-specs}') # update stack with resource3 with delete-resources flag - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check that resource3 exists in Azure self.cmd('resource show -n {resource-three} -g {resource-group} --resource-type {resource-type-specs}') @@ -2516,7 +2516,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 1)) @@ -2525,7 +2525,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) @@ -2544,13 +2544,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) #confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) @@ -2573,7 +2573,7 @@ def test_show_deployment_stack_resource_group(self, resource_group): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2600,7 +2600,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks in rg list_deployment_stacks_rg = self.cmd('stack group list --resource-group {resource-group}').get_output_in_json() @@ -2638,7 +2638,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): }) # create stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2649,7 +2649,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id':stack_id}) @@ -2666,7 +2666,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack with resource1 to check if resources are being detached on delete - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack set to (default) detach self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') @@ -2675,7 +2675,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') # create stack with resource2 to check if resources are being detached on delete - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource2 set to delete self.cmd('stack group delete -g {resource-group-two} --name {name} --delete-resources --yes') @@ -2741,16 +2741,16 @@ def test_export_template_deployment_stack_resource_group(self, resource_group): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) # export stack with stack name - self.cmd('stack group exportTemplate --name {name} --resource-group {resource-group}') + self.cmd('stack group export --name {name} --resource-group {resource-group}') # export stack with stack id - self.cmd('stack group exportTemplate --id {deployment-stack-id}') + self.cmd('stack group export --id {deployment-stack-id}') # show stack with stack name self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2822,7 +2822,7 @@ def test_create_deployment_stack_management_group(self, resource_group): self.cmd('group show -n {resource-two}') # update stack with resource3 set to delete - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') From 5b618b07d3b20b0f55f346ae047bc547ae28a671 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Dec 2022 17:19:07 -0500 Subject: [PATCH 077/139] Removed data plan & minor changes --- .../cli/command_modules/resource/_params.py | 2 +- .../cli/command_modules/resource/commands.py | 8 ++--- .../cli/command_modules/resource/custom.py | 33 ++++--------------- 3 files changed, 11 insertions(+), 32 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index ceb1c6c56e9..d18fb32069c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -104,7 +104,7 @@ def load_arguments(self, _): stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(help='Defines how resources deployed by the deployment stack are locked.') + stacks_deny_settings_mode = CLIArgumentType(help='Defines which operations are denied on resources managed by the stack: denyWrite or denyWriteAndDelete.') stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 52b4dfe8368..b18a5764ffe 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -112,7 +112,7 @@ def transform_stacks_list(result): def transform_stacks_export(result): r = result - return OrderedDict([('$scheme', r['template']['$schema']), + return OrderedDict([('$schema', r['template']['$schema']), ('ContentVersion', r['template']['contentVersion'])]) # pylint: disable=too-many-statements @@ -399,21 +399,21 @@ def load_command_table(self, _): g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_management_group') - g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks, confirmation=True) + g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') - g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks, confirmation=True) + g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_subscription', table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group') - g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks, confirmation=True) + g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_resource_group', table_transformer=transform_stacks_export) # az deployment group diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index f74fdd8f171..ea5ca0a99e6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,7 +2055,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2088,13 +2088,6 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource else: excluded_principals_array = None - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None - if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2145,7 +2138,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = apply_to_child_scopes) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2248,7 +2241,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2281,13 +2274,6 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ else: excluded_principals_array = None - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None - if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2329,7 +2315,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) #removed the following code because it is not in service yet, need to add this back eventually apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = apply_to_child_scopes) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2443,7 +2429,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_excluded_actions = None, deny_settings_apply_to_child_scopes = False): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2476,13 +2462,6 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, else: excluded_principals_array = None - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None - if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2528,7 +2507,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, excluded_actions = excluded_actions_array, apply_to_child_scopes = apply_to_child_scopes) + deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() From 8f89b88eba0f1ab35f289a290f01abc48536703e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 3 Jan 2023 19:54:16 -0500 Subject: [PATCH 078/139] time changes regarding output table --- .../cli/command_modules/resource/commands.py | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index b18a5764ffe..2a815593f19 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -102,10 +102,25 @@ def transform_stacks(result): ('Last Modified', r['systemData']['lastModifiedAt']), ('Deployment Id', r['deploymentId'])]) +def transform_stacks_show(result): + r = result + resources = "" + for res in result['resources']: + resources += res['id'] + "," + + return OrderedDict([('Name', r['name']), + ('State', r['provisioningState']), + ('Last Modified', r['systemData']['lastModifiedAt']), + ('Resource IDs', resources[:-1])]) + def transform_stacks_list(result): transformed = [] for r in result: - res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Deployment Id', r['deploymentId'])]) + resources = "" + for reslist in r['resources']: + resources += reslist['id'] + "," + + res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Resource IDs', resources[:-1])]) transformed.append(res) return transformed @@ -403,7 +418,7 @@ def load_command_table(self, _): g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) + g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks_show) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) From 744d6623771dcd2eb48cc3fe3adacc0d0a63612d Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 9 Jan 2023 15:35:47 -0500 Subject: [PATCH 079/139] Version 1.6, all tested --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index e4192106937..cf64904ff15 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.6) Manage deployment stacks at subscription or resource group scope, this version contains applyToChildScopes & confirmation for deny settings on PUTs have been added +short-summary: (Version 1.7) """ helps['stack mg create'] = """ From 6ed18ba1c2ebb2707934038f8877f7b398cc7321 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 9 Jan 2023 15:36:20 -0500 Subject: [PATCH 080/139] Version 1.6, all tested with test yaml files --- ...ate_deployment_stack_management_group.yaml | 911 ++++-- ...reate_deployment_stack_resource_group.yaml | 2713 +++++++-------- ..._create_deployment_stack_subscription.yaml | 2913 ++++++++--------- ...ete_deployment_stack_management_group.yaml | 607 ++-- ...elete_deployment_stack_resource_group.yaml | 2080 +++++------- ..._delete_deployment_stack_subscription.yaml | 2318 +++++++------ ...ate_deployment_stack_management_group.yaml | 206 +- ...plate_deployment_stack_resource_group.yaml | 187 +- ...emplate_deployment_stack_subscription.yaml | 179 +- ..._list_deployment_stack_resource_group.yaml | 147 +- ...st_list_deployment_stack_subscription.yaml | 1057 ++---- ...how_deployment_stack_management_group.yaml | 295 +- ..._show_deployment_stack_resource_group.yaml | 192 +- ...st_show_deployment_stack_subscription.yaml | 176 +- 14 files changed, 6517 insertions(+), 7464 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml index fdf77ec9bd0..27a00ce300d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml @@ -13,8 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -30,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:24 GMT + - Mon, 09 Jan 2023 20:13:57 GMT expires: - '-1' pragma: @@ -44,7 +43,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: A7C1412E3A2447C6BA1D783385E6FD1B Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:24Z' + - 'Ref A: 1EBEC6FBB6E24458817D2772F0158B1A Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:13:57Z' status: code: 404 message: Not Found @@ -62,8 +61,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -79,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:24 GMT + - Mon, 09 Jan 2023 20:13:57 GMT expires: - '-1' pragma: @@ -93,7 +91,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 717FB52CDC1B4A33BEE15C63CD8A7125 Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:25Z' + - 'Ref A: BFFCAA01573E45DCA14D5875524AFBB1 Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:13:57Z' status: code: 404 message: Not Found @@ -115,17 +113,16 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:25.3997048Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:00.2905459Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:25.3997048Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:00.2905459Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -136,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:25 GMT + - Mon, 09 Jan 2023 20:14:01 GMT expires: - '-1' pragma: @@ -148,9 +145,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' x-msedge-ref: - - 'Ref A: C8D52AFF15834FD388B77F0DAE9A5DE4 Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:25Z' + - 'Ref A: A1CEE96130CC48FEBF5D714058A72EF6 Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:13:58Z' status: code: 201 message: Created @@ -178,8 +175,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -197,9 +193,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:25.9465689Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:03.6038462Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:25.9465689Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:03.6038462Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -211,7 +207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:26 GMT + - Mon, 09 Jan 2023 20:14:04 GMT expires: - '-1' pragma: @@ -223,9 +219,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' x-msedge-ref: - - 'Ref A: 8E98349A74A04003A43DB841C9B88B21 Ref B: MIA301000107037 Ref C: 2022-10-21T17:49:25Z' + - 'Ref A: 2C0C4D89598C4F6A9A2EEBA2BBC7AE42 Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:14:01Z' status: code: 201 message: Created @@ -243,8 +239,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -259,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:25 GMT + - Mon, 09 Jan 2023 20:14:05 GMT expires: - '-1' pragma: @@ -273,7 +268,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 94ACB04D006F4394B390C7F13FEB71CF Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:26Z' + - 'Ref A: 7A33842B5C194305B34B11748DDEC16A Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:05Z' status: code: 404 message: Not Found @@ -286,7 +281,7 @@ interactions: "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {}}}' + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -297,14 +292,13 @@ interactions: Connection: - keep-alive Content-Length: - - '795' + - '822' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -320,13 +314,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-21T17:49:26.8869942Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:26.8869942Z\"\r\n + \"2023-01-09T20:14:07.2396314Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:07.2396314Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7b08973b-0243-4231-9f13-3b5a3f757818?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -334,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:26 GMT + - Mon, 09 Jan 2023 20:14:09 GMT expires: - '-1' pragma: @@ -346,9 +340,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1197' + - '1199' x-msedge-ref: - - 'Ref A: 313978FE17D74B079A9742688BE30412 Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:26Z' + - 'Ref A: 09DBC3D2B9574609A84301F229EFCCAC Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:05Z' status: code: 201 message: Created @@ -366,14 +360,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7b08973b-0243-4231-9f13-3b5a3f757818?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7b08973b-0243-4231-9f13-3b5a3f757818\",\r\n - \ \"name\": \"7b08973b-0243-4231-9f13-3b5a3f757818\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4\",\r\n + \ \"name\": \"1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -382,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:43 GMT + - Mon, 09 Jan 2023 20:14:26 GMT expires: - '-1' pragma: @@ -394,7 +387,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FE87C5D99E9440FDA4519D40BC50DBC8 Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:44Z' + - 'Ref A: C86E94C73538446A88BBCDCBCB798D94 Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:26Z' status: code: 200 message: OK @@ -412,8 +405,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -421,9 +413,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-27-945de\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-07-6d0c0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.8504723S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.5668858S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -433,20 +425,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:26.8869942Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:07.2396314Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:26.8869942Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:07.2396314Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1611' + - '1612' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:44 GMT + - Mon, 09 Jan 2023 20:14:27 GMT expires: - '-1' pragma: @@ -458,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8C2B9683CF604F46959B3A453EB3B787 Ref B: MIAEDGE2812 Ref C: 2022-10-21T17:49:45Z' + - 'Ref A: E2EBA2AF669B44E8B5E009B61096C26F Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:27Z' status: code: 200 message: OK @@ -476,8 +468,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -485,9 +476,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-27-945de\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-07-6d0c0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.8504723S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.5668858S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -497,20 +488,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:26.8869942Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:07.2396314Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:26.8869942Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:07.2396314Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1611' + - '1612' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:45 GMT + - Mon, 09 Jan 2023 20:14:28 GMT expires: - '-1' pragma: @@ -522,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0C301A9CC64848C486E50F637637BCF9 Ref B: MIAEDGE2316 Ref C: 2022-10-21T17:49:45Z' + - 'Ref A: 2A781F84D7504A9BB19FFCCD8150327A Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:14:28Z' status: code: 200 message: OK @@ -542,8 +533,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -555,7 +545,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 17:49:45 GMT + - Mon, 09 Jan 2023 20:14:29 GMT expires: - '-1' pragma: @@ -567,9 +557,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14997' + - '14999' x-msedge-ref: - - 'Ref A: CB3F94D964D94EA18DB1AD6F5F67D82C Ref B: MIAEDGE2316 Ref C: 2022-10-21T17:49:46Z' + - 'Ref A: E53E92A6CF85435EA5F5FBA72D6FF2C2 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:14:29Z' status: code: 200 message: OK @@ -587,8 +577,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -603,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:46 GMT + - Mon, 09 Jan 2023 20:14:30 GMT expires: - '-1' pragma: @@ -617,7 +606,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E0E3F47A155A454197D19C38DE3D4209 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:49:46Z' + - 'Ref A: AE2C3382BF0045F9830B964664C1C665 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:31Z' status: code: 404 message: Not Found @@ -635,8 +624,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -654,9 +642,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:25.9465689Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:03.6038462Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:25.9465689Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:03.6038462Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -668,7 +656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:47 GMT + - Mon, 09 Jan 2023 20:14:32 GMT expires: - '-1' pragma: @@ -680,7 +668,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 37CA414668404D388D93F58BCC21ECAB Ref B: MIAEDGE2722 Ref C: 2022-10-21T17:49:47Z' + - 'Ref A: 985838BAD2F3480EBC14AEFB7E5B85EB Ref B: BL2AA2030110029 Ref C: 2023-01-09T20:14:31Z' status: code: 200 message: OK @@ -688,7 +676,7 @@ interactions: body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {}}}' + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -699,14 +687,13 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '511' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -722,14 +709,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:48.0035593Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:34.4801965Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:48.0035593Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:34.4801965Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/749b06cb-e11f-4ce8-a8fd-097592939a7c?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/37e7ee1a-0bc6-4cad-b00d-21494efb8aed?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -737,7 +724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:49:48 GMT + - Mon, 09 Jan 2023 20:14:36 GMT expires: - '-1' pragma: @@ -751,7 +738,7 @@ interactions: x-ms-ratelimit-remaining-tenant-writes: - '1199' x-msedge-ref: - - 'Ref A: 19EA1D2ED520446E824738DC64209113 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:49:47Z' + - 'Ref A: 667DF5A212EE45E8A953910CDF78EF53 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:32Z' status: code: 201 message: Created @@ -769,14 +756,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/749b06cb-e11f-4ce8-a8fd-097592939a7c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/37e7ee1a-0bc6-4cad-b00d-21494efb8aed?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/749b06cb-e11f-4ce8-a8fd-097592939a7c\",\r\n - \ \"name\": \"749b06cb-e11f-4ce8-a8fd-097592939a7c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/37e7ee1a-0bc6-4cad-b00d-21494efb8aed\",\r\n + \ \"name\": \"37e7ee1a-0bc6-4cad-b00d-21494efb8aed\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -785,7 +771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:05 GMT + - Mon, 09 Jan 2023 20:14:53 GMT expires: - '-1' pragma: @@ -797,7 +783,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: CC5539FBD6B74EB2AEFDA3FF4F5C9D18 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:50:06Z' + - 'Ref A: D546BEDB6AF148EFB5B892FAA3B3B07D Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:53Z' status: code: 200 message: OK @@ -815,8 +801,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-spec --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -824,9 +809,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-48-82684\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-34-720a2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.0568667S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.529327S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -837,20 +822,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:48.0035593Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:34.4801965Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:48.0035593Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:34.4801965Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1843' + - '1842' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:06 GMT + - Mon, 09 Jan 2023 20:14:54 GMT expires: - '-1' pragma: @@ -862,7 +847,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3E77B6AB8C984E91BB47AEC77E133D84 Ref B: MIAEDGE2120 Ref C: 2022-10-21T17:50:06Z' + - 'Ref A: 0BE8D7B6388B4462A42797EFA23A8977 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:54Z' status: code: 200 message: OK @@ -880,8 +865,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -889,9 +873,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-49-48-82684\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-34-720a2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.0568667S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.529327S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -902,20 +886,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:49:48.0035593Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:34.4801965Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:49:48.0035593Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:34.4801965Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1843' + - '1842' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:06 GMT + - Mon, 09 Jan 2023 20:14:55 GMT expires: - '-1' pragma: @@ -927,7 +911,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0543964C490746658D0433C0BFA5B6AD Ref B: MIAEDGE2721 Ref C: 2022-10-21T17:50:06Z' + - 'Ref A: 411092686D604988825523FC72531CA5 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:14:55Z' status: code: 200 message: OK @@ -947,8 +931,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -960,7 +943,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 17:50:07 GMT + - Mon, 09 Jan 2023 20:14:58 GMT expires: - '-1' pragma: @@ -974,7 +957,7 @@ interactions: x-ms-ratelimit-remaining-tenant-deletes: - '14999' x-msedge-ref: - - 'Ref A: 9A05BA0231464621BFB0F57AA02A4AD9 Ref B: MIAEDGE2721 Ref C: 2022-10-21T17:50:07Z' + - 'Ref A: FA470FF10EFC4F45BE9610734B9BB78A Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:14:56Z' status: code: 200 message: OK @@ -992,8 +975,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1008,7 +990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:07 GMT + - Mon, 09 Jan 2023 20:14:58 GMT expires: - '-1' pragma: @@ -1022,7 +1004,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E820741328094DFD849936C7F80C14E7 Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:07Z' + - 'Ref A: BD68B074E56E464A89F8C960A3571717 Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:14:58Z' status: code: 404 message: Not Found @@ -1034,7 +1016,8 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -1045,14 +1028,13 @@ interactions: Connection: - keep-alive Content-Length: - - '711' + - '738' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1067,14 +1049,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:08.3853209Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:59.9307064Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e71faa14-3716-4c1c-bd75-b1ec1882b8cf?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1082,7 +1064,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:08 GMT + - Mon, 09 Jan 2023 20:14:59 GMT expires: - '-1' pragma: @@ -1094,9 +1076,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: 9E92142F0C36480BAA3EADD43B550ABD Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:08Z' + - 'Ref A: E53F6E3FB95C4AC9967E7CECDB9B0B37 Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:14:59Z' status: code: 201 message: Created @@ -1114,14 +1096,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e71faa14-3716-4c1c-bd75-b1ec1882b8cf?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n - \ \"name\": \"59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e71faa14-3716-4c1c-bd75-b1ec1882b8cf\",\r\n + \ \"name\": \"e71faa14-3716-4c1c-bd75-b1ec1882b8cf\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1130,7 +1111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:25 GMT + - Mon, 09 Jan 2023 20:15:17 GMT expires: - '-1' pragma: @@ -1142,7 +1123,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: C7B57F14F3EE4E7784E4FBB7D9E94CFC Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:26Z' + - 'Ref A: FC2326B3038F4F8ABDC05A58BCA368CE Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:15:17Z' status: code: 200 message: OK @@ -1160,54 +1141,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n - \ \"name\": \"59bd4126-cbd7-47af-ae2f-a80cca4289f7\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '215' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Oct 2022 17:50:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A448FCA7050B4F67AFC6CA87BB99A473 Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1215,9 +1149,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-50-08-3df9e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-15-00-33ae9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT47.3080038S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT8.4787757S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1225,20 +1159,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:08.3853209Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:59.9307064Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1625' + - '1624' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:56 GMT + - Mon, 09 Jan 2023 20:15:17 GMT expires: - '-1' pragma: @@ -1250,7 +1184,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FA60D9AFC8DC43218A264A82B9CD5700 Ref B: MIAEDGE1407 Ref C: 2022-10-21T17:50:56Z' + - 'Ref A: 6383C58625344B1EB53978AFBDEC0512 Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:15:17Z' status: code: 200 message: OK @@ -1268,8 +1202,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1284,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:57 GMT + - Mon, 09 Jan 2023 20:15:18 GMT expires: - '-1' pragma: @@ -1298,7 +1231,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: C4A9850511D2493D85B65B7A2449F322 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:50:57Z' + - 'Ref A: 80E821611953401794E6EB805765B390 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:15:19Z' status: code: 404 message: Not Found @@ -1310,7 +1243,8 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -1321,14 +1255,13 @@ interactions: Connection: - keep-alive Content-Length: - - '711' + - '738' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1343,14 +1276,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:57.8848446Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:15:20.1126571Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1358,7 +1291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:50:58 GMT + - Mon, 09 Jan 2023 20:15:20 GMT expires: - '-1' pragma: @@ -1370,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' + - '1199' x-msedge-ref: - - 'Ref A: 2CE39ABAFBCE499196BA54E0AE9C9706 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:50:57Z' + - 'Ref A: 4FAF6C84AFF3424BB6CBAEEA67A170BE Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:15:19Z' status: code: 200 message: OK @@ -1390,14 +1323,58 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n - \ \"name\": \"688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00\",\r\n + \ \"name\": \"80f53229-910d-404e-80d7-c5164cb37c00\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '218' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:15:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5DA41ED96DF0443B874696DD426253DD Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:15:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --parameters + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00\",\r\n + \ \"name\": \"80f53229-910d-404e-80d7-c5164cb37c00\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache @@ -1406,7 +1383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:51:15 GMT + - Mon, 09 Jan 2023 20:16:08 GMT expires: - '-1' pragma: @@ -1418,7 +1395,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: ADBC407498F04F3B822D71CB831D0B09 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:51:15Z' + - 'Ref A: 5599BB7304DD4A87B8C5CBEDDDF588E3 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:16:08Z' status: code: 200 message: OK @@ -1436,14 +1413,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n - \ \"name\": \"688ec4b3-9d0e-46d0-bf8d-dd72c6ad04df\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00\",\r\n + \ \"name\": \"80f53229-910d-404e-80d7-c5164cb37c00\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1452,7 +1428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:51:45 GMT + - Mon, 09 Jan 2023 20:16:38 GMT expires: - '-1' pragma: @@ -1464,7 +1440,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E058E5BB5D82471DB54EFEABEF954A72 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:51:45Z' + - 'Ref A: 40056A65375B4C9D89BE497019FDE74D Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:16:38Z' status: code: 200 message: OK @@ -1482,8 +1458,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1491,9 +1466,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-21-17-50-58-de17e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-15-20-09e9f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT24.9770282S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT49.8673079S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1502,9 +1477,9 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T17:50:08.3853209Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T17:50:57.8848446Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:15:20.1126571Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1515,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:51:46 GMT + - Mon, 09 Jan 2023 20:16:39 GMT expires: - '-1' pragma: @@ -1527,7 +1502,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B0C05CE852F349F49369AE26040445A2 Ref B: MIAEDGE2313 Ref C: 2022-10-21T17:51:46Z' + - 'Ref A: E3D30E8C68A04F478C273A5635E46B99 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:16:39Z' status: code: 200 message: OK @@ -1545,8 +1520,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: @@ -1560,7 +1534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:51:47 GMT + - Mon, 09 Jan 2023 20:16:40 GMT expires: - '-1' pragma: @@ -1572,7 +1546,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3856B1A3B22F42AE85D4C24BB2272B60 Ref B: MIAEDGE1311 Ref C: 2022-10-21T17:51:46Z' + - 'Ref A: 4B9E5B76BE6B4D4C98D1BF980900D37D Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:16:40Z' status: code: 200 message: OK @@ -1590,8 +1564,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 response: @@ -1605,7 +1578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 17:51:47 GMT + - Mon, 09 Jan 2023 20:16:40 GMT expires: - '-1' pragma: @@ -1617,7 +1590,477 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 05308973A0904D43A7346D2E39F72E53 Ref B: MIAEDGE1910 Ref C: 2022-10-21T17:51:47Z' + - 'Ref A: 9FC29A5676FB45BBA6DE9CBC70A1BBD9 Ref B: BL2AA2030109033 Ref C: 2023-01-09T20:16:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --parameters --delete-resources + --delete-resources + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:16:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: B5AC702F39D94E93A710D98A96217C0B Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:16:42Z' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + Content-Length: + - '740' + Content-Type: + - application/json + ParameterSetName: + - --name --management-group-id --location --template-file --parameters --delete-resources + --delete-resources + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-three000006\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:16:43.5806983Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bce67ed4-9fbc-481e-a094-17f85aebbe84?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1196' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:16:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-tenant-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 7A3E37044D9A4ADDB00C6B6493A4FAF6 Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:16:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --parameters --delete-resources + --delete-resources + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bce67ed4-9fbc-481e-a094-17f85aebbe84?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bce67ed4-9fbc-481e-a094-17f85aebbe84\",\r\n + \ \"name\": \"bce67ed4-9fbc-481e-a094-17f85aebbe84\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '215' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:17:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9125EB09B04F44D19B0EB85C45496B45 Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:17:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --parameters --delete-resources + --delete-resources + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-16-43-d4cf4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT13.6770911S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:16:43.5806983Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1765' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:17:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6533F1D8623F45218D9F622647966D52 Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:17:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:17:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AEA647B849E74D9F8937BDA3A956D930 Ref B: BL2AA2030106005 Ref C: 2023-01-09T20:17:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '256' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:17:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 27A0DA47F1E4433B84FB372AE30D7B8A Ref B: BL2AA2030108003 Ref C: 2023-01-09T20:17:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T20:13:59.0404483Z","changedTime":"2023-01-09T20:14:00.931093Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T20:14:00.2905459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T20:14:00.2905459Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T20:14:03.0928396Z","changedTime":"2023-01-09T20:14:04.3437749Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T20:14:03.6038462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T20:14:03.6038462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '64779' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:17:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 912E265D9D88455D830E821D3840806F Ref B: BL2AA2030109037 Ref C: 2023-01-09T20:17:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg delete + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-16-43-d4cf4\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT13.6770911S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:16:43.5806983Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1765' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 20:17:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EBB1DE8F2FF34D07806DB91E455804DE Ref B: BL2AA2030107051 Ref C: 2023-01-09T20:17:08Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --management-group-id --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 20:17: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-ratelimit-remaining-tenant-deletes: + - '14998' + x-msedge-ref: + - 'Ref A: 87EB80A049F64CA9A8CF2A61097CC4CE Ref B: BL2AA2030107051 Ref C: 2023-01-09T20:17:09Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index 307f69fcffd..f0a25cf476a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' @@ -30,17 +29,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:28 GMT + - Mon, 09 Jan 2023 18:57: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: D14EBFD670A0462288764835CEA6EA05 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:03Z' status: code: 404 message: Not Found @@ -58,10 +61,9 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' @@ -75,17 +77,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:28 GMT + - Mon, 09 Jan 2023 18:57: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: DFEB84465EC94DBC97987D45673B3D12 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:03Z' status: code: 404 message: Not Found @@ -107,40 +113,41 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:30.719309Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:05.6032519Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:30.719309Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:05.6032519Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '630' + - '632' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:30 GMT + - Mon, 09 Jan 2023 18:57:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: 1525007D448746168E41A1E2756AAC74 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:03Z' status: code: 201 message: Created @@ -168,10 +175,9 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -187,9 +193,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:32.3926642Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:08.5885893Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:32.3926642Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:08.5885893Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -201,19 +207,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:31 GMT + - Mon, 09 Jan 2023 18:57:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' + x-msedge-ref: + - 'Ref A: 610755E4F7E6450F86720C3AA9894328 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:06Z' status: code: 201 message: Created @@ -231,10 +239,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -248,17 +255,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:33 GMT + - Mon, 09 Jan 2023 18:57:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9A1F877BDBD64161AC622DD486EA9852 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:09Z' status: code: 404 message: Not Found @@ -288,10 +297,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -303,14 +311,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:34.0621797Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:10.4150758Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:34.0621797Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:10.4150758Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70c4d2dd-4b34-44de-9b6e-678fa6eb9341?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b960a213-1dd5-44d1-8136-2acc6a001581?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -318,19 +326,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:33 GMT + - Mon, 09 Jan 2023 18:57:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' + x-msedge-ref: + - 'Ref A: E01E1F4B7A21465DBEAE39C4B22A4DD0 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:09Z' status: code: 201 message: Created @@ -348,37 +358,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70c4d2dd-4b34-44de-9b6e-678fa6eb9341?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b960a213-1dd5-44d1-8136-2acc6a001581?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/70c4d2dd-4b34-44de-9b6e-678fa6eb9341\",\r\n - \ \"name\": \"70c4d2dd-4b34-44de-9b6e-678fa6eb9341\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b960a213-1dd5-44d1-8136-2acc6a001581\",\r\n + \ \"name\": \"b960a213-1dd5-44d1-8136-2acc6a001581\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:50 GMT + - Mon, 09 Jan 2023 18:57:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 754DAD8164C440B0B0BE1CE965E72098 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:28Z' status: code: 200 message: OK @@ -396,16 +403,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-34-e86ed\",\r\n - \ \"duration\": \"PT5.4080075S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-10-05db4\",\r\n + \ \"duration\": \"PT13.552638S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -415,9 +421,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:34.0621797Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:10.4150758Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:34.0621797Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:10.4150758Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -428,21 +434,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:50 GMT + - Mon, 09 Jan 2023 18:57:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5A19E1F816DA4EFAA7B430CE0A0791F5 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:28Z' status: code: 200 message: OK @@ -460,16 +464,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-34-e86ed\",\r\n - \ \"duration\": \"PT5.4080075S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-10-05db4\",\r\n + \ \"duration\": \"PT13.552638S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -479,9 +482,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:34.0621797Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:10.4150758Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:34.0621797Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:10.4150758Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -492,21 +495,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:52 GMT + - Mon, 09 Jan 2023 18:57:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D6905B61768B4E44BD4F37D786CFB977 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:57:29Z' status: code: 200 message: OK @@ -526,10 +527,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -539,19 +539,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:37:53 GMT + - Mon, 09 Jan 2023 18:57:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14994' + x-msedge-ref: + - 'Ref A: 14634301E809420192DDC230A5BEB0B0 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:57:30Z' status: code: 200 message: OK @@ -569,10 +571,9 @@ interactions: ParameterSetName: - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -586,17 +587,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:53 GMT + - Mon, 09 Jan 2023 18:57:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3A96E1CD837A418E80036B2516F5CEE6 Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:37Z' status: code: 404 message: Not Found @@ -614,10 +617,9 @@ interactions: ParameterSetName: - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -633,9 +635,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:32.3926642Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:08.5885893Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:32.3926642Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:08.5885893Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -647,21 +649,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:54 GMT + - Mon, 09 Jan 2023 18:57:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C9A376E14D774BFBA553EB5BFB99146D Ref B: BL2AA2030108017 Ref C: 2023-01-09T18:57:38Z' status: code: 200 message: OK @@ -686,10 +686,9 @@ interactions: ParameterSetName: - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -702,14 +701,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:55.7678736Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:40.0217124Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:55.7678736Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:40.0217124Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e60acf1-c878-424e-b319-86d510c94285?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a2496bc5-403f-42ed-b5a0-b343616047dd?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -717,19 +716,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:37:55 GMT + - Mon, 09 Jan 2023 18:57:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: 9D51454F3F8B4885AD7ED516F60370E6 Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:39Z' status: code: 201 message: Created @@ -747,37 +748,34 @@ interactions: ParameterSetName: - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e60acf1-c878-424e-b319-86d510c94285?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a2496bc5-403f-42ed-b5a0-b343616047dd?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e60acf1-c878-424e-b319-86d510c94285\",\r\n - \ \"name\": \"5e60acf1-c878-424e-b319-86d510c94285\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a2496bc5-403f-42ed-b5a0-b343616047dd\",\r\n + \ \"name\": \"a2496bc5-403f-42ed-b5a0-b343616047dd\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:13 GMT + - Mon, 09 Jan 2023 18:57:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 083B94F3B65F440EB29A5D3AFAA906CC Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:57Z' status: code: 200 message: OK @@ -795,16 +793,15 @@ interactions: ParameterSetName: - --name --resource-group --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-55-59a12\",\r\n - \ \"duration\": \"PT6.0543254S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-40-decd4\",\r\n + \ \"duration\": \"PT12.4452223S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -815,34 +812,32 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:55.7678736Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:40.0217124Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:55.7678736Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:40.0217124Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1825' + - '1826' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:13 GMT + - Mon, 09 Jan 2023 18:57:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9EA8F1E1620C4CECB43C2F8E58C56E77 Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:57Z' status: code: 200 message: OK @@ -860,16 +855,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-37-55-59a12\",\r\n - \ \"duration\": \"PT6.0543254S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-40-decd4\",\r\n + \ \"duration\": \"PT12.4452223S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -880,34 +874,32 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:37:55.7678736Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:40.0217124Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:37:55.7678736Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:40.0217124Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1825' + - '1826' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:14 GMT + - Mon, 09 Jan 2023 18:57:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3267D3E749864A5DA44CB3668630EF42 Ref B: BL2AA2030108007 Ref C: 2023-01-09T18:57:58Z' status: code: 200 message: OK @@ -927,10 +919,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -940,19 +931,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:38:14 GMT + - Mon, 09 Jan 2023 18:57:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14993' + x-msedge-ref: + - 'Ref A: 22DF562979B043F382C95C89D1013436 Ref B: BL2AA2030108007 Ref C: 2023-01-09T18:57:59Z' status: code: 200 message: OK @@ -970,10 +963,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -987,17 +979,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:15 GMT + - Mon, 09 Jan 2023 18:58:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C241C855184A421BA1BA7F3DF8011303 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:00Z' status: code: 404 message: Not Found @@ -1025,11 +1019,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:38:18 GMT + - Mon, 09 Jan 2023 18:58:02 GMT expires: - - Fri, 18 Nov 2022 18:38:18 GMT + - Mon, 09 Jan 2023 18:58:02 GMT location: - - https://api.github.com/repos/Azure/bicep/releases/latest + - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: @@ -1055,73 +1049,62 @@ interactions: User-Agent: - python-requests/2.26.0 method: GET - uri: https://api.github.com/repos/Azure/bicep/releases/latest + uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589","assets_url":"https://api.github.com/repos/Azure/bicep/releases/82328589/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/82328589/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.12.40","id":82328589,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4E6DwN","tag_name":"v0.12.40","target_commitish":"main","name":"v0.12.40","draft":false,"prerelease":false,"created_at":"2022-11-07T20:36:40Z","published_at":"2022-11-08T00:33:06Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810432","id":83810432,"node_id":"RA_kwDOD7S9ks4E_tiA","name":"Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21621241,"download_count":6,"created_at":"2022-11-08T00:14:33Z","updated_at":"2022-11-08T00:14:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810410","id":83810410,"node_id":"RA_kwDOD7S9ks4E_thq","name":"Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22089629,"download_count":4,"created_at":"2022-11-08T00:14:22Z","updated_at":"2022-11-08T00:14:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810466","id":83810466,"node_id":"RA_kwDOD7S9ks4E_tii","name":"Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21514215,"download_count":6,"created_at":"2022-11-08T00:14:57Z","updated_at":"2022-11-08T00:14:58Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810446","id":83810446,"node_id":"RA_kwDOD7S9ks4E_tiO","name":"Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21998044,"download_count":4,"created_at":"2022-11-08T00:14:43Z","updated_at":"2022-11-08T00:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810400","id":83810400,"node_id":"RA_kwDOD7S9ks4E_thg","name":"Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21908652,"download_count":7,"created_at":"2022-11-08T00:14:08Z","updated_at":"2022-11-08T00:14:09Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810386","id":83810386,"node_id":"RA_kwDOD7S9ks4E_thS","name":"Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22179616,"download_count":8,"created_at":"2022-11-08T00:13:56Z","updated_at":"2022-11-08T00:13:57Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810314","id":83810314,"node_id":"RA_kwDOD7S9ks4E_tgK","name":"Azure.Bicep.Core.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":474567,"download_count":4,"created_at":"2022-11-08T00:12:37Z","updated_at":"2022-11-08T00:12:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810315","id":83810315,"node_id":"RA_kwDOD7S9ks4E_tgL","name":"Azure.Bicep.Core.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":157634,"download_count":5,"created_at":"2022-11-08T00:12:39Z","updated_at":"2022-11-08T00:12:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810318","id":83810318,"node_id":"RA_kwDOD7S9ks4E_tgO","name":"Azure.Bicep.Decompiler.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":88874,"download_count":5,"created_at":"2022-11-08T00:12:41Z","updated_at":"2022-11-08T00:12:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810326","id":83810326,"node_id":"RA_kwDOD7S9ks4E_tgW","name":"Azure.Bicep.Decompiler.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22628,"download_count":4,"created_at":"2022-11-08T00:12:43Z","updated_at":"2022-11-08T00:12:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810327","id":83810327,"node_id":"RA_kwDOD7S9ks4E_tgX","name":"Azure.Bicep.MSBuild.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45332,"download_count":5,"created_at":"2022-11-08T00:12:45Z","updated_at":"2022-11-08T00:12:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810329","id":83810329,"node_id":"RA_kwDOD7S9ks4E_tgZ","name":"Azure.Bicep.MSBuild.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6944,"download_count":4,"created_at":"2022-11-08T00:12:47Z","updated_at":"2022-11-08T00:12:48Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810330","id":83810330,"node_id":"RA_kwDOD7S9ks4E_tga","name":"Azure.Bicep.RegistryModuleTool.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20311508,"download_count":8,"created_at":"2022-11-08T00:12:49Z","updated_at":"2022-11-08T00:12:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810333","id":83810333,"node_id":"RA_kwDOD7S9ks4E_tgd","name":"Azure.Bicep.RegistryModuleTool.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":173868,"download_count":4,"created_at":"2022-11-08T00:12:53Z","updated_at":"2022-11-08T00:12:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810337","id":83810337,"node_id":"RA_kwDOD7S9ks4E_tgh","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21491148,"download_count":7,"created_at":"2022-11-08T00:12:57Z","updated_at":"2022-11-08T00:12:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810273","id":83810273,"node_id":"RA_kwDOD7S9ks4E_tfh","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42885924,"download_count":130,"created_at":"2022-11-08T00:11:21Z","updated_at":"2022-11-08T00:11:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810283","id":83810283,"node_id":"RA_kwDOD7S9ks4E_tfr","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43387396,"download_count":5752,"created_at":"2022-11-08T00:11:37Z","updated_at":"2022-11-08T00:11:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810264","id":83810264,"node_id":"RA_kwDOD7S9ks4E_tfY","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43486721,"download_count":57796,"created_at":"2022-11-08T00:11:07Z","updated_at":"2022-11-08T00:11:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810297","id":83810297,"node_id":"RA_kwDOD7S9ks4E_tf5","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42819184,"download_count":14,"created_at":"2022-11-08T00:12:06Z","updated_at":"2022-11-08T00:12:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810288","id":83810288,"node_id":"RA_kwDOD7S9ks4E_tfw","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43537828,"download_count":2867,"created_at":"2022-11-08T00:11:53Z","updated_at":"2022-11-08T00:11:56Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810311","id":83810311,"node_id":"RA_kwDOD7S9ks4E_tgH","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":19909000,"download_count":2463,"created_at":"2022-11-08T00:12:29Z","updated_at":"2022-11-08T00:12:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810347","id":83810347,"node_id":"RA_kwDOD7S9ks4E_tgr","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43269504,"download_count":7,"created_at":"2022-11-08T00:13:09Z","updated_at":"2022-11-08T00:13:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810313","id":83810313,"node_id":"RA_kwDOD7S9ks4E_tgJ","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42607240,"download_count":36571,"created_at":"2022-11-08T00:12:33Z","updated_at":"2022-11-08T00:12:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810368","id":83810368,"node_id":"RA_kwDOD7S9ks4E_thA","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":42793813,"download_count":5,"created_at":"2022-11-08T00:13:44Z","updated_at":"2022-11-08T00:13:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810360","id":83810360,"node_id":"RA_kwDOD7S9ks4E_tg4","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":70848179,"download_count":92,"created_at":"2022-11-08T00:13:29Z","updated_at":"2022-11-08T00:13:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.12.40","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.12.40","body":"## - Features and bug fixes\r\n\r\nThis is a hotfix for some unintended breaking - changes that went out with the v0.12.1 release. Apologies for any inconvenience - this may have caused!\r\n\r\nBicep team:\r\n* Make sure that single-item allowed - decorators on arrays are treated the same as decorators with multiple items - (#8893)\r\n* Correct union assignability check when both sides of the assignment - are unions (#8899)\r\n* Use imported type rather than narrowed type for union - branches within resource declaration (#8902)\r\n* Incorporate type names into - Bicep symbol table (#8876)\r\n* Update TypeHelper.IsLiteralType to avoid catching - LanguageConstants.Object (#8952)\r\n* Fix an issue where building file with - deeply nested external modules throws (#8903)\r\n* Allow ''asazure.windows.net'' - for no-hardcoded-env-urls (#8871)","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589/reactions","total_count":9,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":9,"rocket":0,"eyes":0}}' - headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' - access-control-expose-headers: - - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, - X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, - X-GitHub-Request-Id, Deprecation, Sunset - cache-control: - - public, max-age=60, s-maxage=60 + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554","assets_url":"https://api.github.com/repos/Azure/bicep/releases/85011554/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/85011554/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.13.1","id":85011554,"author":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4FESxi","tag_name":"v0.13.1","target_commitish":"main","name":"v0.13.1","draft":false,"prerelease":false,"created_at":"2022-12-02T16:18:55Z","published_at":"2022-12-05T22:40:09Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086565","id":87086565,"node_id":"RA_kwDOD7S9ks4FMNXl","name":"Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21939065,"download_count":37,"created_at":"2022-12-05T16:25:42Z","updated_at":"2022-12-05T16:25:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086537","id":87086537,"node_id":"RA_kwDOD7S9ks4FMNXJ","name":"Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22405300,"download_count":37,"created_at":"2022-12-05T16:25:27Z","updated_at":"2022-12-05T16:25:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086633","id":87086633,"node_id":"RA_kwDOD7S9ks4FMNYp","name":"Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21834574,"download_count":38,"created_at":"2022-12-05T16:26:36Z","updated_at":"2022-12-05T16:26:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086599","id":87086599,"node_id":"RA_kwDOD7S9ks4FMNYH","name":"Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22318205,"download_count":33,"created_at":"2022-12-05T16:26:09Z","updated_at":"2022-12-05T16:26:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086501","id":87086501,"node_id":"RA_kwDOD7S9ks4FMNWl","name":"Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22223402,"download_count":41,"created_at":"2022-12-05T16:25:12Z","updated_at":"2022-12-05T16:25:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086439","id":87086439,"node_id":"RA_kwDOD7S9ks4FMNVn","name":"Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22492654,"download_count":61,"created_at":"2022-12-05T16:24:45Z","updated_at":"2022-12-05T16:24:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086104","id":87086104,"node_id":"RA_kwDOD7S9ks4FMNQY","name":"Azure.Bicep.Core.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":484757,"download_count":42,"created_at":"2022-12-05T16:22:36Z","updated_at":"2022-12-05T16:22:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086106","id":87086106,"node_id":"RA_kwDOD7S9ks4FMNQa","name":"Azure.Bicep.Core.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":160641,"download_count":29,"created_at":"2022-12-05T16:22:38Z","updated_at":"2022-12-05T16:22:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086111","id":87086111,"node_id":"RA_kwDOD7S9ks4FMNQf","name":"Azure.Bicep.Decompiler.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":89986,"download_count":32,"created_at":"2022-12-05T16:22:40Z","updated_at":"2022-12-05T16:22:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086116","id":87086116,"node_id":"RA_kwDOD7S9ks4FMNQk","name":"Azure.Bicep.Decompiler.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22644,"download_count":31,"created_at":"2022-12-05T16:22:42Z","updated_at":"2022-12-05T16:22:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086120","id":87086120,"node_id":"RA_kwDOD7S9ks4FMNQo","name":"Azure.Bicep.MSBuild.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45377,"download_count":30,"created_at":"2022-12-05T16:22:44Z","updated_at":"2022-12-05T16:22:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086133","id":87086133,"node_id":"RA_kwDOD7S9ks4FMNQ1","name":"Azure.Bicep.MSBuild.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6940,"download_count":30,"created_at":"2022-12-05T16:22:47Z","updated_at":"2022-12-05T16:22:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086137","id":87086137,"node_id":"RA_kwDOD7S9ks4FMNQ5","name":"Azure.Bicep.RegistryModuleTool.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20623971,"download_count":35,"created_at":"2022-12-05T16:22:49Z","updated_at":"2022-12-05T16:22:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086144","id":87086144,"node_id":"RA_kwDOD7S9ks4FMNRA","name":"Azure.Bicep.RegistryModuleTool.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":177071,"download_count":32,"created_at":"2022-12-05T16:22:53Z","updated_at":"2022-12-05T16:22:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086154","id":87086154,"node_id":"RA_kwDOD7S9ks4FMNRK","name":"bicep-langserver.zip","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21965645,"download_count":351,"created_at":"2022-12-05T16:22:59Z","updated_at":"2022-12-05T16:23:02Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085752","id":87085752,"node_id":"RA_kwDOD7S9ks4FMNK4","name":"bicep-linux-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43262692,"download_count":95,"created_at":"2022-12-05T16:19:34Z","updated_at":"2022-12-05T16:19:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085814","id":87085814,"node_id":"RA_kwDOD7S9ks4FMNL2","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43759556,"download_count":9734,"created_at":"2022-12-05T16:20:06Z","updated_at":"2022-12-05T16:20:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085712","id":87085712,"node_id":"RA_kwDOD7S9ks4FMNKQ","name":"bicep-linux-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43858881,"download_count":124132,"created_at":"2022-12-05T16:19:13Z","updated_at":"2022-12-05T16:19:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085981","id":87085981,"node_id":"RA_kwDOD7S9ks4FMNOd","name":"bicep-osx-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43195952,"download_count":54,"created_at":"2022-12-05T16:21:26Z","updated_at":"2022-12-05T16:21:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085880","id":87085880,"node_id":"RA_kwDOD7S9ks4FMNM4","name":"bicep-osx-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43910500,"download_count":3908,"created_at":"2022-12-05T16:20:32Z","updated_at":"2022-12-05T16:20:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086072","id":87086072,"node_id":"RA_kwDOD7S9ks4FMNP4","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":20197576,"download_count":3173,"created_at":"2022-12-05T16:22:23Z","updated_at":"2022-12-05T16:22:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086182","id":87086182,"node_id":"RA_kwDOD7S9ks4FMNRm","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43646240,"download_count":24,"created_at":"2022-12-05T16:23:16Z","updated_at":"2022-12-05T16:23:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086080","id":87086080,"node_id":"RA_kwDOD7S9ks4FMNQA","name":"bicep-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42979416,"download_count":80026,"created_at":"2022-12-05T16:22:29Z","updated_at":"2022-12-05T16:22:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086332","id":87086332,"node_id":"RA_kwDOD7S9ks4FMNT8","name":"vs-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":44307809,"download_count":19,"created_at":"2022-12-05T16:24:13Z","updated_at":"2022-12-05T16:24:18Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086257","id":87086257,"node_id":"RA_kwDOD7S9ks4FMNSx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":72127899,"download_count":213,"created_at":"2022-12-05T16:23:46Z","updated_at":"2022-12-05T16:23:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.13.1","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.13.1","body":"## + Highlights\r\n\r\nBicep team:\r\n* Bicep deploy - support deployment to azure + cloud (#9097)\r\n\r\n@miqm\r\n* Emitting getSecret inside a ternary expression + (#8658)\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* Fix for partially-typed + resource type completions (#9158)\r\n* InsertResource: Use json() function + to format non-integer number (#9162)\r\n* Support fully-qualified ambient + type symbols in output declaration type clauses (#8961)\r\n* Fix `flatten` + signature (#9117)\r\n* Block nested runtime functions (#8965)\r\n\r\n@matsest\r\n* + fix(vscode): add icons for container apps (#9101)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554/reactions","total_count":3,"+1":3,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"mentions_count":2}' + headers: content-length: - - '36243' - content-security-policy: - - default-src 'none' + - '37819' + content-md5: + - /YYHJfbYwbTcgT8zt9cunA== content-type: - - application/json; charset=utf-8 + - application/octet-stream date: - - Fri, 18 Nov 2022 18:38:06 GMT + - Mon, 09 Jan 2023 18:58:02 GMT etag: - - W/"99c527415185e2e7c8d3aea28275de0490b74f0f2aa92dbf22db52adb3df9547" + - '0x8DAF26C085732AD' last-modified: - - Tue, 08 Nov 2022 00:33:06 GMT - referrer-policy: - - origin-when-cross-origin, strict-origin-when-cross-origin + - Mon, 09 Jan 2023 18:05:03 GMT server: - - GitHub.com - strict-transport-security: - - max-age=31536000; includeSubdomains; preload - vary: - - Accept, Accept-Encoding, Accept, X-Requested-With - x-content-type-options: - - nosniff - x-frame-options: - - deny - x-github-media-type: - - github.v3; format=json - x-github-request-id: - - FEBC:139B:91CD45A:129316E2:6377D11A - x-ratelimit-limit: - - '60' - x-ratelimit-remaining: - - '59' - x-ratelimit-reset: - - '1668800298' - x-ratelimit-resource: - - core - x-ratelimit-used: - - '1' - x-xss-protection: - - '0' + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-azure-ref: + - 0umO8YwAAAABm8orWVeRySYTw7fq/nTE5TU5aMjIxMDYwNjEzMDQ3ADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + x-azure-ref-originshield: + - 0umO8YwAAAACHUV+r0BT3ToxS5n8Twc0NTU5aMjIxMDYwNjExMDA5ADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + x-cache: + - TCP_REMOTE_HIT + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' status: code: 200 message: OK @@ -1153,10 +1136,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1166,14 +1148,14 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:21.7336631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:05.2561954Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:21.7336631Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:05.2561954Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5bfd4b3-f66a-41f0-94c7-76e071074dee?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1181,19 +1163,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:21 GMT + - Mon, 09 Jan 2023 18:58:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' + x-msedge-ref: + - 'Ref A: 598404EB28784663AE06AD951E190347 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:04Z' status: code: 201 message: Created @@ -1211,37 +1195,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5bfd4b3-f66a-41f0-94c7-76e071074dee?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e5bfd4b3-f66a-41f0-94c7-76e071074dee\",\r\n - \ \"name\": \"e5bfd4b3-f66a-41f0-94c7-76e071074dee\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n + \ \"name\": \"71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:39 GMT + - Mon, 09 Jan 2023 18:58:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C69FAD70789344E3B0739C5B9CEF4340 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:23Z' status: code: 200 message: OK @@ -1259,16 +1240,60 @@ interactions: ParameterSetName: - --name --resource-group --template-file --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n + \ \"name\": \"71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 18:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8B6315BADE1444298A19178D0B2353EC Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-21-bf3bb\",\r\n - \ \"duration\": \"PT9.011189S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-05-7d557\",\r\n + \ \"duration\": \"PT18.1587302S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1278,34 +1303,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:21.7336631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:05.2561954Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:21.7336631Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:05.2561954Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1835' + - '1837' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:39 GMT + - Mon, 09 Jan 2023 18:58:53 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1583D275CC8F47A8AB9B9F0AABD32EB2 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:53Z' status: code: 200 message: OK @@ -1323,16 +1346,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-21-bf3bb\",\r\n - \ \"duration\": \"PT9.011189S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-05-7d557\",\r\n + \ \"duration\": \"PT18.1587302S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1342,34 +1364,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:21.7336631Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:05.2561954Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:21.7336631Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:05.2561954Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1835' + - '1837' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:39 GMT + - Mon, 09 Jan 2023 18:58:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 879AE40B44494C6CAC79AB0DB8908159 Ref B: BL2AA2030108003 Ref C: 2023-01-09T18:58:54Z' status: code: 200 message: OK @@ -1389,10 +1409,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1402,19 +1421,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:38:40 GMT + - Mon, 09 Jan 2023 18:58:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14992' + x-msedge-ref: + - 'Ref A: ECC7071C9B2A48769FFA33D6B7CDE602 Ref B: BL2AA2030108003 Ref C: 2023-01-09T18:58:55Z' status: code: 200 message: OK @@ -1432,10 +1453,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -1449,17 +1469,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:41 GMT + - Mon, 09 Jan 2023 18:58:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C7E9E65DE1BE42FD83C78B9C4A69D03C Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:58:56Z' status: code: 404 message: Not Found @@ -1498,10 +1520,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1513,33 +1534,35 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:41.9725775Z\"\r\n + \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:57.983147Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1129' + - '1127' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:41 GMT + - Mon, 09 Jan 2023 18:58:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' + x-msedge-ref: + - 'Ref A: 3E497452FCAA43C98E23F27A522A7339 Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:58:57Z' status: code: 201 message: Created @@ -1557,37 +1580,79 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe\",\r\n - \ \"name\": \"cdf78ba3-c67f-49fe-b8d1-7cc8fff322fe\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n + \ \"name\": \"44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:58 GMT + - Mon, 09 Jan 2023 18:59:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 39B0D3D10F164086A204B7A92F440A2F Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:59:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n + \ \"name\": \"44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 18:59:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EC3D2F1AAC974295ABCF0F292BC8A8FB Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:59:45Z' status: code: 200 message: OK @@ -1605,16 +1670,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-42-4b6fc\",\r\n - \ \"duration\": \"PT6.114843S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-58-d141d\",\r\n + \ \"duration\": \"PT35.8900855S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1624,10 +1688,10 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:41.9725775Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:57.983147Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: @@ -1637,21 +1701,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:38:58 GMT + - Mon, 09 Jan 2023 18:59:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9FE42B7F3A2C4C6994652DE32BC50813 Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:59:46Z' status: code: 200 message: OK @@ -1669,16 +1731,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-38-42-4b6fc\",\r\n - \ \"duration\": \"PT6.114843S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-58-d141d\",\r\n + \ \"duration\": \"PT35.8900855S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1688,10 +1749,10 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:41.9725775Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:57.983147Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: @@ -1701,21 +1762,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:00 GMT + - Mon, 09 Jan 2023 18:59:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B10AF8F94B2D4ECA9B077F081F24E32F Ref B: BL2AA2030106021 Ref C: 2023-01-09T18:59:46Z' status: code: 200 message: OK @@ -1754,10 +1813,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1769,37 +1827,35 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:00.9203529Z\"\r\n + \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:48.7429643Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ffb8f661-bf87-4842-ac3c-c7615529d012?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1129' + - '1128' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:00 GMT + - Mon, 09 Jan 2023 18:59:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: BDB6703D660045FD837B63E255D8D479 Ref B: BL2AA2030106021 Ref C: 2023-01-09T18:59:48Z' status: code: 200 message: OK @@ -1817,37 +1873,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ffb8f661-bf87-4842-ac3c-c7615529d012?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ffb8f661-bf87-4842-ac3c-c7615529d012\",\r\n - \ \"name\": \"ffb8f661-bf87-4842-ac3c-c7615529d012\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n + \ \"name\": \"d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:17 GMT + - Mon, 09 Jan 2023 19:00:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2EBA582FD9214379AC8875686EA0518B Ref B: BL2AA2030106021 Ref C: 2023-01-09T19:00:06Z' status: code: 200 message: OK @@ -1865,16 +1918,60 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n + \ \"name\": \"d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 19:00:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4C23835304034E6CB18A4C7B0A33A074 Ref B: BL2AA2030106021 Ref C: 2023-01-09T19:00:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-01-815a5\",\r\n - \ \"duration\": \"PT5.5385894S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-59-48-b23f6\",\r\n + \ \"duration\": \"PT19.8527911S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1886,9 +1983,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:00.9203529Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:48.7429643Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1899,21 +1996,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:18 GMT + - Mon, 09 Jan 2023 19:00:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 998552E6BD6C4AE8869656DC965C57A6 Ref B: BL2AA2030106021 Ref C: 2023-01-09T19:00:37Z' status: code: 200 message: OK @@ -1931,113 +2026,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:19 GMT + - Mon, 09 Jan 2023 19:00:39 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E8DE413E77B7404F9598CCB2BC7BE574 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:00:39Z' status: code: 200 message: OK @@ -2055,18 +2091,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:44.6001403Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:59:07.4768545Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:38:45.0063442Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:11.0239105Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2077,21 +2112,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:20 GMT + - Mon, 09 Jan 2023 19:00:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DADA98655E68468D825A1657B02FF098 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:00:39Z' status: code: 200 message: OK @@ -2109,113 +2142,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:21 GMT + - Mon, 09 Jan 2023 19:00:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 812674F4B508483FBDFD70E0FA302F03 Ref B: BL2AA2030107033 Ref C: 2023-01-09T19:00:41Z' status: code: 200 message: OK @@ -2233,43 +2207,40 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:39:03.6136448Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:59:56.685191Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:04.1292719Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:00:00.013477Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: cache-control: - no-cache content-length: - - '716' + - '714' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:22 GMT + - Mon, 09 Jan 2023 19:00:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BEF300A06E524A0CBF79C5F053CEB35F Ref B: BL2AA2030107033 Ref C: 2023-01-09T19:00:41Z' status: code: 200 message: OK @@ -2287,16 +2258,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-01-815a5\",\r\n - \ \"duration\": \"PT5.5385894S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-59-48-b23f6\",\r\n + \ \"duration\": \"PT19.8527911S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2308,9 +2278,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:00.9203529Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:48.7429643Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2321,21 +2291,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:24 GMT + - Mon, 09 Jan 2023 19:00:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EE1D8B86B8A9401C99C168039FF92493 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:00:42Z' status: code: 200 message: OK @@ -2374,10 +2342,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -2389,37 +2356,35 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:24.6975421Z\"\r\n + \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:00:45.0095141Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1131' + - '1130' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:24 GMT + - Mon, 09 Jan 2023 19:00:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: A22952DBD18E4F65803DB5BB32DDD011 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:00:43Z' status: code: 200 message: OK @@ -2437,37 +2402,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n - \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n + \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:39:42 GMT + - Mon, 09 Jan 2023 19:01:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8BE030678697427BBEF0D6FB2A1CDF8E Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:01:02Z' status: code: 200 message: OK @@ -2485,37 +2447,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n - \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n + \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:40:12 GMT + - Mon, 09 Jan 2023 19:01:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4E64CA8DEE13497F8D7D1BA749F4D086 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:01:33Z' status: code: 200 message: OK @@ -2533,37 +2492,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n - \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n + \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:40:42 GMT + - Mon, 09 Jan 2023 19:02:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C042659D072D4979B8FE828A87256F38 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:02:04Z' status: code: 200 message: OK @@ -2581,37 +2537,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n - \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n + \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:13 GMT + - Mon, 09 Jan 2023 19:02:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 16E1B76594384E0FA01AC7CFD7508EB0 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:02:35Z' status: code: 200 message: OK @@ -2629,37 +2582,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n - \ \"name\": \"59a0874a-5f20-497e-9fa2-c21a4bca2ab8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n + \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:43 GMT + - Mon, 09 Jan 2023 19:03:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E6AD540BCEB84FE398709617A08477C9 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:03:06Z' status: code: 200 message: OK @@ -2677,16 +2627,60 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n + \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 19:03:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8F06D1514B534A00A3B6D301A2F5E611 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:03:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-24-89353\",\r\n - \ \"duration\": \"PT2M15.2972376S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-00-45-911da\",\r\n + \ \"duration\": \"PT2M44.2141182S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2698,34 +2692,32 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:39:24.6975421Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T19:00:45.0095141Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2387' + - '2386' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:43 GMT + - Mon, 09 Jan 2023 19:03:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9ECF0C03D0C942778E3880F59A1F58B2 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:03:37Z' status: code: 200 message: OK @@ -2743,113 +2735,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:46 GMT + - Mon, 09 Jan 2023 19:03:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 39CEBDB3E6354CE5973E0891636C5163 Ref B: BL2AA2030110007 Ref C: 2023-01-09T19:03:38Z' status: code: 200 message: OK @@ -2867,43 +2800,40 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:39:26.753452Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:00:51.9972356Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:39:27.0347119Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:00:54.3722961Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: cache-control: - no-cache content-length: - - '719' + - '720' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:46 GMT + - Mon, 09 Jan 2023 19:03:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6B106F4977CA49F8B58E35870A22A674 Ref B: BL2AA2030110007 Ref C: 2023-01-09T19:03:39Z' status: code: 200 message: OK @@ -2921,16 +2851,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-39-24-89353\",\r\n - \ \"duration\": \"PT2M15.2972376S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-00-45-911da\",\r\n + \ \"duration\": \"PT2M44.2141182S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2942,34 +2871,32 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:38:41.9725775Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:39:24.6975421Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T19:00:45.0095141Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2387' + - '2386' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:47 GMT + - Mon, 09 Jan 2023 19:03:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8E1A4B13B6D84EEF91F50FC9C8027064 Ref B: BL2AA2030105007 Ref C: 2023-01-09T19:03:40Z' status: code: 200 message: OK @@ -2989,10 +2916,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -3002,19 +2928,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:41:47 GMT + - Mon, 09 Jan 2023 19:03:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: 122D4A69B25B495DB53C058EC0252E88 Ref B: BL2AA2030105007 Ref C: 2023-01-09T19:03:41Z' status: code: 200 message: OK @@ -3036,10 +2964,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3051,17 +2978,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:49 GMT + - Mon, 09 Jan 2023 19:03: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-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' + x-msedge-ref: + - 'Ref A: CE08CBE46D614AB3BB356BB20E500091 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:03:43Z' status: code: 201 message: Created @@ -3079,10 +3010,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -3096,17 +3026,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:49 GMT + - Mon, 09 Jan 2023 19:03:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DDDEF2CB65C74627AEA40A0AF6361F03 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:03:46Z' status: code: 404 message: Not Found @@ -3145,10 +3077,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -3161,13 +3092,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:41:51.1185571Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:41:51.1185571Z\"\r\n + \"2023-01-09T19:03:48.6070447Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:03:48.6070447Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3175,19 +3106,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:41:50 GMT + - Mon, 09 Jan 2023 19:03:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: 44F89E7EAAE24CA999ED1ABA417CDBCE Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:03:47Z' status: code: 201 message: Created @@ -3205,37 +3138,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n - \ \"name\": \"3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n + \ \"name\": \"8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:08 GMT + - Mon, 09 Jan 2023 19:04:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2DF11DC281124738BFE9C441490E16F7 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:04:06Z' status: code: 200 message: OK @@ -3253,37 +3183,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n - \ \"name\": \"3062288d-d41a-4a1c-9ba1-361fc24e6d80\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n + \ \"name\": \"8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:38 GMT + - Mon, 09 Jan 2023 19:04:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 289D90245CA54FEFBE501C63CC70C044 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:04:36Z' status: code: 200 message: OK @@ -3301,16 +3228,15 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-41-51-ecc3f\",\r\n - \ \"duration\": \"PT20.0374974S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-03-48-52063\",\r\n + \ \"duration\": \"PT45.5549985S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -3321,9 +3247,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:41:51.1185571Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:03:48.6070447Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3334,21 +3260,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:38 GMT + - Mon, 09 Jan 2023 19:04:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DF4AAA285A71406699E7F4781F9FEA45 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:04:36Z' status: code: 200 message: OK @@ -3366,10 +3290,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3381,17 +3304,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:39 GMT + - Mon, 09 Jan 2023 19:04:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8A47C5E55A304071947E1616C6E5E8A9 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:04:37Z' status: code: 200 message: OK @@ -3409,13 +3334,12 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T18:41:53.0950173Z","changedTime":"2022-11-18T18:41:53.3204727Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:41:53.1783517Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:41:53.1783517Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T19:04:00.8298773Z","changedTime":"2023-01-09T19:04:01.7722476Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:04:01.2663655Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:04:01.2663655Z"}}]}' headers: cache-control: - no-cache @@ -3424,17 +3348,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:39 GMT + - Mon, 09 Jan 2023 19:04:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B833E299E3CC43B6821FF06BB8185605 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:04:38Z' status: code: 200 message: OK @@ -3452,10 +3378,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3467,17 +3392,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:40 GMT + - Mon, 09 Jan 2023 19:04:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 024A0162910D478B971F923D9081EB17 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:04:38Z' status: code: 200 message: OK @@ -3495,16 +3422,15 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-41-51-ecc3f\",\r\n - \ \"duration\": \"PT20.0374974S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-03-48-52063\",\r\n + \ \"duration\": \"PT45.5549985S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -3515,9 +3441,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:41:51.1185571Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:03:48.6070447Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3528,21 +3454,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:41 GMT + - Mon, 09 Jan 2023 19:04:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8D5F8257D3BF42B28FDC715610904B74 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:04:39Z' status: code: 200 message: OK @@ -3571,10 +3495,9 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -3584,14 +3507,14 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:42:41.7111062Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:04:40.9182387Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3599,23 +3522,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:41 GMT + - Mon, 09 Jan 2023 19:04:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: B91656BBD96A4984A0ECF428D55BFC3C Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:04:39Z' status: code: 200 message: OK @@ -3633,37 +3554,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:42:58 GMT + - Mon, 09 Jan 2023 19:04:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CBF3E345AEFE4A4ABCFD033B740ECD96 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:04:58Z' status: code: 200 message: OK @@ -3681,37 +3599,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:43:28 GMT + - Mon, 09 Jan 2023 19:05:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 41C3845B5D7941F7BDB751006E8FF97D Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:05:29Z' status: code: 200 message: OK @@ -3729,37 +3644,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:44:00 GMT + - Mon, 09 Jan 2023 19:05:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BAD0748E331A42C2A7CBB75A2D1F215D Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:06:00Z' status: code: 200 message: OK @@ -3777,37 +3689,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:44:29 GMT + - Mon, 09 Jan 2023 19:06:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 23B46C64E75C4C8DAF0519326D565169 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:06:30Z' status: code: 200 message: OK @@ -3825,37 +3734,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:44:59 GMT + - Mon, 09 Jan 2023 19:07:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8A5C8EDF88D44E5AA1450453968A6EAB Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:07:01Z' status: code: 200 message: OK @@ -3873,37 +3779,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:45:30 GMT + - Mon, 09 Jan 2023 19:07:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 529B1B71BDB847D0A036497E1E014FD8 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:07:32Z' status: code: 200 message: OK @@ -3921,37 +3824,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n - \ \"name\": \"577d5a8c-45e3-48c7-ac00-5fe30f58afd2\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:46:01 GMT + - Mon, 09 Jan 2023 19:08:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AC3C5E12C8FA4C78B790DC1EF03FEB28 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:08:03Z' status: code: 200 message: OK @@ -3969,16 +3869,60 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n + \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 19:08:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DA67638ED939487498D98F8507A86210 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:08:34Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-42-41-3f081\",\r\n - \ \"duration\": \"PT3M15.9305426S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-04-41-4c2cf\",\r\n + \ \"duration\": \"PT3M33.9550805S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -3988,9 +3932,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:42:41.7111062Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T19:04:40.9182387Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4001,21 +3945,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:46:01 GMT + - Mon, 09 Jan 2023 19:08:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C4AC4C5448B7439D9A29AF58CF4D4186 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:08:35Z' status: code: 200 message: OK @@ -4033,10 +3975,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4048,17 +3989,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:46:02 GMT + - Mon, 09 Jan 2023 19:08:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3D8DCCADA2EA49A89EAAFB2AF2860304 Ref B: BL2AA2030105027 Ref C: 2023-01-09T19:08:36Z' status: code: 200 message: OK @@ -4076,10 +4019,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: string: '{"value":[]}' @@ -4091,17 +4033,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:46:02 GMT + - Mon, 09 Jan 2023 19:08:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 017D7293E56E417DB23B51AA28FC529E Ref B: BL2AA2030105027 Ref C: 2023-01-09T19:08:37Z' status: code: 200 message: OK @@ -4117,33 +4061,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:37:26Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T18:57:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '36267' + - '23948' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:46:02 GMT + - Mon, 09 Jan 2023 19:08:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D3FB465BB2814C52A414BE23EBD248A7 Ref B: BL2AA2030107023 Ref C: 2023-01-09T19:08:38Z' status: code: 200 message: OK @@ -4161,16 +4105,15 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-42-41-3f081\",\r\n - \ \"duration\": \"PT3M15.9305426S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-04-41-4c2cf\",\r\n + \ \"duration\": \"PT3M33.9550805S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4180,9 +4123,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:41:51.1185571Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:42:41.7111062Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T19:04:40.9182387Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4193,21 +4136,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:46:03 GMT + - Mon, 09 Jan 2023 19:08:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 49C926C53EF848ADAAC5CE1F8A4243E0 Ref B: BL2AA2030109051 Ref C: 2023-01-09T19:08:39Z' status: code: 200 message: OK @@ -4227,10 +4168,9 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -4240,19 +4180,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:46:03 GMT + - Mon, 09 Jan 2023 19:08:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' + x-msedge-ref: + - 'Ref A: 9CBF01D207AC4B6BB55A1D8D5E8E29F0 Ref B: BL2AA2030109051 Ref C: 2023-01-09T19:08:39Z' status: code: 200 message: OK @@ -4272,10 +4214,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '' @@ -4285,183 +4226,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:46:06 GMT + - Mon, 09 Jan 2023 19:08:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 18:46:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 18:46:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 18:46:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 18:47:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '14993' + x-msedge-ref: + - 'Ref A: D7C533C18D9F4C72B49F590529B87183 Ref B: BL2AA2030110033 Ref C: 2023-01-09T19:08:41Z' status: code: 202 message: Accepted @@ -4479,10 +4260,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -4492,15 +4272,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:47:22 GMT + - Mon, 09 Jan 2023 19:09:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4F20A69947A94870BCA21194A1FA99D9 Ref B: BL2AA2030110033 Ref C: 2023-01-09T19:08:59Z' status: code: 200 message: OK @@ -4522,10 +4306,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4537,17 +4320,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:47:25 GMT + - Mon, 09 Jan 2023 19:09: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-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: 2D83BBA857A84A22868BF8E8AE60DF88 Ref B: BL2AA2030107053 Ref C: 2023-01-09T19:09:01Z' status: code: 201 message: Created @@ -4565,10 +4352,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -4582,17 +4368,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:47:26 GMT + - Mon, 09 Jan 2023 19:09:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2D2EE0FE29C24E55B162F19E7297B4BF Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:04Z' status: code: 404 message: Not Found @@ -4628,10 +4416,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -4643,13 +4430,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:47:27.2942799Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:47:27.2942799Z\"\r\n + \"2023-01-09T19:09:06.6250594Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:06.6250594Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4657,19 +4444,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:47:26 GMT + - Mon, 09 Jan 2023 19:09:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' + x-msedge-ref: + - 'Ref A: B912651077C24A4AA367B486D85E4616 Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:05Z' status: code: 201 message: Created @@ -4687,37 +4476,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n - \ \"name\": \"28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n + \ \"name\": \"93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:47:44 GMT + - Mon, 09 Jan 2023 19:09:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A6DC41430E8D498A9AAD2956D4385105 Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:24Z' status: code: 200 message: OK @@ -4735,37 +4521,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n - \ \"name\": \"28a9412e-515a-4c6b-9152-2e7389d3918e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n + \ \"name\": \"93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:48:14 GMT + - Mon, 09 Jan 2023 19:09:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8A21A45A811A4D819955164388002CC1 Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:54Z' status: code: 200 message: OK @@ -4783,16 +4566,15 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-47-27-e39cf\",\r\n - \ \"duration\": \"PT19.3811555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-06-ff9f5\",\r\n + \ \"duration\": \"PT37.4154109S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4800,9 +4582,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:47:27.2942799Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:06.6250594Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4813,21 +4595,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:48:14 GMT + - Mon, 09 Jan 2023 19:09:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 35C3B05E3DC947B0A465C43E2F28267F Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:55Z' status: code: 200 message: OK @@ -4845,10 +4625,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4860,17 +4639,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:48:15 GMT + - Mon, 09 Jan 2023 19:09:56 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DC250A41349F4CC58EB5B13A94B29CDC Ref B: BL2AA2030108019 Ref C: 2023-01-09T19:09:56Z' status: code: 200 message: OK @@ -4888,16 +4669,15 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-47-27-e39cf\",\r\n - \ \"duration\": \"PT19.3811555S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-06-ff9f5\",\r\n + \ \"duration\": \"PT37.4154109S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4905,9 +4685,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:47:27.2942799Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:06.6250594Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4918,21 +4698,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:48:16 GMT + - Mon, 09 Jan 2023 19:09:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AB7A574EBCCF4406BCCFE38FD5855F14 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:09:56Z' status: code: 200 message: OK @@ -4961,10 +4739,9 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -4974,14 +4751,14 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:48:17.4458492Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:58.8678546Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4989,23 +4766,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:48:17 GMT + - Mon, 09 Jan 2023 19:09:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' + x-msedge-ref: + - 'Ref A: 16BFCA2337D64B0BA1B7DE6640A7B201 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:09:57Z' status: code: 200 message: OK @@ -5023,37 +4798,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n - \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n + \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:48:34 GMT + - Mon, 09 Jan 2023 19:10:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AEDEE778AA744AE7928806F4610ECAE3 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:10:16Z' status: code: 200 message: OK @@ -5071,37 +4843,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n - \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n + \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:49:04 GMT + - Mon, 09 Jan 2023 19:10:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A3E39778B9414A269FBC1F8AAD0C3E65 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:10:47Z' status: code: 200 message: OK @@ -5119,37 +4888,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n - \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n + \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:49:35 GMT + - Mon, 09 Jan 2023 19:11:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 62D40BC2473A453C9B02DB1D0DE7D5D3 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:11:17Z' status: code: 200 message: OK @@ -5167,37 +4933,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n - \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n + \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:50:05 GMT + - Mon, 09 Jan 2023 19:11:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0CC1D2A779BD4BD08B23909BC6D2DC7F Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:11:47Z' status: code: 200 message: OK @@ -5215,37 +4978,34 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n - \ \"name\": \"5d336d91-b0ce-4097-93a2-c0182231cf42\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n + \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:50:35 GMT + - Mon, 09 Jan 2023 19:12:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 85279C277AED41D4A900DE1D2892741C Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:12:18Z' status: code: 200 message: OK @@ -5263,16 +5023,15 @@ interactions: ParameterSetName: - --name -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-48-17-48946\",\r\n - \ \"duration\": \"PT2M16.6427137S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-58-f7866\",\r\n + \ \"duration\": \"PT2M19.53985S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5281,34 +5040,32 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:48:17.4458492Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T19:09:58.8678546Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1654' + - '1652' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:50:36 GMT + - Mon, 09 Jan 2023 19:12:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9914CEB13F644824A8E40A1D6D12A0C0 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:12:18Z' status: code: 200 message: OK @@ -5324,33 +5081,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:37:26Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T18:57:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '36267' + - '23948' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:50:36 GMT + - Mon, 09 Jan 2023 19:12:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D911AE9DBE0D4F9898FF4A07E25AD685 Ref B: BL2AA2030106045 Ref C: 2023-01-09T19:12:19Z' status: code: 200 message: OK @@ -5368,16 +5125,15 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2022-11-18-18-48-17-48946\",\r\n - \ \"duration\": \"PT2M16.6427137S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-58-f7866\",\r\n + \ \"duration\": \"PT2M19.53985S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5386,34 +5142,32 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:47:27.2942799Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:48:17.4458492Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T19:09:58.8678546Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1654' + - '1652' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:50:38 GMT + - Mon, 09 Jan 2023 19:12:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DCD47F456C7A44ABB58DE7E8E249C1E0 Ref B: BL2AA2030109009 Ref C: 2023-01-09T19:12:20Z' status: code: 200 message: OK @@ -5433,10 +5187,9 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -5446,19 +5199,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:50:38 GMT + - Mon, 09 Jan 2023 19:12:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: 60D4543822794D868FD42254D34028D2 Ref B: BL2AA2030109009 Ref C: 2023-01-09T19:12:21Z' status: code: 200 message: OK @@ -5478,10 +5233,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '' @@ -5491,19 +5245,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:50:41 GMT + - Mon, 09 Jan 2023 19:12:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: DBE002124A794323A623DD24BC64CD87 Ref B: BL2AA2030109035 Ref C: 2023-01-09T19:12:23Z' status: code: 202 message: Accepted @@ -5521,10 +5279,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxQjNBQUM2MEE1MkYzRTBDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -5534,15 +5291,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:50:56 GMT + - Mon, 09 Jan 2023 19:12:46 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 93D09C9061EE45E1946B847A716275BE Ref B: BL2AA2030109035 Ref C: 2023-01-09T19:12:47Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 9e01ddfe1a6..d012e1461de 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' @@ -30,17 +29,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:20:31 GMT + - Mon, 09 Jan 2023 17:38: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 8198AA9F7B9445F1ACAF9266CEE3F7F7 Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:13Z' status: code: 404 message: Not Found @@ -58,10 +61,9 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' @@ -75,17 +77,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:20:32 GMT + - Mon, 09 Jan 2023 17:38: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: FD1CD5A394F64A5690A9E962DB3DF716 Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:14Z' status: code: 404 message: Not Found @@ -107,17 +113,16 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:33.9797578Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:16.0500637Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:33.9797578Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:16.0500637Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -128,19 +133,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:20:34 GMT + - Mon, 09 Jan 2023 17:38:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 3F17C868506C45B2A72600DDC6C21CBE Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:14Z' status: code: 201 message: Created @@ -168,10 +175,9 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -187,9 +193,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:35.6680569Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:18.0501351Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:35.6680569Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:18.0501351Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -201,19 +207,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:20:35 GMT + - Mon, 09 Jan 2023 17:38:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 0A4403613D584ED4878020B079CCB57D Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:16Z' status: code: 201 message: Created @@ -231,10 +239,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -247,17 +254,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:20:39 GMT + - Mon, 09 Jan 2023 17:38:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 1489B61216A94CD69EEEDC2B55153E78 Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:19Z' status: code: 404 message: Not Found @@ -287,10 +298,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -304,13 +314,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T17:20:39.9435766Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:39.9435766Z\"\r\n + \"2023-01-09T17:38:20.3036705Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:20.3036705Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a175934-c23a-4bb9-8067-e752a2cc1e44?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -318,19 +328,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:20:43 GMT + - Mon, 09 Jan 2023 17:38:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E908771FDDAA43FCAC2DB37226E6AEFC Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:20Z' status: code: 201 message: Created @@ -348,37 +360,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a175934-c23a-4bb9-8067-e752a2cc1e44?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a175934-c23a-4bb9-8067-e752a2cc1e44\",\r\n - \ \"name\": \"7a175934-c23a-4bb9-8067-e752a2cc1e44\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee\",\r\n + \ \"name\": \"8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:00 GMT + - Mon, 09 Jan 2023 17:38:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 485CD6DD3784436D89C4794DC06C77A3 Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:37Z' status: code: 200 message: OK @@ -396,18 +405,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-20-43-16a29\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-20-43e1b\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.1444334S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT14.7002862S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -417,34 +425,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:39.9435766Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:20.3036705Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:39.9435766Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:20.3036705Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1600' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:01 GMT + - Mon, 09 Jan 2023 17:38:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FE54CAA5DE8349A69CE617A9A5872C24 Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:38Z' status: code: 200 message: OK @@ -462,18 +468,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-20-43-16a29\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-20-43e1b\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.1444334S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT14.7002862S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -483,34 +488,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:39.9435766Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:20.3036705Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:39.9435766Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:20.3036705Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1600' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:04 GMT + - Mon, 09 Jan 2023 17:38:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 49F6FB5629D448908631C87CB0134A0C Ref B: BL2AA2030108009 Ref C: 2023-01-09T17:38:38Z' status: code: 200 message: OK @@ -530,10 +533,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -543,19 +545,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:21:05 GMT + - Mon, 09 Jan 2023 17:38:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 8736835238C941169F99D1ADBB96D6C4 Ref B: BL2AA2030108009 Ref C: 2023-01-09T17:38:39Z' status: code: 200 message: OK @@ -573,10 +577,9 @@ interactions: ParameterSetName: - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -589,17 +592,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:08 GMT + - Mon, 09 Jan 2023 17:38:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 9EE72F39AF374E7F96AAC2A7998DFFC4 Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:38:40Z' status: code: 404 message: Not Found @@ -617,10 +624,9 @@ interactions: ParameterSetName: - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -636,9 +642,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:20:35.6680569Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:18.0501351Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:20:35.6680569Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:18.0501351Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -650,21 +656,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:09 GMT + - Mon, 09 Jan 2023 17:38:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F309521FC9124C7EA80FF3694449728D Ref B: BL2AA2030106037 Ref C: 2023-01-09T17:38:42Z' status: code: 200 message: OK @@ -689,10 +693,9 @@ interactions: ParameterSetName: - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -706,14 +709,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:10.5699914Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:43.6188837Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:10.5699914Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:43.6188837Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/27ed7bec-6554-497f-b850-491591d27dae?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f41fe600-b22b-4d6c-af5d-1d1a47566002?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -721,19 +724,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:14 GMT + - Mon, 09 Jan 2023 17:38:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: CF4CE6E8485A4024B012939C7F075AE0 Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:38:43Z' status: code: 201 message: Created @@ -751,37 +756,34 @@ interactions: ParameterSetName: - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/27ed7bec-6554-497f-b850-491591d27dae?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f41fe600-b22b-4d6c-af5d-1d1a47566002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/27ed7bec-6554-497f-b850-491591d27dae\",\r\n - \ \"name\": \"27ed7bec-6554-497f-b850-491591d27dae\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f41fe600-b22b-4d6c-af5d-1d1a47566002\",\r\n + \ \"name\": \"f41fe600-b22b-4d6c-af5d-1d1a47566002\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:31 GMT + - Mon, 09 Jan 2023 17:39:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 285E0882B3D240F9A87BBE216A2A8B6F Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:39:02Z' status: code: 200 message: OK @@ -799,18 +801,17 @@ interactions: ParameterSetName: - --name --location --template-spec --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-14-28ceb\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-44-dd448\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.0170355S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.4111158S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -821,9 +822,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:10.5699914Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:43.6188837Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:10.5699914Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:43.6188837Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -834,21 +835,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:31 GMT + - Mon, 09 Jan 2023 17:39:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E3A12DDF0D7349768FA610CE84299CA4 Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:39:03Z' status: code: 200 message: OK @@ -866,18 +865,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-14-28ceb\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-44-dd448\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.0170355S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.4111158S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -888,9 +886,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:10.5699914Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:43.6188837Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:10.5699914Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:43.6188837Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -901,21 +899,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:35 GMT + - Mon, 09 Jan 2023 17:39:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1199FB78EF984C4A87F3629EA9A53283 Ref B: BL2AA2030106009 Ref C: 2023-01-09T17:39:04Z' status: code: 200 message: OK @@ -935,10 +931,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -948,19 +943,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:21:37 GMT + - Mon, 09 Jan 2023 17:39:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 253635F6701F464A95621CF9AC7FC23B Ref B: BL2AA2030106009 Ref C: 2023-01-09T17:39:04Z' status: code: 200 message: OK @@ -978,10 +975,9 @@ interactions: ParameterSetName: - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -994,17 +990,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:39 GMT + - Mon, 09 Jan 2023 17:39: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 8B9C15C68D9A44A5AB427B296F3696DF Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:05Z' status: code: 404 message: Not Found @@ -1034,10 +1034,9 @@ interactions: ParameterSetName: - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1051,13 +1050,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T17:21:39.7695996Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:39.7695996Z\"\r\n + \"2023-01-09T17:39:06.4598948Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:06.4598948Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/62891304-12f8-4937-b0bd-f4a54264d701?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7652cbf8-dda8-403c-bac7-8bb31c537826?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1065,19 +1064,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:42 GMT + - Mon, 09 Jan 2023 17:39:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 58D61C7F6F9B416CA5583C9883187D1C Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:06Z' status: code: 201 message: Created @@ -1095,37 +1096,34 @@ interactions: ParameterSetName: - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/62891304-12f8-4937-b0bd-f4a54264d701?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7652cbf8-dda8-403c-bac7-8bb31c537826?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/62891304-12f8-4937-b0bd-f4a54264d701\",\r\n - \ \"name\": \"62891304-12f8-4937-b0bd-f4a54264d701\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7652cbf8-dda8-403c-bac7-8bb31c537826\",\r\n + \ \"name\": \"7652cbf8-dda8-403c-bac7-8bb31c537826\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:21:59 GMT + - Mon, 09 Jan 2023 17:39:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 958CD7DF9A7F4C448995E81CAB2320D5 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:23Z' status: code: 200 message: OK @@ -1143,18 +1141,17 @@ interactions: ParameterSetName: - --name --location --template-file --resource-group --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-42-2511d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-06-2cfd3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT7.8514216S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT11.402607S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1164,9 +1161,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:39.7695996Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:06.4598948Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:39.7695996Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:06.4598948Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1177,21 +1174,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:00 GMT + - Mon, 09 Jan 2023 17:39:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B3BD4E7C44FF452EB2838BA0308BF388 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:24Z' status: code: 200 message: OK @@ -1209,18 +1204,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-21-42-2511d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-06-2cfd3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT7.8514216S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT11.402607S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1230,9 +1224,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:21:39.7695996Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:06.4598948Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:21:39.7695996Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:06.4598948Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1243,21 +1237,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:03 GMT + - Mon, 09 Jan 2023 17:39:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5E5600C64E0A477FA0A543B94194D00A Ref B: BL2AA2030107025 Ref C: 2023-01-09T17:39:24Z' status: code: 200 message: OK @@ -1277,10 +1269,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1290,19 +1281,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:22:05 GMT + - Mon, 09 Jan 2023 17:39:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: EA93FA36C7FF46C696F7B5051B670AF0 Ref B: BL2AA2030107025 Ref C: 2023-01-09T17:39:27Z' status: code: 200 message: OK @@ -1320,10 +1313,9 @@ interactions: ParameterSetName: - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -1336,17 +1328,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:08 GMT + - Mon, 09 Jan 2023 17:39:29 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 3A7D62A743124693A135C6C15A20E353 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:29Z' status: code: 404 message: Not Found @@ -1374,15 +1370,15 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:22:11 GMT + - Mon, 09 Jan 2023 17:39:31 GMT expires: - - Fri, 18 Nov 2022 17:22:11 GMT + - Mon, 09 Jan 2023 17:39:31 GMT location: - - https://api.github.com/repos/Azure/bicep/releases/latest + - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 server: - Kestrel strict-transport-security: @@ -1404,75 +1400,62 @@ interactions: User-Agent: - python-requests/2.26.0 method: GET - uri: https://api.github.com/repos/Azure/bicep/releases/latest + uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589","assets_url":"https://api.github.com/repos/Azure/bicep/releases/82328589/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/82328589/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.12.40","id":82328589,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4E6DwN","tag_name":"v0.12.40","target_commitish":"main","name":"v0.12.40","draft":false,"prerelease":false,"created_at":"2022-11-07T20:36:40Z","published_at":"2022-11-08T00:33:06Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810432","id":83810432,"node_id":"RA_kwDOD7S9ks4E_tiA","name":"Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21621241,"download_count":6,"created_at":"2022-11-08T00:14:33Z","updated_at":"2022-11-08T00:14:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810410","id":83810410,"node_id":"RA_kwDOD7S9ks4E_thq","name":"Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22089629,"download_count":4,"created_at":"2022-11-08T00:14:22Z","updated_at":"2022-11-08T00:14:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.linux-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810466","id":83810466,"node_id":"RA_kwDOD7S9ks4E_tii","name":"Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21514215,"download_count":6,"created_at":"2022-11-08T00:14:57Z","updated_at":"2022-11-08T00:14:58Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810446","id":83810446,"node_id":"RA_kwDOD7S9ks4E_tiO","name":"Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21998044,"download_count":4,"created_at":"2022-11-08T00:14:43Z","updated_at":"2022-11-08T00:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.osx-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810400","id":83810400,"node_id":"RA_kwDOD7S9ks4E_thg","name":"Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21908652,"download_count":7,"created_at":"2022-11-08T00:14:08Z","updated_at":"2022-11-08T00:14:09Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-arm64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810386","id":83810386,"node_id":"RA_kwDOD7S9ks4E_thS","name":"Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22179616,"download_count":8,"created_at":"2022-11-08T00:13:56Z","updated_at":"2022-11-08T00:13:57Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.CommandLine.win-x64.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810314","id":83810314,"node_id":"RA_kwDOD7S9ks4E_tgK","name":"Azure.Bicep.Core.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":474567,"download_count":4,"created_at":"2022-11-08T00:12:37Z","updated_at":"2022-11-08T00:12:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810315","id":83810315,"node_id":"RA_kwDOD7S9ks4E_tgL","name":"Azure.Bicep.Core.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":157634,"download_count":5,"created_at":"2022-11-08T00:12:39Z","updated_at":"2022-11-08T00:12:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Core.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810318","id":83810318,"node_id":"RA_kwDOD7S9ks4E_tgO","name":"Azure.Bicep.Decompiler.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":88874,"download_count":5,"created_at":"2022-11-08T00:12:41Z","updated_at":"2022-11-08T00:12:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810326","id":83810326,"node_id":"RA_kwDOD7S9ks4E_tgW","name":"Azure.Bicep.Decompiler.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22628,"download_count":4,"created_at":"2022-11-08T00:12:43Z","updated_at":"2022-11-08T00:12:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.Decompiler.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810327","id":83810327,"node_id":"RA_kwDOD7S9ks4E_tgX","name":"Azure.Bicep.MSBuild.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45332,"download_count":5,"created_at":"2022-11-08T00:12:45Z","updated_at":"2022-11-08T00:12:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810329","id":83810329,"node_id":"RA_kwDOD7S9ks4E_tgZ","name":"Azure.Bicep.MSBuild.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6944,"download_count":4,"created_at":"2022-11-08T00:12:47Z","updated_at":"2022-11-08T00:12:48Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.MSBuild.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810330","id":83810330,"node_id":"RA_kwDOD7S9ks4E_tga","name":"Azure.Bicep.RegistryModuleTool.0.12.40.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20311508,"download_count":8,"created_at":"2022-11-08T00:12:49Z","updated_at":"2022-11-08T00:12:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810333","id":83810333,"node_id":"RA_kwDOD7S9ks4E_tgd","name":"Azure.Bicep.RegistryModuleTool.0.12.40.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":173868,"download_count":4,"created_at":"2022-11-08T00:12:53Z","updated_at":"2022-11-08T00:12:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/Azure.Bicep.RegistryModuleTool.0.12.40.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810337","id":83810337,"node_id":"RA_kwDOD7S9ks4E_tgh","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21491148,"download_count":7,"created_at":"2022-11-08T00:12:57Z","updated_at":"2022-11-08T00:12:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810273","id":83810273,"node_id":"RA_kwDOD7S9ks4E_tfh","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42885924,"download_count":127,"created_at":"2022-11-08T00:11:21Z","updated_at":"2022-11-08T00:11:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810283","id":83810283,"node_id":"RA_kwDOD7S9ks4E_tfr","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43387396,"download_count":5711,"created_at":"2022-11-08T00:11:37Z","updated_at":"2022-11-08T00:11:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810264","id":83810264,"node_id":"RA_kwDOD7S9ks4E_tfY","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43486721,"download_count":57475,"created_at":"2022-11-08T00:11:07Z","updated_at":"2022-11-08T00:11:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810297","id":83810297,"node_id":"RA_kwDOD7S9ks4E_tf5","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":42819184,"download_count":14,"created_at":"2022-11-08T00:12:06Z","updated_at":"2022-11-08T00:12:10Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810288","id":83810288,"node_id":"RA_kwDOD7S9ks4E_tfw","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43537828,"download_count":2863,"created_at":"2022-11-08T00:11:53Z","updated_at":"2022-11-08T00:11:56Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810311","id":83810311,"node_id":"RA_kwDOD7S9ks4E_tgH","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":19909000,"download_count":2462,"created_at":"2022-11-08T00:12:29Z","updated_at":"2022-11-08T00:12:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810347","id":83810347,"node_id":"RA_kwDOD7S9ks4E_tgr","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43269504,"download_count":7,"created_at":"2022-11-08T00:13:09Z","updated_at":"2022-11-08T00:13:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810313","id":83810313,"node_id":"RA_kwDOD7S9ks4E_tgJ","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42607240,"download_count":36395,"created_at":"2022-11-08T00:12:33Z","updated_at":"2022-11-08T00:12:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810368","id":83810368,"node_id":"RA_kwDOD7S9ks4E_thA","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":42793813,"download_count":5,"created_at":"2022-11-08T00:13:44Z","updated_at":"2022-11-08T00:13:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/83810360","id":83810360,"node_id":"RA_kwDOD7S9ks4E_tg4","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":70848179,"download_count":92,"created_at":"2022-11-08T00:13:29Z","updated_at":"2022-11-08T00:13:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.12.40/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.12.40","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.12.40","body":"## - Features and bug fixes\r\n\r\nThis is a hotfix for some unintended breaking - changes that went out with the v0.12.1 release. Apologies for any inconvenience - this may have caused!\r\n\r\nBicep team:\r\n* Make sure that single-item allowed - decorators on arrays are treated the same as decorators with multiple items - (#8893)\r\n* Correct union assignability check when both sides of the assignment - are unions (#8899)\r\n* Use imported type rather than narrowed type for union - branches within resource declaration (#8902)\r\n* Incorporate type names into - Bicep symbol table (#8876)\r\n* Update TypeHelper.IsLiteralType to avoid catching - LanguageConstants.Object (#8952)\r\n* Fix an issue where building file with - deeply nested external modules throws (#8903)\r\n* Allow ''asazure.windows.net'' - for no-hardcoded-env-urls (#8871)","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/82328589/reactions","total_count":9,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":9,"rocket":0,"eyes":0}}' - headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' - access-control-expose-headers: - - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, - X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, - X-GitHub-Request-Id, Deprecation, Sunset - cache-control: - - public, max-age=60, s-maxage=60 + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554","assets_url":"https://api.github.com/repos/Azure/bicep/releases/85011554/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/85011554/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.13.1","id":85011554,"author":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4FESxi","tag_name":"v0.13.1","target_commitish":"main","name":"v0.13.1","draft":false,"prerelease":false,"created_at":"2022-12-02T16:18:55Z","published_at":"2022-12-05T22:40:09Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086565","id":87086565,"node_id":"RA_kwDOD7S9ks4FMNXl","name":"Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21939065,"download_count":37,"created_at":"2022-12-05T16:25:42Z","updated_at":"2022-12-05T16:25:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086537","id":87086537,"node_id":"RA_kwDOD7S9ks4FMNXJ","name":"Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22405300,"download_count":37,"created_at":"2022-12-05T16:25:27Z","updated_at":"2022-12-05T16:25:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086633","id":87086633,"node_id":"RA_kwDOD7S9ks4FMNYp","name":"Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21834574,"download_count":38,"created_at":"2022-12-05T16:26:36Z","updated_at":"2022-12-05T16:26:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086599","id":87086599,"node_id":"RA_kwDOD7S9ks4FMNYH","name":"Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22318205,"download_count":33,"created_at":"2022-12-05T16:26:09Z","updated_at":"2022-12-05T16:26:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086501","id":87086501,"node_id":"RA_kwDOD7S9ks4FMNWl","name":"Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22223402,"download_count":41,"created_at":"2022-12-05T16:25:12Z","updated_at":"2022-12-05T16:25:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086439","id":87086439,"node_id":"RA_kwDOD7S9ks4FMNVn","name":"Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22492654,"download_count":61,"created_at":"2022-12-05T16:24:45Z","updated_at":"2022-12-05T16:24:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086104","id":87086104,"node_id":"RA_kwDOD7S9ks4FMNQY","name":"Azure.Bicep.Core.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":484757,"download_count":42,"created_at":"2022-12-05T16:22:36Z","updated_at":"2022-12-05T16:22:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086106","id":87086106,"node_id":"RA_kwDOD7S9ks4FMNQa","name":"Azure.Bicep.Core.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":160641,"download_count":29,"created_at":"2022-12-05T16:22:38Z","updated_at":"2022-12-05T16:22:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086111","id":87086111,"node_id":"RA_kwDOD7S9ks4FMNQf","name":"Azure.Bicep.Decompiler.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":89986,"download_count":32,"created_at":"2022-12-05T16:22:40Z","updated_at":"2022-12-05T16:22:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086116","id":87086116,"node_id":"RA_kwDOD7S9ks4FMNQk","name":"Azure.Bicep.Decompiler.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22644,"download_count":31,"created_at":"2022-12-05T16:22:42Z","updated_at":"2022-12-05T16:22:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086120","id":87086120,"node_id":"RA_kwDOD7S9ks4FMNQo","name":"Azure.Bicep.MSBuild.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45377,"download_count":30,"created_at":"2022-12-05T16:22:44Z","updated_at":"2022-12-05T16:22:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086133","id":87086133,"node_id":"RA_kwDOD7S9ks4FMNQ1","name":"Azure.Bicep.MSBuild.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6940,"download_count":30,"created_at":"2022-12-05T16:22:47Z","updated_at":"2022-12-05T16:22:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086137","id":87086137,"node_id":"RA_kwDOD7S9ks4FMNQ5","name":"Azure.Bicep.RegistryModuleTool.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20623971,"download_count":35,"created_at":"2022-12-05T16:22:49Z","updated_at":"2022-12-05T16:22:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086144","id":87086144,"node_id":"RA_kwDOD7S9ks4FMNRA","name":"Azure.Bicep.RegistryModuleTool.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":177071,"download_count":32,"created_at":"2022-12-05T16:22:53Z","updated_at":"2022-12-05T16:22:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086154","id":87086154,"node_id":"RA_kwDOD7S9ks4FMNRK","name":"bicep-langserver.zip","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21965645,"download_count":351,"created_at":"2022-12-05T16:22:59Z","updated_at":"2022-12-05T16:23:02Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085752","id":87085752,"node_id":"RA_kwDOD7S9ks4FMNK4","name":"bicep-linux-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43262692,"download_count":95,"created_at":"2022-12-05T16:19:34Z","updated_at":"2022-12-05T16:19:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085814","id":87085814,"node_id":"RA_kwDOD7S9ks4FMNL2","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43759556,"download_count":9734,"created_at":"2022-12-05T16:20:06Z","updated_at":"2022-12-05T16:20:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085712","id":87085712,"node_id":"RA_kwDOD7S9ks4FMNKQ","name":"bicep-linux-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43858881,"download_count":124069,"created_at":"2022-12-05T16:19:13Z","updated_at":"2022-12-05T16:19:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085981","id":87085981,"node_id":"RA_kwDOD7S9ks4FMNOd","name":"bicep-osx-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43195952,"download_count":54,"created_at":"2022-12-05T16:21:26Z","updated_at":"2022-12-05T16:21:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085880","id":87085880,"node_id":"RA_kwDOD7S9ks4FMNM4","name":"bicep-osx-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43910500,"download_count":3907,"created_at":"2022-12-05T16:20:32Z","updated_at":"2022-12-05T16:20:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086072","id":87086072,"node_id":"RA_kwDOD7S9ks4FMNP4","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":20197576,"download_count":3160,"created_at":"2022-12-05T16:22:23Z","updated_at":"2022-12-05T16:22:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086182","id":87086182,"node_id":"RA_kwDOD7S9ks4FMNRm","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43646240,"download_count":24,"created_at":"2022-12-05T16:23:16Z","updated_at":"2022-12-05T16:23:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086080","id":87086080,"node_id":"RA_kwDOD7S9ks4FMNQA","name":"bicep-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42979416,"download_count":79968,"created_at":"2022-12-05T16:22:29Z","updated_at":"2022-12-05T16:22:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086332","id":87086332,"node_id":"RA_kwDOD7S9ks4FMNT8","name":"vs-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":44307809,"download_count":19,"created_at":"2022-12-05T16:24:13Z","updated_at":"2022-12-05T16:24:18Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086257","id":87086257,"node_id":"RA_kwDOD7S9ks4FMNSx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":72127899,"download_count":213,"created_at":"2022-12-05T16:23:46Z","updated_at":"2022-12-05T16:23:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.13.1","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.13.1","body":"## + Highlights\r\n\r\nBicep team:\r\n* Bicep deploy - support deployment to azure + cloud (#9097)\r\n\r\n@miqm\r\n* Emitting getSecret inside a ternary expression + (#8658)\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* Fix for partially-typed + resource type completions (#9158)\r\n* InsertResource: Use json() function + to format non-integer number (#9162)\r\n* Support fully-qualified ambient + type symbols in output declaration type clauses (#8961)\r\n* Fix `flatten` + signature (#9117)\r\n* Block nested runtime functions (#8965)\r\n\r\n@matsest\r\n* + fix(vscode): add icons for container apps (#9101)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554/reactions","total_count":3,"+1":3,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"mentions_count":2}' + headers: content-length: - - '36243' - content-security-policy: - - default-src 'none' + - '37819' + content-md5: + - AgX12F8ZaKu1BzTchU1bbw== content-type: - - application/json; charset=utf-8 + - application/octet-stream date: - - Fri, 18 Nov 2022 17:22:11 GMT + - Mon, 09 Jan 2023 17:39:30 GMT etag: - - W/"7ead2a3f529313f80e5db18de3c9011201bf15a730dc6097882fbea4e436ab5a" + - '0x8DAF263A6765CC8' last-modified: - - Tue, 08 Nov 2022 00:33:06 GMT - referrer-policy: - - origin-when-cross-origin, strict-origin-when-cross-origin + - Mon, 09 Jan 2023 17:05:03 GMT server: - - GitHub.com - strict-transport-security: - - max-age=31536000; includeSubdomains; preload - transfer-encoding: - - chunked - vary: - - Accept, Accept-Encoding, Accept, X-Requested-With - x-content-type-options: - - nosniff - x-frame-options: - - deny - x-github-media-type: - - github.v3; format=json - x-github-request-id: - - FBF7:5332:FA5058:201DC7D:6377BF43 - x-ratelimit-limit: - - '60' - x-ratelimit-remaining: - - '59' - x-ratelimit-reset: - - '1668795731' - x-ratelimit-resource: - - core - x-ratelimit-used: - - '1' - x-xss-protection: - - '0' + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-azure-ref: + - 0U1G8YwAAAAAWxkD3JP1MRqnNTbuB2dyrTU5aMjIxMDYwNjE0MDIzADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + x-azure-ref-originshield: + - 0U1G8YwAAAACVwS0MDS0HSISC+9voAUwvTU5aMjIxMDYwNjExMDE5ADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + x-cache: + - TCP_REMOTE_HIT + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' status: code: 200 message: OK @@ -1504,10 +1487,9 @@ interactions: ParameterSetName: - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1519,13 +1501,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T17:22:15.3148987Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:15.3148987Z\"\r\n + \"2023-01-09T17:39:33.6039202Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:33.6039202Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b12897cd-523e-4d18-a374-fe46e11946cb?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/26bf3535-696f-4c97-ad80-d421d6b630e1?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1533,19 +1515,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:21 GMT + - Mon, 09 Jan 2023 17:39:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: BC1B2B7C7ACA4B91B785C3BF1C3CEEF4 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:33Z' status: code: 201 message: Created @@ -1563,37 +1547,34 @@ interactions: ParameterSetName: - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b12897cd-523e-4d18-a374-fe46e11946cb?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/26bf3535-696f-4c97-ad80-d421d6b630e1?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b12897cd-523e-4d18-a374-fe46e11946cb\",\r\n - \ \"name\": \"b12897cd-523e-4d18-a374-fe46e11946cb\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/26bf3535-696f-4c97-ad80-d421d6b630e1\",\r\n + \ \"name\": \"26bf3535-696f-4c97-ad80-d421d6b630e1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:38 GMT + - Mon, 09 Jan 2023 17:39:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 39F83D9F8E2A4390929E3AF7D2099490 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:50Z' status: code: 200 message: OK @@ -1611,18 +1592,17 @@ interactions: ParameterSetName: - --name --location --template-file -g --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-21-1df49\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-33-78543\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT11.2926387S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.3833751S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1632,9 +1612,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:15.3148987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:33.6039202Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:15.3148987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:33.6039202Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1645,21 +1625,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:39 GMT + - Mon, 09 Jan 2023 17:39:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3693BFB3361747F697A45334F2E2993B Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:51Z' status: code: 200 message: OK @@ -1677,18 +1655,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-21-1df49\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-33-78543\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT11.2926387S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.3833751S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1698,9 +1675,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:15.3148987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:33.6039202Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:15.3148987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:33.6039202Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1711,21 +1688,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:42 GMT + - Mon, 09 Jan 2023 17:39:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5E9F9F9AAA7C45ED8DB4D20A4CB8F512 Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:39:51Z' status: code: 200 message: OK @@ -1745,10 +1720,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1758,19 +1732,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:22:44 GMT + - Mon, 09 Jan 2023 17:39:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: F7A27E12DF5449648086542B29DBE87A Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:39:55Z' status: code: 200 message: OK @@ -1792,10 +1768,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1807,17 +1782,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:46 GMT + - Mon, 09 Jan 2023 17:39: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-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 442D5B74D0114E0286D3B2AE3BD40A43 Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:39:57Z' status: code: 201 message: Created @@ -1835,10 +1814,9 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -1851,17 +1829,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:48 GMT + - Mon, 09 Jan 2023 17:39: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 85B6BF5E89224F51B8E8B5A0BFAC2F7C Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:39:59Z' status: code: 404 message: Not Found @@ -1901,10 +1883,9 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1917,14 +1898,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:49.5517913Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:00.7525414Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ab0a67a-5c9e-4303-b377-db8dfe6e067f?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1932,19 +1913,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:22:51 GMT + - Mon, 09 Jan 2023 17:40:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 88FD6C6BF7214BC99A56E9062157A5AF Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:00Z' status: code: 201 message: Created @@ -1962,37 +1945,79 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ab0a67a-5c9e-4303-b377-db8dfe6e067f?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ab0a67a-5c9e-4303-b377-db8dfe6e067f\",\r\n - \ \"name\": \"4ab0a67a-5c9e-4303-b377-db8dfe6e067f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n + \ \"name\": \"5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:08 GMT + - Mon, 09 Jan 2023 17:40:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: ADAFF020F51D4FD187EC9F9C23829BB6 Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n + \ \"name\": \"5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 17:40:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 87661F39246E4D4DAC33C17E9D667D6D Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:50Z' status: code: 200 message: OK @@ -2010,18 +2035,17 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-52-a9d2a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-02-d2dae\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.7563478S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT27.6800006S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2031,34 +2055,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:49.5517913Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:00.7525414Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2098' + - '2099' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:09 GMT + - Mon, 09 Jan 2023 17:40:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 21624E43AD4B40C5BCFA88B062ACB87C Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:51Z' status: code: 200 message: OK @@ -2076,18 +2098,17 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-22-52-a9d2a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-02-d2dae\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.7563478S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT27.6800006S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2097,34 +2118,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:49.5517913Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:00.7525414Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2098' + - '2099' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:11 GMT + - Mon, 09 Jan 2023 17:40:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1EFD0E81A9604FB2801C6E32793A61F5 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:40:52Z' status: code: 200 message: OK @@ -2164,10 +2183,9 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -2180,14 +2198,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:13.4261756Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:54.5338285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6aa3c94-ae5e-44e7-890d-e026c7279dd9?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a764cc0c-8552-41d3-9bab-b607a724f4c5?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -2195,23 +2213,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:13 GMT + - Mon, 09 Jan 2023 17:40:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: E26F9448AF04469D9239AB10E42A5739 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:40:53Z' status: code: 200 message: OK @@ -2229,37 +2245,34 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6aa3c94-ae5e-44e7-890d-e026c7279dd9?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a764cc0c-8552-41d3-9bab-b607a724f4c5?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6aa3c94-ae5e-44e7-890d-e026c7279dd9\",\r\n - \ \"name\": \"e6aa3c94-ae5e-44e7-890d-e026c7279dd9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a764cc0c-8552-41d3-9bab-b607a724f4c5\",\r\n + \ \"name\": \"a764cc0c-8552-41d3-9bab-b607a724f4c5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:31 GMT + - Mon, 09 Jan 2023 17:41:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D138F443256F4C0D862AEABAC68EB006 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:41:12Z' status: code: 200 message: OK @@ -2277,18 +2290,17 @@ interactions: ParameterSetName: - --name --location --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-14-9a099\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-55-ae7e1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.6101636S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT17.178845S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2300,9 +2312,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:13.4261756Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:54.5338285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2313,21 +2325,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:32 GMT + - Mon, 09 Jan 2023 17:41:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C13300AECB444AE68B739783A61BAEA9 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:41:13Z' status: code: 200 message: OK @@ -2345,113 +2355,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:33 GMT + - Mon, 09 Jan 2023 17:41:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 019804A165C443DF9B6189FFC3A0C772 Ref B: BL2AA2030108033 Ref C: 2023-01-09T17:41:14Z' status: code: 200 message: OK @@ -2469,18 +2420,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:54.6876144Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:11.6494562Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:55.1720239Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:15.2743821Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2491,21 +2441,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:34 GMT + - Mon, 09 Jan 2023 17:41:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8B494009144F40B5A27127B75A7BFCAD Ref B: BL2AA2030108033 Ref C: 2023-01-09T17:41:14Z' status: code: 200 message: OK @@ -2523,113 +2471,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:36 GMT + - Mon, 09 Jan 2023 17:41:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7BD6538BD4A24AAC9C8B20B606B22F75 Ref B: BL2AA2030105037 Ref C: 2023-01-09T17:41:14Z' status: code: 200 message: OK @@ -2647,18 +2536,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:23:17.8943424Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:41:02.3354512Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:18.3787275Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:41:05.8823072Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2669,21 +2557,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:36 GMT + - Mon, 09 Jan 2023 17:41:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9BF32DEA864E4592AC9CA878097E1B29 Ref B: BL2AA2030105037 Ref C: 2023-01-09T17:41:15Z' status: code: 200 message: OK @@ -2702,18 +2588,17 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-14-9a099\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-55-ae7e1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.6101636S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT17.178845S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2725,9 +2610,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:13.4261756Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:54.5338285Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2738,21 +2623,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:39 GMT + - Mon, 09 Jan 2023 17:41:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E39678B59E5941A599653E5B21EE676E Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:41:16Z' status: code: 200 message: OK @@ -2793,10 +2676,9 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -2809,14 +2691,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:40.4423499Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:41:16.8266269Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -2824,23 +2706,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:41 GMT + - Mon, 09 Jan 2023 17:41:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: 8ADB7AA468284AC28CAAB7869ECA58EC Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:41:16Z' status: code: 200 message: OK @@ -2859,37 +2739,34 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n - \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n + \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:23:59 GMT + - Mon, 09 Jan 2023 17:41:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 31DDE9143A7E481898B98351F9EA61F2 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:41:34Z' status: code: 200 message: OK @@ -2908,37 +2785,34 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n - \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n + \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:24:29 GMT + - Mon, 09 Jan 2023 17:42:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7A14E82BC8B34AB0925444D9E6EBBB62 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:42:04Z' status: code: 200 message: OK @@ -2957,37 +2831,34 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n - \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n + \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:24:59 GMT + - Mon, 09 Jan 2023 17:42:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2451E67C38534D0E8F931C73D967475F Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:42:34Z' status: code: 200 message: OK @@ -3006,37 +2877,34 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n - \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n + \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:25:29 GMT + - Mon, 09 Jan 2023 17:43:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9C31CCEA42CC438CB6A9800CB0E0E099 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:43:04Z' status: code: 200 message: OK @@ -3055,37 +2923,34 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/683be21d-545d-4554-933b-ede30dab0e21\",\r\n - \ \"name\": \"683be21d-545d-4554-933b-ede30dab0e21\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n + \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:00 GMT + - Mon, 09 Jan 2023 17:43:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0D1FB24333AA4110AF7E9E80D3E2443D Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:43:35Z' status: code: 200 message: OK @@ -3104,18 +2969,63 @@ interactions: - --name --location --resource-group --template-file --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n + \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 17:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D0FAB6416DE74D758722396DD92A5691 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:44:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --resource-group --template-file --parameters --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-42-1569c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-41-16-e0825\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M19.5476408S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M32.7702991S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3127,9 +3037,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T17:23:40.4423499Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T17:41:16.8266269Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3140,21 +3050,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:01 GMT + - Mon, 09 Jan 2023 17:44:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 57D1F6BE50FE470FB39D349FC9F35A12 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:44:06Z' status: code: 200 message: OK @@ -3172,113 +3080,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:03 GMT + - Mon, 09 Jan 2023 17:44:06 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AAA251DFE9FB4257BCF7826D469AAB0F Ref B: BL2AA2030109053 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3296,18 +3145,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:54.6876144Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:11.6494562Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:22:55.1720239Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:15.2743821Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -3318,21 +3166,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:04 GMT + - Mon, 09 Jan 2023 17:44:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B61020EA433F4BEFAB187D5ACCE6D6DD Ref B: BL2AA2030109053 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3350,113 +3196,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:05 GMT + - Mon, 09 Jan 2023 17:44:07 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2CC59F370F9643B78D291F87841E0AF7 Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3474,18 +3261,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:23:45.2721619Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:41:26.3634738Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:23:45.5846035Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:41:28.5041107Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3496,21 +3282,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:05 GMT + - Mon, 09 Jan 2023 17:44:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3569C4EF26D54C2097699CC2087AB309 Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3528,10 +3312,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3543,17 +3326,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:07 GMT + - Mon, 09 Jan 2023 17:44:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C0C95125BA294D7EA9B462049D9BEAAC Ref B: BL2AA2030110039 Ref C: 2023-01-09T17:44:08Z' status: code: 200 message: OK @@ -3571,32 +3356,33 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T17:22:54.6592614Z","changedTime":"2022-11-18T17:22:54.848027Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:22:54.6876144Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:22:54.6876144Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T17:22:55.1167124Z","changedTime":"2022-11-18T17:22:55.3135308Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:22:55.1720239Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:22:55.1720239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T17:23:45.2434858Z","changedTime":"2022-11-18T17:23:45.3820599Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:23:45.2721619Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:23:45.2721619Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T17:23:45.5606182Z","changedTime":"2022-11-18T17:23:45.7222231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:23:45.5846035Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:23:45.5846035Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:40:11.1336327Z","changedTime":"2023-01-09T17:40:12.3328551Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:40:11.6494562Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:40:11.6494562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:40:14.7515876Z","changedTime":"2023-01-09T17:40:15.7768268Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:40:15.2743821Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:40:15.2743821Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:41:25.5181673Z","changedTime":"2023-01-09T17:41:26.4796602Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:41:26.3634738Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:41:26.3634738Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:41:27.8451978Z","changedTime":"2023-01-09T17:41:28.6564215Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:41:28.5041107Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:41:28.5041107Z"}}]}' headers: cache-control: - no-cache content-length: - - '2694' + - '2695' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:26:07 GMT + - Mon, 09 Jan 2023 17:44:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C43B5775A9BC4D5F8A114A50170E6A1A Ref B: BL2AA2030110039 Ref C: 2023-01-09T17:44:09Z' status: code: 200 message: OK @@ -3616,10 +3402,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '' @@ -3629,19 +3414,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:26:08 GMT + - Mon, 09 Jan 2023 17:44:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 2EFCB62827124050B5DA384A8D91B746 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:44:10Z' status: code: 202 message: Accepted @@ -3659,10 +3448,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -3672,17 +3460,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:26:25 GMT + - Mon, 09 Jan 2023 17:44:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B448C188C607462796103BD1BCA8EC35 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:44:30Z' status: code: 202 message: Accepted @@ -3700,10 +3492,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -3713,17 +3504,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:26:40 GMT + - Mon, 09 Jan 2023 17:44:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8DB0D36A55484BABAACFAFD73DAC4647 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:44:46Z' status: code: 202 message: Accepted @@ -3741,10 +3536,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -3754,17 +3548,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:26:55 GMT + - Mon, 09 Jan 2023 17:45:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 33B5B9DA75534F8F8F5090FD98423C2F Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:45:02Z' status: code: 202 message: Accepted @@ -3782,10 +3580,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -3795,15 +3592,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:27:10 GMT + - Mon, 09 Jan 2023 17:45:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A9F913CCEC174BF983AB67805672D833 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:45:18Z' status: code: 200 message: OK @@ -3821,18 +3622,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-23-42-1569c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-41-16-e0825\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M19.5476408S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M32.7702991S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3844,9 +3644,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T17:22:49.5517913Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T17:23:40.4423499Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T17:41:16.8266269Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3857,21 +3657,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:13 GMT + - Mon, 09 Jan 2023 17:45:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 83FBF4BE99614432A4A054FD376AC90E Ref B: BL2AA2030108019 Ref C: 2023-01-09T17:45:19Z' status: code: 200 message: OK @@ -3891,10 +3689,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -3904,19 +3701,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:27:16 GMT + - Mon, 09 Jan 2023 17:45:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 8188B600AE784B86941053EC8D0D1B38 Ref B: BL2AA2030108019 Ref C: 2023-01-09T17:45:20Z' status: code: 200 message: OK @@ -3934,10 +3733,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -3950,17 +3748,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:18 GMT + - Mon, 09 Jan 2023 17:45: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: E074A76ED1AD4120951E79BCB6F1AF12 Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:21Z' status: code: 404 message: Not Found @@ -3990,10 +3792,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -4006,14 +3807,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:19.3897401Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:21.7408271Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8dc75ec1-de76-4f9b-99c0-a3056c9f4c23?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4021,19 +3822,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:22 GMT + - Mon, 09 Jan 2023 17:45:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 3D274B0F24FE4828B10A3A83A4E32C76 Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:21Z' status: code: 201 message: Created @@ -4051,37 +3854,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8dc75ec1-de76-4f9b-99c0-a3056c9f4c23?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7\",\r\n - \ \"name\": \"4035a6cd-c979-4f40-8d4f-ea0b68e2c7b7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8dc75ec1-de76-4f9b-99c0-a3056c9f4c23\",\r\n + \ \"name\": \"8dc75ec1-de76-4f9b-99c0-a3056c9f4c23\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:39 GMT + - Mon, 09 Jan 2023 17:45:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5D14640995664D069CF2CE1FC5850376 Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:39Z' status: code: 200 message: OK @@ -4099,18 +3899,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-22-1e0cf\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-21-4e464\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.0975924S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT11.3164498S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4118,34 +3917,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:19.3897401Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:21.7408271Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1613' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:40 GMT + - Mon, 09 Jan 2023 17:45:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4802151F87AB449B93D43BECD08AC03E Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:39Z' status: code: 200 message: OK @@ -4163,18 +3960,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-22-1e0cf\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-21-4e464\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.0975924S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT11.3164498S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4182,34 +3978,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:19.3897401Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:21.7408271Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1613' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:43 GMT + - Mon, 09 Jan 2023 17:45:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5F84C14AB8F14C6E8FA9775110FDE368 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:45:40Z' status: code: 200 message: OK @@ -4239,10 +4033,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -4255,14 +4048,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:44.7976873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:43.9008051Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/816de7f9-4f41-4e1a-85c4-72257be378d9?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4270,23 +4063,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:27:46 GMT + - Mon, 09 Jan 2023 17:45:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 76E9258C8D9D40ED9212AFC008203759 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:45:42Z' status: code: 200 message: OK @@ -4304,37 +4095,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/816de7f9-4f41-4e1a-85c4-72257be378d9?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08\",\r\n - \ \"name\": \"ec2dbfcd-63f0-4a6c-a7d2-40685e4b4d08\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/816de7f9-4f41-4e1a-85c4-72257be378d9\",\r\n + \ \"name\": \"816de7f9-4f41-4e1a-85c4-72257be378d9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:03 GMT + - Mon, 09 Jan 2023 17:46:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 789AA1835E52478F8310338AE8ED5966 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:46:01Z' status: code: 200 message: OK @@ -4352,18 +4140,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-46-7ecfa\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-44-7a6ad\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.042893S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.6490009S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4372,34 +4159,32 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:44.7976873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:43.9008051Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1747' + - '1749' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:04 GMT + - Mon, 09 Jan 2023 17:46:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1957DF7F00434CC28CB071AB487B39D2 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:46:02Z' status: code: 200 message: OK @@ -4417,10 +4202,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4432,17 +4216,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:06 GMT + - Mon, 09 Jan 2023 17:46:02 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1910C8F6AAA84328ACB201065F34A490 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:46:03Z' status: code: 200 message: OK @@ -4460,10 +4246,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4475,17 +4260,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:06 GMT + - Mon, 09 Jan 2023 17:46:04 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C3AA43AF957E49F4BFCA9DCC725294B5 Ref B: BL2AA2030107053 Ref C: 2023-01-09T17:46:04Z' status: code: 200 message: OK @@ -4504,18 +4291,17 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-27-46-7ecfa\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-44-7a6ad\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.042893S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.6490009S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4524,34 +4310,32 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:27:44.7976873Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:43.9008051Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1747' + - '1749' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:09 GMT + - Mon, 09 Jan 2023 17:46:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7A4D3FC7AA7640279B098999A344F6BA Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:04Z' status: code: 200 message: OK @@ -4582,10 +4366,9 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -4598,14 +4381,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:10.4512837Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:46:07.0800519Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cc2ce277-7d80-4e87-9042-f9550dfb124e?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4613,23 +4396,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:11 GMT + - Mon, 09 Jan 2023 17:46:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: EAC110C426094671A47B2E989DD0DAE8 Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:06Z' status: code: 200 message: OK @@ -4648,37 +4429,80 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cc2ce277-7d80-4e87-9042-f9550dfb124e?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cc2ce277-7d80-4e87-9042-f9550dfb124e\",\r\n - \ \"name\": \"cc2ce277-7d80-4e87-9042-f9550dfb124e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n + \ \"name\": \"c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:29 GMT + - Mon, 09 Jan 2023 17:46:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 40753512E51349238A95752FF0700187 Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --delete-resources --delete-resources + --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n + \ \"name\": \"c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 17:46:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9AB88ED24ED54EC9AFB46D14F56BEDAC Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:54Z' status: code: 200 message: OK @@ -4697,18 +4521,17 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-11-09ca7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-46-07-49121\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.5941168S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT18.6651708S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4717,34 +4540,32 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:10.4512837Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:46:07.0800519Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1752' + - '1753' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:30 GMT + - Mon, 09 Jan 2023 17:46:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C335F43BDC584E2F8DB984F94439A316 Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:55Z' status: code: 200 message: OK @@ -4762,10 +4583,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4777,17 +4597,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:31 GMT + - Mon, 09 Jan 2023 17:46:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EB7D917BD533417987992029D92183E8 Ref B: BL2AA2030109029 Ref C: 2023-01-09T17:46:55Z' status: code: 200 message: OK @@ -4805,10 +4627,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4820,17 +4641,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:32 GMT + - Mon, 09 Jan 2023 17:46:56 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 74FC6510E63E455AA48147618A356FAB Ref B: BL2AA2030110027 Ref C: 2023-01-09T17:46:56Z' status: code: 200 message: OK @@ -4846,39 +4669,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2022-04-25T19:02:06.5440853Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2022-11-08T19:10:36.8883217Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:23:44.9589885Z","changedTime":"2022-11-14T23:03:01.9713904Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:28:25.4284299Z","changedTime":"2022-11-14T23:03:02.0267239Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3","name":"simpleblogstorage3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-07T23:01:38.0105357Z","changedTime":"2022-11-07T23:11:58.1206582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T17:20:33.1667806Z","changedTime":"2022-11-18T17:20:34.5962682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:20:33.9797578Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:20:33.9797578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T17:20:35.3831125Z","changedTime":"2022-11-18T17:20:36.0719599Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:20:35.6680569Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:20:35.6680569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-18T17:22:23.4169381Z","changedTime":"2022-11-18T17:22:24.2993078Z","provisioningState":"Succeeded"}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:38:15.3858925Z","changedTime":"2023-01-09T17:38:16.1924653Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:38:16.0500637Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:38:16.0500637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:38:17.407199Z","changedTime":"2023-01-09T17:38:18.2813488Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:38:18.0501351Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:38:18.0501351Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-01-09T17:39:39.8897732Z","changedTime":"2023-01-09T17:39:40.6117409Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' headers: cache-control: - no-cache content-length: - - '72654' + - '65182' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:32 GMT + - Mon, 09 Jan 2023 17:46:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A97F7D3DD1E0406198A7E238E6B2079E Ref B: BL2AA2030109053 Ref C: 2023-01-09T17:46:56Z' status: code: 200 message: OK @@ -4896,18 +4713,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-11-09ca7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-46-07-49121\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.5941168S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT18.6651708S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4916,34 +4732,32 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:27:19.3897401Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:10.4512837Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:46:07.0800519Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1752' + - '1753' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:35 GMT + - Mon, 09 Jan 2023 17:46:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DFAE643547264A4C9F5EE89FE95F20BF Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:46:58Z' status: code: 200 message: OK @@ -4963,10 +4777,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -4976,19 +4789,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:28:37 GMT + - Mon, 09 Jan 2023 17:46:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: 479A1ABC338E4E2AA5DC2A7E18299513 Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:46:59Z' status: code: 200 message: OK @@ -5010,10 +4825,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -5025,17 +4839,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:39 GMT + - Mon, 09 Jan 2023 17:47: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-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 2818011C77264EFA9E55DDCF456EB415 Ref B: BL2AA2030105051 Ref C: 2023-01-09T17:47:00Z' status: code: 201 message: Created @@ -5053,10 +4871,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -5069,17 +4886,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:41 GMT + - Mon, 09 Jan 2023 17:47: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: B364C209FB05403F927B913151458046 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:03Z' status: code: 404 message: Not Found @@ -5118,10 +4939,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -5135,14 +4955,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:42.068411Z\"\r\n },\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:47:05.067072Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -5150,19 +4970,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:28:44 GMT + - Mon, 09 Jan 2023 17:47:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 3FE6D0E1A81843E6A0472C3823056807 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:04Z' status: code: 201 message: Created @@ -5180,37 +5002,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n - \ \"name\": \"f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n + \ \"name\": \"dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:01 GMT + - Mon, 09 Jan 2023 17:47:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F937F4C2DAFC498C9F3B9561FCA4AC8D Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:23Z' status: code: 200 message: OK @@ -5228,37 +5047,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n - \ \"name\": \"f23853c7-6298-402e-b0fc-c9c2a0992a92\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n + \ \"name\": \"dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:31 GMT + - Mon, 09 Jan 2023 17:47:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3D5368A004624D64B6EC701ABB30B7E9 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:54Z' status: code: 200 message: OK @@ -5276,18 +5092,17 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-44-e1805\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-47-05-29489\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT23.5512211S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT33.6186079S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -5298,9 +5113,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:42.068411Z\"\r\n },\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:47:05.067072Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -5311,21 +5126,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:32 GMT + - Mon, 09 Jan 2023 17:47:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 338845811F84433F98DD9AC4D64FF1B4 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:55Z' status: code: 200 message: OK @@ -5343,113 +5156,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:34 GMT + - Mon, 09 Jan 2023 17:47:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FAE563CD1010481AB30CE883FDA914A5 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:47:56Z' status: code: 200 message: OK @@ -5467,17 +5221,16 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:47.2849487Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:09.5583701Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T17:28:47.2849487Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T17:47:09.5583701Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -5488,21 +5241,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:35 GMT + - Mon, 09 Jan 2023 17:47:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BEDC7D334A354EAF8F5B139620462009 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:47:57Z' status: code: 200 message: OK @@ -5520,10 +5271,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -5535,17 +5285,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:35 GMT + - Mon, 09 Jan 2023 17:47:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 82C88AAEC486466F977AA55C53938F3D Ref B: BL2AA2030107029 Ref C: 2023-01-09T17:47:57Z' status: code: 200 message: OK @@ -5563,18 +5315,17 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-28-44-e1805\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-47-05-29489\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT23.5512211S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT33.6186079S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -5585,9 +5336,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:28:42.068411Z\"\r\n },\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:47:05.067072Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -5598,21 +5349,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:41 GMT + - Mon, 09 Jan 2023 17:47:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4CA7FC8A5F2B409DADAD44C361EAF2F9 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:47:58Z' status: code: 200 message: OK @@ -5642,10 +5391,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -5657,13 +5405,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T17:28:42.068411Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:29:42.2745334Z\"\r\n + \"2023-01-09T17:47:05.067072Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:48:00.5057976Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -5671,23 +5419,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:29:43 GMT + - Mon, 09 Jan 2023 17:48:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 1F46F4F5B8E04EE5819522DCB4E9059E Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:47:59Z' status: code: 200 message: OK @@ -5705,37 +5451,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:30:01 GMT + - Mon, 09 Jan 2023 17:48:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 912EA97AE4D249598C29ECB5B13B496D Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:48:18Z' status: code: 200 message: OK @@ -5753,37 +5496,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:30:31 GMT + - Mon, 09 Jan 2023 17:48:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8EE0515AAAE24E4CB46081C4D923C8AF Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:48:49Z' status: code: 200 message: OK @@ -5801,37 +5541,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:31:01 GMT + - Mon, 09 Jan 2023 17:49:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3AA6FEE50CC046E1A09D5E3F3657762C Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:49:20Z' status: code: 200 message: OK @@ -5849,37 +5586,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:31:32 GMT + - Mon, 09 Jan 2023 17:49:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 346C629BB3DA4FE0BF96E5CD4DA53B8D Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:49:51Z' status: code: 200 message: OK @@ -5897,37 +5631,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:32:02 GMT + - Mon, 09 Jan 2023 17:50:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 06705D2303354370954E63897FE62637 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:50:22Z' status: code: 200 message: OK @@ -5945,37 +5676,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:32:32 GMT + - Mon, 09 Jan 2023 17:50:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E68D2BE051404D67B8177CEC1E4C8AAA Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:50:53Z' status: code: 200 message: OK @@ -5993,37 +5721,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n - \ \"name\": \"82d1a3f4-85a1-4027-bee5-08becba73e6d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '274' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:33:02 GMT + - Mon, 09 Jan 2023 17:51:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F64925B0704B4EE998776713B2286587 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:51:24Z' status: code: 200 message: OK @@ -6041,18 +5766,62 @@ interactions: ParameterSetName: - --name --location -g --template-file --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n + \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 17:51:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AD7427419B8A470DB713B06F418979E9 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:51:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-29-44-66d87\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-48-01-7c88f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M21.0190733S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M38.0020404S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6062,9 +5831,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T17:29:42.2745334Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T17:48:00.5057976Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6075,21 +5844,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:33:03 GMT + - Mon, 09 Jan 2023 17:51:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 877E820F14144D40BC075B47C34958D0 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:51:55Z' status: code: 200 message: OK @@ -6107,10 +5874,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -6122,17 +5888,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:33:04 GMT + - Mon, 09 Jan 2023 17:51:56 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C7E2D9F3D36242F2B1C5342D5427DE91 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:51:56Z' status: code: 200 message: OK @@ -6150,10 +5918,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: string: '{"value":[]}' @@ -6165,17 +5932,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:33:04 GMT + - Mon, 09 Jan 2023 17:51:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6741A6AACE7D4F8FB0BC45B5446A71E3 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:51:56Z' status: code: 200 message: OK @@ -6191,33 +5960,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T17:20:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T17:38:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '36139' + - '23820' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:33:05 GMT + - Mon, 09 Jan 2023 17:51:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B38519EB0B5F4DBB89023660B5FA912D Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:51:57Z' status: code: 200 message: OK @@ -6237,10 +6006,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 response: body: string: '' @@ -6250,19 +6018,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:33:08 GMT + - Mon, 09 Jan 2023 17:52:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: 4A2DCAE84AC94BDFBFC4ABB0857DA618 Ref B: BL2AA2030107021 Ref C: 2023-01-09T17:51:58Z' status: code: 202 message: Accepted @@ -6280,10 +6052,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDM0QzNjFDMkE4QTg0NDM3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -6293,15 +6064,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:33:23 GMT + - Mon, 09 Jan 2023 17:52:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 61088C0F491248B58B14E030A60871F4 Ref B: BL2AA2030107021 Ref C: 2023-01-09T17:52:17Z' status: code: 200 message: OK @@ -6319,18 +6094,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-11-18-17-29-44-66d87\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-48-01-7c88f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M21.0190733S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M38.0020404S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6340,9 +6114,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T17:28:42.068411Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T17:29:42.2745334Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T17:48:00.5057976Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6353,21 +6127,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:33:27 GMT + - Mon, 09 Jan 2023 17:52:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 11866C7987FC4D5CBCF2D8948BBBACAC Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:52:18Z' status: code: 200 message: OK @@ -6387,10 +6159,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -6400,19 +6171,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:33:29 GMT + - Mon, 09 Jan 2023 17:52:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: FDD8F2B4BB3B49969AA742D516BD53B3 Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:52:18Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml index 1951b704e72..a03e57f52a6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml @@ -1,124 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/v2.0/.well-known/openid-configuration - response: - body: - string: '{"token_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code - id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft-ppe.com/oidc/userinfo","authorization_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/kerberos","tenant_region_scope":"NA","cloud_instance_name":"windows-ppe.net","cloud_graph_host_name":"graph.ppe.windows.net","msgraph_host":"graph.microsoft-ppe.com","rbac_url":"https://pas.windows-ppe.net"}' - headers: - access-control-allow-methods: - - GET, OPTIONS - access-control-allow-origin: - - '*' - cache-control: - - max-age=86400, private - content-length: - - '1737' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Oct 2022 16:03:40 GMT - p3p: - - CP="DSP CUR OTPi IND OTRi ONL FIN" - set-cookie: - - fpc=AvBzTxT7-bFGkt9M0dxrd9g; expires=Sun, 20-Nov-2022 16:03:41 GMT; path=/; - secure; HttpOnly; SameSite=None - - esctx=AQABAAAAAABYrKuFWqWSRpp9FiMCi-70NbSqcsz9smREUez4N9mNnkkhbgwBKpOoxQzCjXUmTNA7jqaiak6T0RDccHa1TvS_iRZN4Sa7dCXhqnoSFcHDfpWthAXS1rk6HvrTXgupeWq1GYw9x5Qj47cTV_MfpAgPOhpEjNoUYyfZwlXvaX91jTloUMms9dpcbelTFIPi-s2R8ocbu_3BjCZN6Da8xKBlbPLmelL6bI-D6eE7KclRGqg0r_F8Vgp478qZBFSeUJkgAA; - domain=.login.windows-ppe.net; path=/; secure; HttpOnly; SameSite=None - - stsservicecookie=estsppe; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ests-server: - - 2.1.14113.0 - CHY PPE - x-xss-protection: - - '0' - status: - code: 200 - message: OK -- request: - body: client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&grant_type=refresh_token&client_info=1&claims=%7B%22access_token%22%3A+%7B%22xms_cc%22%3A+%7B%22values%22%3A+%5B%22CP1%22%5D%7D%7D%7D&refresh_token=0.AAAAJtSG9haN20KBt6tXjhEMzZV3sATbjRpGu-4C-eG_e0YBAG0.1.AgABAAEAAABYrKuFWqWSRpp9FiMCi-70AwDs_wQA7_-pB7rVUaeBhi5kv9_xB3nkOd8OJm1pYhQC8gbHs4X1nmpIEe2Q9K2UpzyHCcBcsYAwXew_7-sywYKpf0p2pHQzRNnP5pQqY_XEGMLuT1jrWFCeOSJpATQLLjYFensh3bz8eGG2u21YvkJQisqRqDc3WXqZOdvOTIYY2pHHmNUxJo2WY-WD7Z5EYiV-WNF9ShyGhb4GEh7_qF5qrFUdIGlxFlseFSduC35p0fPa0F_rWciaAm0REK0Bhj5PIQv-HC1xnBkVA_R3ZQ-CLM8fZYR3L-trpV8socKQrdEKYddv7UdSVxr92cHzeBLsJJb4fJptvUcJo22QdCUxtvoxc86eLPVw5EfhcdGBKg3yo7QlcvUPvWpHDCXQmO3lF27sT1gn_5ci0ZRWOLG9tz6Pv08xLQJmUTjpi4OvERviiAfY1FQpMeYUiCDhvijBj_mHduiqlilPDyPouUTaCwUo_NkYGa5xQt2eMFH0wouRyzFqQUkOV-sttivBGy9_Bha87RUwMTESRGFyqYhK_-VEBC-f9TleSppKD-VA3MLisIxvzYpJ_9G3rAD_cXP7ALN2WIxFtl9iKZ-VG_0VwQelnD3CiefdErPKp2tK46r6PJ-Ity3TkBjSG-h8yRxEO-C-SliY_f5ZK21RLJjTuPvEdAcNyVQASwIE726ysmbLXzwI4ZiGCfhd7Ca7ZVRO15u49L5TcgUeXBs8aZSo-NYewh95f0rY7bz2gKSfNneiMyPetAro_5FRs23BgMeJB9h8vQdi5qYAtgFs16pU_Lis-mELtZcfTAeBjEMeLeUpec-F2M8mz8WlG09xv9pGMTFas7SYgGud2yT6wvzvYVljvz8l2jnhKZRehqIh6UMhuOWRZOTLYfLcXcKe4AGvLsZo7qZEdedjVWNOMWXesFjH7mboG5vuFhEPa0LBNeBtYIPPImzoOx1jkKeMafbWx4Z7TfqvG4U_KbC3IclyDUBpMh-2vonZ.AQABAAEAAABYrKuFWqWSRpp9FiMCi-70fgcKlQ52rwmg9KgoL5XuRrdURS1CeQNgzzuoudUhhMMHbYBTI6wTnekJ5d-0kqHtkBGsznBqBD_Xxq-qjS4f3IA6abKD43eGu-s2VNiltOjlHfXA5l3FhAuoXv_N5xtOh_M1NLmlxXNmWUXNyd-F_tiP1bgjlqib1XzZsetf4cKwdsKpfZCJTDPlAveGYJDQR3Jsj6A-B1_VIvjQ8ykf-xbdWhpsJtRJ7dk1y72R0K8gAA&scope=https%3A%2F%2Fmanagement.core.windows.net%2F%2F.default+offline_access+openid+profile - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1642' - Content-Type: - - application/x-www-form-urlencoded - Cookie: - - esctx=AQABAAAAAABYrKuFWqWSRpp9FiMCi-70NbSqcsz9smREUez4N9mNnkkhbgwBKpOoxQzCjXUmTNA7jqaiak6T0RDccHa1TvS_iRZN4Sa7dCXhqnoSFcHDfpWthAXS1rk6HvrTXgupeWq1GYw9x5Qj47cTV_MfpAgPOhpEjNoUYyfZwlXvaX91jTloUMms9dpcbelTFIPi-s2R8ocbu_3BjCZN6Da8xKBlbPLmelL6bI-D6eE7KclRGqg0r_F8Vgp478qZBFSeUJkgAA; - fpc=AvBzTxT7-bFGkt9M0dxrd9g; stsservicecookie=estsppe - User-Agent: - - python-requests/2.26.0 - X-AnchorMailbox: - - Oid:96ab7641-f037-41c4-be1a-b79ce2c21798@f686d426-8d16-42db-81b7-ab578e110ccd - x-client-cpu: - - x64 - x-client-current-telemetry: - - 4|84,3| - x-client-last-telemetry: - - 4|0||| - x-client-os: - - win32 - x-client-sku: - - MSAL.Python - x-client-ver: - - 1.20.0 - x-ms-lib-capability: - - retry-after, h429 - method: POST - uri: https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/token - response: - body: - string: '{"token_type":"Bearer","scope":"https://management.core.windows.net//user_impersonation - https://management.core.windows.net//.default","expires_in":86399,"ext_expires_in":86399,"refresh_in":43199,"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSIsImtpZCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvZjY4NmQ0MjYtOGQxNi00MmRiLTgxYjctYWI1NzhlMTEwY2NkLyIsImlhdCI6MTY2NjM2NzkyMSwibmJmIjoxNjY2MzY3OTIxLCJleHAiOjE2NjY0NTQ2MjIsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLnBwZS53aW5kb3dzLm5ldC9mNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QvdXNlcnMvOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4L2dldE1lbWJlck9iamVjdHMifX0sImFjciI6IjEiLCJhaW8iOiJBVlFBcS84V0FBQUFJVWhMMzBjNVhUZ0xGOWo3Q2xyZWlGenNXQTNPMzVyQU04SUVyWFFsN09wSUJLcUdtMGhLZnVyQThNaUdTV2ZJU3plSDZSZjNmV0tpTkplYWk4NFU1NmhJaGlISE1LK0dWMTdLdVNWeHZzZz0iLCJhbXIiOlsid2lhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZmFtaWx5X25hbWUiOiJQYXRlbCIsImdpdmVuX25hbWUiOiJIYXJzaCIsImlwYWRkciI6IjcyLjIzOS4yNi4xNjciLCJuYW1lIjoiSGFyc2ggUGF0ZWwiLCJvaWQiOiI5NmFiNzY0MS1mMDM3LTQxYzQtYmUxYS1iNzljZTJjMjE3OTgiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMTI0NTI1MDk1LTcwODI1OTYzNy0xNTQzMTE5MDIxLTIwNDkxNzAiLCJwdWlkIjoiMTAwM0RGRkQwMDY1MEFBRCIsInJoIjoiMC5BQUFBSnRTRzloYU4yMEtCdDZ0WGpoRU16VVpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTUJBRzAuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiUTFDel94M0MxblJEUFZyU0JYeS14T0M5ME1Ccmw5aUp1OEx2bVo2RmdzSSIsInRpZCI6ImY2ODZkNDI2LThkMTYtNDJkYi04MWI3LWFiNTc4ZTExMGNjZCIsInVuaXF1ZV9uYW1lIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwidXBuIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwidXRpIjoiNVJyTUVKajFxa0tlTzJvR1RLY1NBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc19jYyI6WyJDUDEiXSwieG1zX3NzbSI6IjEiLCJ4bXNfdGNkdCI6MTI4NDY5MDY5M30.aRjc7xpwKWvT517baI2YNLW2jfRStg8pk6U3vlxxoywDs9eebOJMLHsQ1trPMG1M9ohelXn1Qm-ClJpBPlM_tXWL12fLa367uItAEhHuU5H7op8RdISLiEwi90UcQnR5miDkGTDQT9wVh-PELu6o5GXjM-AC4S5iK07pa_10ut7B8NaBh3RJwHat7loeMEpCvfwzM_b_hO8bilraXTMcX000KsDueoGrL567SxdfGZUZKG8MgKxKtiYuLRH0w0COT38zT9gms6zaF-04RWbw8b0i4xl7ap9x-uyLX-pIdItBFAwedaeOlPIiKm1GgRtRF1Ie31SgCVQrzTKji1xfOA","refresh_token":"0.AAAAJtSG9haN20KBt6tXjhEMzZV3sATbjRpGu-4C-eG_e0YBAG0.1.AgABAAEAAABYrKuFWqWSRpp9FiMCi-70AwDs_wQA7_83NJOpIvr2yjXxtrjVhge9kw6Qlqm3CwRd4iF6Vn4CI2LNzRE8LaBZCy5ZbVMSa5QaJk6yi378B01q-WOUnByALa4jfVW6NDSl8WdhnXtJBMO8CUfPjB7JNy2DLrmmtQqV323Srm-8tYmVyJ3F86P9wQFPsUNh5UB3CEJ0H1aPS2Q81ebL5lle5r6UeLwH12cGGmy1lIuAUC27ZLzMYYX4c3RDoHGvgdrpjN5vVXoOB_BFUxVzgKBQE01KWdy45IylMacbYGixtK5UoL3qAdnlGo2u9-wxqeH3b5NAEhIqDGf08x94cbEabjLr4DcV7XjogaXy_gms34VE-Zb7u6yNt5DnKlskXF1-wdO82inSzl7d133CQJqQCsVgiWxNwpPhQpUwFJZuPV8khhztDfmadJh30Dpb6uuxxtgYHHjLf_Mng_Gi4_68mzqurAcfOhZrv8qB25zLepMGdNFXG1vsn91OdviGey40MVMdw-GiWJ7zmA4n1j1D55DkyiRGZt0s9vAnMIJTvR6ezzxBkyXdFd4ezIGuvggamIH4mL9KarooAYWGWhvoBpd0Sva4jGb8sW9n-FzppTnY9TEHYz_el1CZmScovY62i49gZiJpi2B3ZDQZ_-IPB_IjbMN4Q17PxkfHazUCahiwOTARBovdVZFTNkbPMOnvkQSKVQuySVGRP0Ejl8pVC-rdBTNnzPBe5seEAEH6e2vIOQoqiW6v00gZowhaJLN6IUiiU7DHBhVk6gWhlNxZdOFtIffwPuyKWdSGyQgIUU7HxgDtBsGIHYUd8hci2kuVLsEn1Hq48Y6VB5MwMstseJ3J31ShDfDQdnbf1-EG6WIVDQEwYqhkkC2197p3me71Gh-PxQ4Wi11oXWXBg-GPyFGVnngjs8HFCZbHmyeU1bSHPc7EDrNcz_5-c3N6h2l386NwEEZC0xihV8UxPrx1tDt7W7W2f9PR5P0qT3r70Pzgt2wsWGNoGvM.AQABAAEAAABYrKuFWqWSRpp9FiMCi-70_qDXlqVJvedd_-oZ1f2EXyME2o-BweL7EVsaHZUyM5Q3ZNeaqL3KztR5fP0-H2xKMTskyVuVjzJpR0eogyZGUnrjVPApmx9srsJ_I4gc5jXj8cadhDn6WNiAS9O4FL4Txw8B9UhtSL_puzBEHU3I8lPk3cx8fuSlbCScXjAom6TgtaTYP4wdVXEy3TM_9dvWC8fCC5Bryvk9SqeEFzszGUp5fC7IgpToxzyhF2zP22sgAA","foci":"1","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSJ9.eyJhdWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJpc3MiOiJodHRwczovL2xvZ2luLndpbmRvd3MtcHBlLm5ldC9mNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QvdjIuMCIsImlhdCI6MTY2NjM2NzkyMSwibmJmIjoxNjY2MzY3OTIxLCJleHAiOjE2NjYzNzE4MjEsImFpbyI6IkFXUUFtLzhXQUFBQWpoV3dXMUtGbEc0L21qZkVaVmt1aENZdllUMkFwYW9MbkUxaHI5cTc5Sjh0UGpKYVlRMjlvRS9yaUpKZTVqeEc5TXpNQWtIeThjQklkdzZ2SFhQZUNTTkt5clp6SnJhYkIwa2RnU0t1N2JJc0ZhQzZCajF1WUYzcU9mVUlnNUEyIiwibmFtZSI6IkhhcnNoIFBhdGVsIiwibm9uY2UiOiI2NjQyMmY0ZjY4OWY0MGMzNTliYWExMmU2YjkzODVkYzdlYzUxN2MxMGFlMmZmM2NhZWUyY2IxMmEzNTU4MTdhIiwib2lkIjoiOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4IiwicHJlZmVycmVkX3VzZXJuYW1lIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwicHVpZCI6IjEwMDNERkZEMDA2NTBBQUQiLCJyaCI6IjAuQUFBQUp0U0c5aGFOMjBLQnQ2dFhqaEVNelpWM3NBVGJqUnBHdS00Qy1lR19lMFlCQUcwLiIsInN1YiI6ImlPcTZUNmFSMFFfaGlNSWl0UG9PUWR1M1diTWt1NXlSRk5kWXhGYlRtMkEiLCJ0aWQiOiJmNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QiLCJ1dGkiOiI1UnJNRUpqMXFrS2VPMm9HVEtjU0FBIiwidmVyIjoiMi4wIn0.iJNaEoJ1HnuVNgqWxeJGfnjyXDdN5YWSs_yCcJjVclRNPcr_PWTVH2u_jbn36nDc2V3Ko9c8zG0G2zsHG30lh4Fs8w52PBZImDzCPP-HHuWJ2_2Z6sUJMFo6D4YgAeSVPvIroQcvXhAyxnQquvd51w9CAzJP9dpe7RwZuWS_jfscUzKOhiHpH5hQpCDEhkLmnf-kpoleCAf8rE3Akj1IXgoj3CL1Y0E-g20Dyh0dP7Nhdx1xJTdLZH_G1wshfy-vXxljUZIUqgRRLLRKIdjIn98fRVXxJQ880X4AubUvSxT5d2d3DWXVMDSE7YoZ3RXYWNIGJd6-r3MhGf-QTJ59Qw","client_info":"eyJ1aWQiOiI5NmFiNzY0MS1mMDM3LTQxYzQtYmUxYS1iNzljZTJjMjE3OTgiLCJ1dGlkIjoiZjY4NmQ0MjYtOGQxNi00MmRiLTgxYjctYWI1NzhlMTEwY2NkIn0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '5274' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Oct 2022 16:03:41 GMT - expires: - - '-1' - p3p: - - CP="DSP CUR OTPi IND OTRi ONL FIN" - pragma: - - no-cache - set-cookie: - - fpc=AvBzTxT7-bFGkt9M0dxrd9jUCHkbAQAAANy55NoOAAAA; expires=Sun, 20-Nov-2022 - 16:03:42 GMT; path=/; secure; HttpOnly; SameSite=None - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-clitelem: - - 1,0,0,172128705.8436, - x-ms-ests-server: - - 2.1.14113.0 - CHY PPE - x-xss-protection: - - '0' - status: - code: 200 - message: OK - request: body: null headers: @@ -133,8 +13,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -149,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:03:42 GMT + - Mon, 09 Jan 2023 20:27:36 GMT expires: - '-1' pragma: @@ -163,7 +42,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 0F718DFEDC424434AE3E9C36EB13E875 Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:03:43Z' + - 'Ref A: 3210AA71F59C4F76988B7DE4CBF19DDB Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:36Z' status: code: 404 message: Not Found @@ -176,7 +55,7 @@ interactions: "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {}}}' + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -187,14 +66,13 @@ interactions: Connection: - keep-alive Content-Length: - - '795' + - '822' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -210,13 +88,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-21T16:03:44.3343281Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n + \"2023-01-09T20:27:37.9893092Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/acc0620e-d4f7-488a-b17b-11a1a795b490?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d7467a59-b245-4926-a459-f4b1189606ae?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -224,7 +102,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:03:46 GMT + - Mon, 09 Jan 2023 20:27:38 GMT expires: - '-1' pragma: @@ -236,9 +114,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: 1B05432D45304812A6DF0A378F35F0F2 Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:03:44Z' + - 'Ref A: DB1E43F7C0DD4D9B9933BCAABBB82F0A Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:37Z' status: code: 201 message: Created @@ -256,14 +134,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/acc0620e-d4f7-488a-b17b-11a1a795b490?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d7467a59-b245-4926-a459-f4b1189606ae?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/acc0620e-d4f7-488a-b17b-11a1a795b490\",\r\n - \ \"name\": \"acc0620e-d4f7-488a-b17b-11a1a795b490\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d7467a59-b245-4926-a459-f4b1189606ae\",\r\n + \ \"name\": \"d7467a59-b245-4926-a459-f4b1189606ae\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -272,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:05 GMT + - Mon, 09 Jan 2023 20:27:56 GMT expires: - '-1' pragma: @@ -284,7 +161,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B038E459E9DE41BEBEA8606FAFD1E86B Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:04:05Z' + - 'Ref A: E0DC64D5232A4A29A5BB7332BB47A89A Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:56Z' status: code: 200 message: OK @@ -302,8 +179,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -311,9 +187,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-03-45-a0773\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-27-38-2674c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4390538S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.2806899S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -323,9 +199,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:03:44.3343281Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:27:37.9893092Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -336,7 +212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:05 GMT + - Mon, 09 Jan 2023 20:27:56 GMT expires: - '-1' pragma: @@ -348,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0473890D7E754AC6A8ACC1ED74BF185F Ref B: MIAEDGE2514 Ref C: 2022-10-21T16:04:05Z' + - 'Ref A: 40737F7394864283B0DF0D2D503424B0 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:56Z' status: code: 200 message: OK @@ -366,8 +242,7 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -375,9 +250,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-03-45-a0773\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-27-38-2674c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4390538S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.2806899S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -387,9 +262,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:03:44.3343281Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:27:37.9893092Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -400,7 +275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:05 GMT + - Mon, 09 Jan 2023 20:27:59 GMT expires: - '-1' pragma: @@ -412,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8089839F35C54B76BCD51EB6D539738C Ref B: MIAEDGE2810 Ref C: 2022-10-21T16:04:06Z' + - 'Ref A: 3F6FFBC0E1F547FBACA88ED8F7D6BBE6 Ref B: BL2AA2030108005 Ref C: 2023-01-09T20:27:57Z' status: code: 200 message: OK @@ -430,8 +305,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -439,9 +313,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-03-45-a0773\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-27-38-2674c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4390538S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT13.2806899S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -451,9 +325,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:03:44.3343281Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:27:37.9893092Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:03:44.3343281Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -464,7 +338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:09 GMT + - Mon, 09 Jan 2023 20:28:01 GMT expires: - '-1' pragma: @@ -476,7 +350,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4816B5ECA0E54524B2F48BB841FE085F Ref B: MIAEDGE2920 Ref C: 2022-10-21T16:04:07Z' + - 'Ref A: 093F4AEB01C54953B1C871BDDE645966 Ref B: BL2AA2030106003 Ref C: 2023-01-09T20:27:59Z' status: code: 200 message: OK @@ -496,8 +370,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -509,7 +382,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 16:04:10 GMT + - Mon, 09 Jan 2023 20:28:03 GMT expires: - '-1' pragma: @@ -521,9 +394,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14999' + - '14997' x-msedge-ref: - - 'Ref A: 903702ADCB8148C3968F26BF033C2D51 Ref B: MIAEDGE2920 Ref C: 2022-10-21T16:04:09Z' + - 'Ref A: 860D0E2D413743FF8632EA3AFD972899 Ref B: BL2AA2030106003 Ref C: 2023-01-09T20:28:02Z' status: code: 200 message: OK @@ -541,8 +414,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -557,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:10 GMT + - Mon, 09 Jan 2023 20:28:03 GMT expires: - '-1' pragma: @@ -571,7 +443,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: CD10CEA744D94E27951A500F3DE7CDCB Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:10Z' + - 'Ref A: 3F9B48C40D1D438495DC759A25560409 Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:03Z' status: code: 404 message: Not Found @@ -584,7 +456,7 @@ interactions: "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {}}}' + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -595,14 +467,13 @@ interactions: Connection: - keep-alive Content-Length: - - '795' + - '822' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -618,13 +489,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-21T16:04:11.0133256Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:11.0133256Z\"\r\n + \"2023-01-09T20:28:04.6471157Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:04.6471157Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/3ee15145-9a1a-4e5b-9ac2-4f30839f1000?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e52141c6-eb44-41ac-889a-59425de7ab6b?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -632,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:12 GMT + - Mon, 09 Jan 2023 20:28:07 GMT expires: - '-1' pragma: @@ -644,9 +515,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1197' x-msedge-ref: - - 'Ref A: 2ECC31353B8E47B28A685672DF3562D3 Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:10Z' + - 'Ref A: 3EF16CD74CD743F0BBD5B4B418046C61 Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:03Z' status: code: 201 message: Created @@ -664,14 +535,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/3ee15145-9a1a-4e5b-9ac2-4f30839f1000?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e52141c6-eb44-41ac-889a-59425de7ab6b?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/3ee15145-9a1a-4e5b-9ac2-4f30839f1000\",\r\n - \ \"name\": \"3ee15145-9a1a-4e5b-9ac2-4f30839f1000\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e52141c6-eb44-41ac-889a-59425de7ab6b\",\r\n + \ \"name\": \"e52141c6-eb44-41ac-889a-59425de7ab6b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -680,7 +550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:29 GMT + - Mon, 09 Jan 2023 20:28:25 GMT expires: - '-1' pragma: @@ -692,7 +562,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E6092DA862AA4A60983C04869F8FA8CE Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:30Z' + - 'Ref A: 27060F6CBCB248E48F95C8933281D2A1 Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:25Z' status: code: 200 message: OK @@ -710,8 +580,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -719,9 +588,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-11-7745f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-05-82db2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.0628903S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT15.7867522S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -731,20 +600,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:11.0133256Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:04.6471157Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:11.0133256Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:04.6471157Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1611' + - '1612' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:30 GMT + - Mon, 09 Jan 2023 20:28:25 GMT expires: - '-1' pragma: @@ -756,7 +625,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F583D1A08C744250AC07176D1898853D Ref B: MIAEDGE1920 Ref C: 2022-10-21T16:04:30Z' + - 'Ref A: E69564F073C449B18EB4A639E3B8A01B Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:25Z' status: code: 200 message: OK @@ -774,8 +643,7 @@ interactions: ParameterSetName: - --id --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -783,9 +651,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-11-7745f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-05-82db2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.0628903S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT15.7867522S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -795,20 +663,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:11.0133256Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:04.6471157Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:11.0133256Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:04.6471157Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1611' + - '1612' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:31 GMT + - Mon, 09 Jan 2023 20:28:27 GMT expires: - '-1' pragma: @@ -820,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 45F8E871DA7D4057A6FB529A2E41FB5C Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:31Z' + - 'Ref A: 733759EC13184694A10A048B394E91E5 Ref B: BL2AA2030107039 Ref C: 2023-01-09T20:28:26Z' status: code: 200 message: OK @@ -840,8 +708,7 @@ interactions: ParameterSetName: - --id --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -853,7 +720,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 16:04:31 GMT + - Mon, 09 Jan 2023 20:28:28 GMT expires: - '-1' pragma: @@ -865,9 +732,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14998' + - '14999' x-msedge-ref: - - 'Ref A: 5B4FC34EF65E4BA497B4219ACA034E9F Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:32Z' + - 'Ref A: 7CD559793C964360A76188777D637A2D Ref B: BL2AA2030107039 Ref C: 2023-01-09T20:28:27Z' status: code: 200 message: OK @@ -885,8 +752,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -901,7 +767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:32 GMT + - Mon, 09 Jan 2023 20:28:28 GMT expires: - '-1' pragma: @@ -915,7 +781,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E315C8D5ABCA49498A397B642C2AF393 Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:32Z' + - 'Ref A: E74561B3F90D422BAA20DD1FBBCEDA7B Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:28Z' status: code: 404 message: Not Found @@ -927,7 +793,8 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000002"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -938,14 +805,13 @@ interactions: Connection: - keep-alive Content-Length: - - '711' + - '738' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -960,14 +826,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:33.1312719Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:29.9203343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:33.1312719Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:29.9203343Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dddb8ebc-6157-4ba2-88b5-9fdde513dff6?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -975,7 +841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:33 GMT + - Mon, 09 Jan 2023 20:28:30 GMT expires: - '-1' pragma: @@ -987,9 +853,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' + - '1197' x-msedge-ref: - - 'Ref A: 9502DEB076E3457588972DF654099F54 Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:33Z' + - 'Ref A: 0C0AB76A2FE146E1BD497D051C537B2B Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:28Z' status: code: 201 message: Created @@ -1007,14 +873,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dddb8ebc-6157-4ba2-88b5-9fdde513dff6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40\",\r\n - \ \"name\": \"5061ca77-6a0d-43e0-a3e5-ed13b1a3ce40\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dddb8ebc-6157-4ba2-88b5-9fdde513dff6\",\r\n + \ \"name\": \"dddb8ebc-6157-4ba2-88b5-9fdde513dff6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1023,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:50 GMT + - Mon, 09 Jan 2023 20:28:47 GMT expires: - '-1' pragma: @@ -1035,7 +900,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8C135E7A2EC34FFEB8B360281BFCE61B Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:50Z' + - 'Ref A: 6B937A70873840A0ABCFA6AFB43C0880 Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:47Z' status: code: 200 message: OK @@ -1053,8 +918,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1062,9 +926,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-33-237d5\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-30-68383\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.601555S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.3988032S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1072,20 +936,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:33.1312719Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:29.9203343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:33.1312719Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:29.9203343Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1624' + - '1625' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:50 GMT + - Mon, 09 Jan 2023 20:28:47 GMT expires: - '-1' pragma: @@ -1097,7 +961,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 211FE7DA6CD34832B59EBCEFFC3927C1 Ref B: MIAEDGE2106 Ref C: 2022-10-21T16:04:51Z' + - 'Ref A: 2AE018C64E04495A9DCE32BAAA98BA5A Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:48Z' status: code: 200 message: OK @@ -1115,8 +979,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1124,9 +987,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-33-237d5\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-30-68383\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.601555S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.3988032S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1134,20 +997,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:33.1312719Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:29.9203343Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:33.1312719Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:29.9203343Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1624' + - '1625' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:51 GMT + - Mon, 09 Jan 2023 20:28:48 GMT expires: - '-1' pragma: @@ -1159,7 +1022,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B31C036AC2BB4F44A2A7138B44143025 Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:51Z' + - 'Ref A: 8837C790FFA748B4A386981745B0C2AB Ref B: BL2AA2030109027 Ref C: 2023-01-09T20:28:48Z' status: code: 200 message: OK @@ -1179,8 +1042,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1192,7 +1054,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 16:04:51 GMT + - Mon, 09 Jan 2023 20:28:50 GMT expires: - '-1' pragma: @@ -1204,9 +1066,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14997' + - '14999' x-msedge-ref: - - 'Ref A: 88C8BC12F16344CEAFB027F23C6BFA9B Ref B: MIAEDGE2811 Ref C: 2022-10-21T16:04:52Z' + - 'Ref A: 11EDA6077E424C93B592C8C62DF5717A Ref B: BL2AA2030109027 Ref C: 2023-01-09T20:28:49Z' status: code: 200 message: OK @@ -1224,8 +1086,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: @@ -1239,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:52 GMT + - Mon, 09 Jan 2023 20:28:51 GMT expires: - '-1' pragma: @@ -1251,7 +1112,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D626A1C470BB43A8B03B4AC82346EE05 Ref B: MIAEDGE2521 Ref C: 2022-10-21T16:04:52Z' + - 'Ref A: 30A16A532E8D4FC8B2F464B9FAECAFC3 Ref B: BL2AA2030109047 Ref C: 2023-01-09T20:28:50Z' status: code: 200 message: OK @@ -1270,8 +1131,7 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1286,7 +1146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:53 GMT + - Mon, 09 Jan 2023 20:28:50 GMT expires: - '-1' pragma: @@ -1300,7 +1160,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 327AF11518C344D6ACCB8AE91E67D31D Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:04:53Z' + - 'Ref A: D8DC2ED77A744A43A4B11974AB9364EF Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:28:51Z' status: code: 404 message: Not Found @@ -1312,7 +1172,8 @@ interactions: "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000003"}}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -1323,15 +1184,14 @@ interactions: Connection: - keep-alive Content-Length: - - '711' + - '738' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1346,22 +1206,22 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:53.852289Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:52.5271807Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:53.852289Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:52.5271807Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1192' + - '1194' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:04:54 GMT + - Mon, 09 Jan 2023 20:28:53 GMT expires: - '-1' pragma: @@ -1373,9 +1233,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1196' x-msedge-ref: - - 'Ref A: 7FC82787D5584505A6907891CE32F3BE Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:04:53Z' + - 'Ref A: FE73FA73D1B5428F80A73CAC6D5137B9 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:28:52Z' status: code: 201 message: Created @@ -1394,14 +1254,13 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n - \ \"name\": \"1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af\",\r\n + \ \"name\": \"f35276e6-82be-454e-82a3-647d974997af\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache @@ -1410,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:05:11 GMT + - Mon, 09 Jan 2023 20:29:10 GMT expires: - '-1' pragma: @@ -1422,7 +1281,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 2F94E4F8A0C74462BE6F17EA0D4DBC84 Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:05:12Z' + - 'Ref A: 40756D236F744B5F965A798A6D51D6E2 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:29:10Z' status: code: 200 message: OK @@ -1441,14 +1300,13 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n - \ \"name\": \"1c42c23f-5ee9-46db-8fd1-82b74709773f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af\",\r\n + \ \"name\": \"f35276e6-82be-454e-82a3-647d974997af\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1457,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:05:42 GMT + - Mon, 09 Jan 2023 20:29:41 GMT expires: - '-1' pragma: @@ -1469,7 +1327,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 38AB8036C702414CA8A461D2CEDCD831 Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:05:42Z' + - 'Ref A: AE1A6D7FEC4844E0A1BD3AE486254203 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:29:40Z' status: code: 200 message: OK @@ -1488,8 +1346,7 @@ interactions: - --name --management-group-id --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1497,9 +1354,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-54-ea947\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-52-0c2bf\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT20.9483555S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT25.6123146S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1507,20 +1364,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:53.852289Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:52.5271807Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:53.852289Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:52.5271807Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1623' + - '1625' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:05:42 GMT + - Mon, 09 Jan 2023 20:29:42 GMT expires: - '-1' pragma: @@ -1532,7 +1389,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 7E3CB87B87AC45B3990534DAFFE93352 Ref B: MIAEDGE1907 Ref C: 2022-10-21T16:05:42Z' + - 'Ref A: E0750A5F7A1D42AD9C5D6038BD9C3528 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:29:41Z' status: code: 200 message: OK @@ -1550,8 +1407,7 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1559,9 +1415,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-10-21-16-04-54-ea947\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-52-0c2bf\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT20.9483555S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT25.6123146S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1569,20 +1425,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-21T16:04:53.852289Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:52.5271807Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-21T16:04:53.852289Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:52.5271807Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1623' + - '1625' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:05:43 GMT + - Mon, 09 Jan 2023 20:29:43 GMT expires: - '-1' pragma: @@ -1594,7 +1450,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 272E5C937A0B447B9F7289A9E1757397 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:05:43Z' + - 'Ref A: BEAF87A145DB4E508198D348F2578A31 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:29:42Z' status: code: 200 message: OK @@ -1614,8 +1470,7 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: @@ -1623,13 +1478,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 21 Oct 2022 16:05:43 GMT + - Mon, 09 Jan 2023 20:29:45 GMT expires: - '-1' pragma: @@ -1641,9 +1496,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14999' + - '14998' x-msedge-ref: - - 'Ref A: A36A6778517847BAA9321ADB27516A55 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:05:43Z' + - 'Ref A: A5DACC68A49249F584B2304A5F8F1E6C Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:29:43Z' status: code: 202 message: Accepted @@ -1661,14 +1516,13 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n - \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n + \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1677,7 +1531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:06:00 GMT + - Mon, 09 Jan 2023 20:30:02 GMT expires: - '-1' pragma: @@ -1689,7 +1543,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 905EF3739302417B81EC01CA2C377CFE Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:06:01Z' + - 'Ref A: 247778B4ED984A63B575FC53051970BE Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:30:02Z' status: code: 200 message: OK @@ -1707,14 +1561,13 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n - \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n + \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1723,7 +1576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:06:31 GMT + - Mon, 09 Jan 2023 20:30:32 GMT expires: - '-1' pragma: @@ -1735,7 +1588,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 11DF045B2349430C9FF7A7C2EE060868 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:06:31Z' + - 'Ref A: 344CEA66F84E4FB39BF539A724953AF7 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:30:32Z' status: code: 200 message: OK @@ -1753,14 +1606,13 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n - \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n + \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1769,7 +1621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:07:01 GMT + - Mon, 09 Jan 2023 20:31:03 GMT expires: - '-1' pragma: @@ -1781,7 +1633,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FB403AB4A311417CB41CBDD52C11CB2B Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:07:01Z' + - 'Ref A: C6BDFA18182C4FE082A710F3B67FD8DD Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:31:03Z' status: code: 200 message: OK @@ -1799,14 +1651,13 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n - \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n + \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1815,7 +1666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:07:31 GMT + - Mon, 09 Jan 2023 20:31:33 GMT expires: - '-1' pragma: @@ -1827,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 91C488B095824334BF1E82162D869002 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:07:32Z' + - 'Ref A: B139609589D148EDB14763AE9760C1A4 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:31:33Z' status: code: 200 message: OK @@ -1845,14 +1696,13 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n - \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n + \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1861,7 +1711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:08:01 GMT + - Mon, 09 Jan 2023 20:32:04 GMT expires: - '-1' pragma: @@ -1873,7 +1723,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 02B01B9BBE9C4EF2AB7F9812AB296325 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:08:02Z' + - 'Ref A: 741FB0C1F7184F5DA157F84A085DDAD3 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:32:03Z' status: code: 200 message: OK @@ -1891,14 +1741,13 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n - \ \"name\": \"9990ef3b-6912-4d8f-b762-c6dde4532b64\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n + \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1907,7 +1756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:08:32 GMT + - Mon, 09 Jan 2023 20:32:34 GMT expires: - '-1' pragma: @@ -1919,7 +1768,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6D53D463AE7C4A6F92FD7C622AC34248 Ref B: MIAEDGE2012 Ref C: 2022-10-21T16:08:32Z' + - 'Ref A: 35B27AABA526426CB1BE00C8A3CA7ECF Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:32:34Z' status: code: 200 message: OK @@ -1937,8 +1786,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: @@ -1952,7 +1800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:08:33 GMT + - Mon, 09 Jan 2023 20:32:34 GMT expires: - '-1' pragma: @@ -1964,7 +1812,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6025C91C501F4C8BAC177070FB07F592 Ref B: MIAEDGE2017 Ref C: 2022-10-21T16:08:33Z' + - 'Ref A: 7234C32DF057483FB6C6B75FEA2DD131 Ref B: BL2AA2030105025 Ref C: 2023-01-09T20:32:34Z' status: code: 200 message: OK @@ -1980,22 +1828,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T224354","name":"UnitTest-eus2euap-1-221020T224354","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T225431","name":"UnitTest-eus2euap-1-221020T225431","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T230935","name":"UnitTest-eus2euap-1-221020T230935","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221020T234405","name":"UnitTest-eus2euap-1-221020T234405","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221021T002359","name":"UnitTest-eus2euap-1-221021T002359","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221021T003050","name":"UnitTest-eus2euap-1-221021T003050","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-1-221021T005205","name":"UnitTest-eus2euap-1-221021T005205","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2aj4kjjsfmntizgfsdnscdmgmxlvxvwcv6xttqb","name":"cli-test-resource-one2aj4kjjsfmntizgfsdnscdmgmxlvxvwcv6xttqb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohwnawwueamfighnj7fo6d2265pn7ukwmtrf3ztk","name":"cli-test-resource-twohwnawwueamfighnj7fo6d2265pn7ukwmtrf3ztk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threex7eh5q5eeheqc74pkr6t6d3n5lj5xnlxncog6","name":"cli-test-resource-threex7eh5q5eeheqc74pkr6t6d3n5lj5xnlxncog6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '20609' + - '24525' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Oct 2022 16:08:34 GMT + - Mon, 09 Jan 2023 20:32:35 GMT expires: - '-1' pragma: @@ -2007,7 +1854,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F99819DA1BCE4918BCA3B70B688D09D4 Ref B: MIAEDGE2715 Ref C: 2022-10-21T16:08:34Z' + - 'Ref A: F767A5722E3241CCAF76986980741432 Ref B: BL2AA2030107019 Ref C: 2023-01-09T20:32:36Z' status: code: 200 message: OK @@ -2027,8 +1874,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: @@ -2040,11 +1886,11 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 16:08:35 GMT + - Mon, 09 Jan 2023 20:32:40 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVNT01GSVNSQkVZVTVVRzQyUFM2UXw2MDAzQUZFMUYxOTE0RjA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVaTUQyNkpBWjVWTVgzVVg0TFZDT3w0MDBBQjE0MENFQTJEOURBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -2054,9 +1900,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' x-msedge-ref: - - 'Ref A: CD52CBD2F6164F9CAF5058FD1B3EA0CB Ref B: MIAEDGE1512 Ref C: 2022-10-21T16:08:35Z' + - 'Ref A: 55C2A7CC7EDC4FB89402EA5CEB2C80A6 Ref B: BL2AA2030105019 Ref C: 2023-01-09T20:32:36Z' status: code: 202 message: Accepted @@ -2074,10 +1920,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVNT01GSVNSQkVZVTVVRzQyUFM2UXw2MDAzQUZFMUYxOTE0RjA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVaTUQyNkpBWjVWTVgzVVg0TFZDT3w0MDBBQjE0MENFQTJEOURBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2087,7 +1932,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Oct 2022 16:08:50 GMT + - Mon, 09 Jan 2023 20:32:56 GMT expires: - '-1' pragma: @@ -2099,7 +1944,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 58701765B5134511AF62ECD4B8902EC6 Ref B: MIAEDGE1512 Ref C: 2022-10-21T16:08:51Z' + - 'Ref A: D7475B5039A440A8AA7F4951106812C2 Ref B: BL2AA2030105019 Ref C: 2023-01-09T20:32:56Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index 4bbbe5e646a..e10d76cb4da 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -30,17 +29,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:14 GMT + - Mon, 09 Jan 2023 19:53:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9AE1304950A54CD784394D71ED234D0A Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:53:41Z' status: code: 404 message: Not Found @@ -70,10 +71,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,14 +85,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2ce0e135-98fb-4f40-9c36-73a7ccf673d7?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2b9394fc-4dea-4843-9bf2-e22fbdcd2777?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +100,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:15 GMT + - Mon, 09 Jan 2023 19:53:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: A5456278FDA341B49D274B8B79EF3027 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:53:43Z' status: code: 201 message: Created @@ -130,37 +132,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2ce0e135-98fb-4f40-9c36-73a7ccf673d7?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2b9394fc-4dea-4843-9bf2-e22fbdcd2777?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2ce0e135-98fb-4f40-9c36-73a7ccf673d7\",\r\n - \ \"name\": \"2ce0e135-98fb-4f40-9c36-73a7ccf673d7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2b9394fc-4dea-4843-9bf2-e22fbdcd2777\",\r\n + \ \"name\": \"2b9394fc-4dea-4843-9bf2-e22fbdcd2777\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:32 GMT + - Mon, 09 Jan 2023 19:54:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4030C3A234F64CAEA7EA0CD5480F94E4 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:54:02Z' status: code: 200 message: OK @@ -178,16 +177,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-15-825c1\",\r\n - \ \"duration\": \"PT5.2474219S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-53-44-ea964\",\r\n + \ \"duration\": \"PT6.4213773S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -197,9 +195,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -210,21 +208,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:32 GMT + - Mon, 09 Jan 2023 19:54:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 84CE1E8BD7F54FBA821C9DD41A8E0DAB Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:54:03Z' status: code: 200 message: OK @@ -242,16 +238,15 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-15-825c1\",\r\n - \ \"duration\": \"PT5.2474219S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-53-44-ea964\",\r\n + \ \"duration\": \"PT6.4213773S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -261,9 +256,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -274,21 +269,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:33 GMT + - Mon, 09 Jan 2023 19:54:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F5652BB0AB004A0E97A6E679E7270139 Ref B: BL2AA2030107025 Ref C: 2023-01-09T19:54:04Z' status: code: 200 message: OK @@ -306,16 +299,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-15-825c1\",\r\n - \ \"duration\": \"PT5.2474219S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-53-44-ea964\",\r\n + \ \"duration\": \"PT6.4213773S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -325,9 +317,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:15.2263867Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:15.2263867Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -338,21 +330,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:34 GMT + - Mon, 09 Jan 2023 19:54:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E3F397F01E4848E08308750452A2FB6B Ref B: BL2AA2030108037 Ref C: 2023-01-09T19:54:05Z' status: code: 200 message: OK @@ -372,10 +362,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -385,19 +374,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:57:34 GMT + - Mon, 09 Jan 2023 19:54:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: B2C86430F67A4A119D90DFB8C7404149 Ref B: BL2AA2030108037 Ref C: 2023-01-09T19:54:06Z' status: code: 200 message: OK @@ -415,10 +406,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": []\r\n}" @@ -430,21 +420,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:34 GMT + - Mon, 09 Jan 2023 19:54:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 947B2FCD5CC94A109DC16268982E6263 Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:54:07Z' status: code: 200 message: OK @@ -462,10 +450,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -479,17 +466,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:36 GMT + - Mon, 09 Jan 2023 19:54:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B8152E411FD440AE90657040688157AF Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:09Z' status: code: 404 message: Not Found @@ -519,10 +508,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -534,14 +522,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0d83e5aa-c731-4a20-a284-9af3a3f654a8?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -549,19 +537,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:37 GMT + - Mon, 09 Jan 2023 19:54:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: D20E5311D28D49EEBC4B56CFFA805A13 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:09Z' status: code: 201 message: Created @@ -579,37 +569,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0d83e5aa-c731-4a20-a284-9af3a3f654a8?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13\",\r\n - \ \"name\": \"afbf3a5f-12aa-4cef-ba11-4ecb91b0ca13\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0d83e5aa-c731-4a20-a284-9af3a3f654a8\",\r\n + \ \"name\": \"0d83e5aa-c731-4a20-a284-9af3a3f654a8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:54 GMT + - Mon, 09 Jan 2023 19:54:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 72DD3E5B71514060BCC3DAB962195374 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:28Z' status: code: 200 message: OK @@ -627,16 +614,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-36-e6c4d\",\r\n - \ \"duration\": \"PT5.2905339S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-11-97149\",\r\n + \ \"duration\": \"PT9.6951856S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -646,9 +632,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -659,21 +645,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:54 GMT + - Mon, 09 Jan 2023 19:54:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B9A5ED03F3B64377A4F3BD668E5CB805 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:29Z' status: code: 200 message: OK @@ -691,16 +675,15 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-36-e6c4d\",\r\n - \ \"duration\": \"PT5.2905339S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-11-97149\",\r\n + \ \"duration\": \"PT9.6951856S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -710,9 +693,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -723,21 +706,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:55 GMT + - Mon, 09 Jan 2023 19:54:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6B92724AC8704D97996FF9211FC63656 Ref B: BL2AA2030106025 Ref C: 2023-01-09T19:54:30Z' status: code: 200 message: OK @@ -755,16 +736,15 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-57-36-e6c4d\",\r\n - \ \"duration\": \"PT5.2905339S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-11-97149\",\r\n + \ \"duration\": \"PT9.6951856S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -774,9 +754,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:57:36.8499241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:57:36.8499241Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -787,21 +767,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:57 GMT + - Mon, 09 Jan 2023 19:54:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 632D7CB69EE04773A2D9D5B8B8E3BB57 Ref B: BL2AA2030110031 Ref C: 2023-01-09T19:54:31Z' status: code: 200 message: OK @@ -821,10 +799,9 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -834,19 +811,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:57:57 GMT + - Mon, 09 Jan 2023 19:54:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' + x-msedge-ref: + - 'Ref A: 07793C286B074574B3937A0941449B08 Ref B: BL2AA2030110031 Ref C: 2023-01-09T19:54:31Z' status: code: 200 message: OK @@ -864,10 +843,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": []\r\n}" @@ -879,21 +857,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:58 GMT + - Mon, 09 Jan 2023 19:54:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6D5BD535129C4488B8913A512A62E401 Ref B: BL2AA2030110051 Ref C: 2023-01-09T19:54:33Z' status: code: 200 message: OK @@ -915,10 +891,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -930,17 +905,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:57:59 GMT + - Mon, 09 Jan 2023 19:54: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-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' + x-msedge-ref: + - 'Ref A: A4491C4614DA446BB5A4859EDF19B271 Ref B: BL2AA2030110033 Ref C: 2023-01-09T19:54:33Z' status: code: 201 message: Created @@ -958,10 +937,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -975,17 +953,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:01 GMT + - Mon, 09 Jan 2023 19:54:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7DE9B1825AE7460BB85DC51E15464A95 Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:54:36Z' status: code: 404 message: Not Found @@ -1024,10 +1004,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1039,13 +1018,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:58:01.9883146Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:01.9883146Z\"\r\n + \"2023-01-09T19:54:37.2898811Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:37.2898811Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1201792a-2a55-490d-bc3e-3322a8fe73ba?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1053,19 +1032,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:01 GMT + - Mon, 09 Jan 2023 19:54:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' + x-msedge-ref: + - 'Ref A: A78BDFD6963145A88C382818085A19EA Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:54:36Z' status: code: 201 message: Created @@ -1083,37 +1064,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1201792a-2a55-490d-bc3e-3322a8fe73ba?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1201792a-2a55-490d-bc3e-3322a8fe73ba\",\r\n - \ \"name\": \"1201792a-2a55-490d-bc3e-3322a8fe73ba\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n + \ \"name\": \"05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:19 GMT + - Mon, 09 Jan 2023 19:54:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E952A4D5C0F24A16A74E2648E6F15757 Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:54:54Z' status: code: 200 message: OK @@ -1131,16 +1109,60 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n + \ \"name\": \"05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 19:55:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 436F29F37AFB43648897ACC591A37555 Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:55:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-02-0e0e3\",\r\n - \ \"duration\": \"PT7.3963533S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-37-babd1\",\r\n + \ \"duration\": \"PT21.1690623S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1150,34 +1172,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:01.9883146Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:37.2898811Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:01.9883146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:37.2898811Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1997' + - '1998' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:19 GMT + - Mon, 09 Jan 2023 19:55:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0A9F0E829EED48F1A6E15A55433AE7FF Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:55:25Z' status: code: 200 message: OK @@ -1195,16 +1215,15 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-02-0e0e3\",\r\n - \ \"duration\": \"PT7.3963533S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-37-babd1\",\r\n + \ \"duration\": \"PT21.1690623S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1214,34 +1233,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:01.9883146Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:37.2898811Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:01.9883146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:37.2898811Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1997' + - '1998' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:20 GMT + - Mon, 09 Jan 2023 19:55:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5C8B3467D54D46369F62766262DA532B Ref B: BL2AA2030108011 Ref C: 2023-01-09T19:55:26Z' status: code: 200 message: OK @@ -1261,10 +1278,9 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1274,19 +1290,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:58:20 GMT + - Mon, 09 Jan 2023 19:55:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14994' + x-msedge-ref: + - 'Ref A: D96E4A297021480EB32615E37C315B1A Ref B: BL2AA2030108011 Ref C: 2023-01-09T19:55:27Z' status: code: 200 message: OK @@ -1304,113 +1322,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:22 GMT + - Mon, 09 Jan 2023 19:55:30 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FD26EFDA29E7416A95CCFA5F4C848413 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:55:30Z' status: code: 200 message: OK @@ -1428,18 +1387,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:04.9688067Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:46.2862426Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:05.4062505Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:49.1301312Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -1450,21 +1408,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:22 GMT + - Mon, 09 Jan 2023 19:55:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0A5A01A4CD6846908BF16925D0EE0993 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:55:30Z' status: code: 200 message: OK @@ -1482,10 +1438,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -1499,17 +1454,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:23 GMT + - Mon, 09 Jan 2023 19:55:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E662DFFBAF214FD9AC7DC6FD3B9218ED Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:31Z' status: code: 404 message: Not Found @@ -1548,10 +1505,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1563,33 +1519,35 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:58:24.2888519Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:24.2888519Z\"\r\n + \"2023-01-09T19:55:33.457409Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:55:33.457409Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f806aeb-3419-46b6-a542-24ddcbfb712c?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/afd38411-0251-45f3-b0ef-913bd67b7226?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1142' + - '1140' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:24 GMT + - Mon, 09 Jan 2023 19:55:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' + x-msedge-ref: + - 'Ref A: 122B76490BCD4ED9AC05472BBA4B8411 Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:32Z' status: code: 201 message: Created @@ -1607,37 +1565,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f806aeb-3419-46b6-a542-24ddcbfb712c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/afd38411-0251-45f3-b0ef-913bd67b7226?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3f806aeb-3419-46b6-a542-24ddcbfb712c\",\r\n - \ \"name\": \"3f806aeb-3419-46b6-a542-24ddcbfb712c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/afd38411-0251-45f3-b0ef-913bd67b7226\",\r\n + \ \"name\": \"afd38411-0251-45f3-b0ef-913bd67b7226\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:41 GMT + - Mon, 09 Jan 2023 19:55:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 22B90B1BEBE8444BAEFFBB4628CBEFC2 Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:50Z' status: code: 200 message: OK @@ -1655,16 +1610,15 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-24-d7117\",\r\n - \ \"duration\": \"PT5.683338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-55-33-096f5\",\r\n + \ \"duration\": \"PT16.5807452S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1674,10 +1628,10 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:24.2888519Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:55:33.457409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:24.2888519Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:55:33.457409Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: @@ -1687,21 +1641,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:41 GMT + - Mon, 09 Jan 2023 19:55:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6AF45364C6BA4C85B62045E1B82A9DEB Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:51Z' status: code: 200 message: OK @@ -1719,16 +1671,15 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-18-58-24-d7117\",\r\n - \ \"duration\": \"PT5.683338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-55-33-096f5\",\r\n + \ \"duration\": \"PT16.5807452S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1738,10 +1689,10 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:58:24.2888519Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:55:33.457409Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:58:24.2888519Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:55:33.457409Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: @@ -1751,21 +1702,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:58:43 GMT + - Mon, 09 Jan 2023 19:55:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2590CA322A4E40AFA5F1751A418F53EE Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:55:53Z' status: code: 200 message: OK @@ -1785,34 +1734,35 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Nov 2022 18:58:43 GMT + - Mon, 09 Jan 2023 19:55:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14994' + x-msedge-ref: + - 'Ref A: B49DD95986954C8BAC3CF182DCB51077 Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:55:54Z' status: code: 202 message: Accepted @@ -1830,37 +1780,34 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n - \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n + \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:59:00 GMT + - Mon, 09 Jan 2023 19:56:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DDF843BAA80A4DEE8BB99517BFF171E8 Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:56:13Z' status: code: 200 message: OK @@ -1878,37 +1825,34 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n - \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n + \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:59:31 GMT + - Mon, 09 Jan 2023 19:56:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 564F0B22109B4E55BF7ECADF96C704CC Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:56:44Z' status: code: 200 message: OK @@ -1926,37 +1870,34 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n - \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n + \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:00:01 GMT + - Mon, 09 Jan 2023 19:57:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F867FFDB22014E8F9CF4D5B696C4AF99 Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:57:15Z' status: code: 200 message: OK @@ -1974,37 +1915,34 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n - \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n + \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:00:31 GMT + - Mon, 09 Jan 2023 19:57:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D4611BE434F141C6B9964BFA5407B3EE Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:57:47Z' status: code: 200 message: OK @@ -2022,37 +1960,34 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece866f5-aa48-4876-956c-449f368eb10f\",\r\n - \ \"name\": \"ece866f5-aa48-4876-956c-449f368eb10f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n + \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:01:02 GMT + - Mon, 09 Jan 2023 19:58:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C3A6355E38F14E21B4364D30EF439DDF Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:58:18Z' status: code: 200 message: OK @@ -2068,39 +2003,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2022-04-25T19:02:06.5440853Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2022-11-08T19:10:36.8883217Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:23:44.9589885Z","changedTime":"2022-11-14T23:03:01.9713904Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:28:25.4284299Z","changedTime":"2022-11-14T23:03:02.0267239Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3","name":"simpleblogstorage3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-07T23:01:38.0105357Z","changedTime":"2022-11-07T23:11:58.1206582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T18:58:04.9440397Z","changedTime":"2022-11-18T18:58:05.1757125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:58:04.9688067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:58:04.9688067Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-18T18:58:05.3701845Z","changedTime":"2022-11-18T18:58:05.5508265Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:58:05.4062505Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:58:05.4062505Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T19:54:44.9629142Z","changedTime":"2023-01-09T19:54:46.4502723Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:54:46.2862426Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:54:46.2862426Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T19:54:48.1830081Z","changedTime":"2023-01-09T19:54:49.2798022Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:54:49.1301312Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:54:49.1301312Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' headers: cache-control: - no-cache content-length: - - '72274' + - '64782' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:01:02 GMT + - Mon, 09 Jan 2023 19:58:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 46632115BEB349BE96A62A157450DED5 Ref B: BL2AA2030105053 Ref C: 2023-01-09T19:58:19Z' status: code: 200 message: OK @@ -2120,10 +2049,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '' @@ -2133,19 +2061,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:01:04 GMT + - Mon, 09 Jan 2023 19:58:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' + x-msedge-ref: + - 'Ref A: 2652BBE348BD45159425644D99A2276D Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:58:20Z' status: code: 202 message: Accepted @@ -2163,10 +2095,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2176,17 +2107,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:01:20 GMT + - Mon, 09 Jan 2023 19:58:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 61BA8A33F8494B198173C46A5E1AAC51 Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:58:38Z' status: code: 202 message: Accepted @@ -2204,10 +2139,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2217,17 +2151,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:01:35 GMT + - Mon, 09 Jan 2023 19:58:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4EDB4251F1A844F7812DBC888EC5A179 Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:58:54Z' status: code: 202 message: Accepted @@ -2245,10 +2183,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2258,17 +2195,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:01:51 GMT + - Mon, 09 Jan 2023 19:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 41520F1BD4424F98AAEC7A4C8431C25C Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:59:09Z' status: code: 202 message: Accepted @@ -2286,10 +2227,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2299,15 +2239,63 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:02:06 GMT + - Mon, 09 Jan 2023 19:59:24 GMT + expires: + - '-1' + location: + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 60E566201F2C4F2D85509C3DA78CAF2A Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:59:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 19:59:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7639A966394447AFBBB8D1B143C45B24 Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:59:40Z' status: code: 200 message: OK @@ -2329,10 +2317,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2344,17 +2331,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:08 GMT + - Mon, 09 Jan 2023 19:59: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-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' + x-msedge-ref: + - 'Ref A: 5231CD25E75041FF9FEC9084412675AE Ref B: BL2AA2030106051 Ref C: 2023-01-09T19:59:41Z' status: code: 201 message: Created @@ -2372,10 +2363,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -2389,17 +2379,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:10 GMT + - Mon, 09 Jan 2023 19:59:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 44B87002824A4B2DBC5A7D03161CAD9C Ref B: BL2AA2030106037 Ref C: 2023-01-09T19:59:44Z' status: code: 404 message: Not Found @@ -2438,10 +2430,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -2454,13 +2445,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T19:02:10.4543763Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:02:10.4543763Z\"\r\n + \"2023-01-09T19:59:45.6480521Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:59:45.6480521Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -2468,19 +2459,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:10 GMT + - Mon, 09 Jan 2023 19:59:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: 55FEE2CDB99E4B05A0B000A87DC942C9 Ref B: BL2AA2030106037 Ref C: 2023-01-09T19:59:45Z' status: code: 201 message: Created @@ -2498,37 +2491,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537\",\r\n - \ \"name\": \"354c3230-0f99-4cd4-af41-571d89297537\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n + \ \"name\": \"dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:27 GMT + - Mon, 09 Jan 2023 20:00:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CA6568A3B26B4071A5E43E35C6252375 Ref B: BL2AA2030106037 Ref C: 2023-01-09T20:00:03Z' status: code: 200 message: OK @@ -2546,37 +2536,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/354c3230-0f99-4cd4-af41-571d89297537\",\r\n - \ \"name\": \"354c3230-0f99-4cd4-af41-571d89297537\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n + \ \"name\": \"dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:58 GMT + - Mon, 09 Jan 2023 20:00:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D61D7E6D00D04380B0DC243A98748AF6 Ref B: BL2AA2030106037 Ref C: 2023-01-09T20:00:33Z' status: code: 200 message: OK @@ -2594,16 +2581,15 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-02-10-ed4b2\",\r\n - \ \"duration\": \"PT19.6576622S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-59-45-98ccc\",\r\n + \ \"duration\": \"PT31.7502942S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -2614,9 +2600,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:02:10.4543763Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:59:45.6480521Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:02:10.4543763Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:59:45.6480521Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2627,21 +2613,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:58 GMT + - Mon, 09 Jan 2023 20:00:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CD8849527D024713A194EE14F75347FE Ref B: BL2AA2030106037 Ref C: 2023-01-09T20:00:33Z' status: code: 200 message: OK @@ -2659,10 +2643,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2674,17 +2657,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:59 GMT + - Mon, 09 Jan 2023 20:00:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6290DABD2F0E4E77A965E810FBCF9524 Ref B: BL2AA2030107023 Ref C: 2023-01-09T20:00:34Z' status: code: 200 message: OK @@ -2702,32 +2687,33 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-18T19:02:13.1872288Z","changedTime":"2022-11-18T19:02:13.373004Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T19:02:13.2091167Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T19:02:13.2091167Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T19:59:51.3155005Z","changedTime":"2023-01-09T19:59:52.0793047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:59:51.9649754Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:59:51.9649754Z"}}]}' headers: cache-control: - no-cache content-length: - - '669' + - '670' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:59 GMT + - Mon, 09 Jan 2023 20:00:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7DE3467BFB14438C865B2871BA737CC9 Ref B: BL2AA2030107023 Ref C: 2023-01-09T20:00:34Z' status: code: 200 message: OK @@ -2745,10 +2731,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2760,17 +2745,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:02:59 GMT + - Mon, 09 Jan 2023 20:00:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 63EA191551B040118E23C347B2559B94 Ref B: BL2AA2030107049 Ref C: 2023-01-09T20:00:35Z' status: code: 200 message: OK @@ -2788,16 +2775,15 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-02-10-ed4b2\",\r\n - \ \"duration\": \"PT19.6576622S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-59-45-98ccc\",\r\n + \ \"duration\": \"PT31.7502942S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -2808,9 +2794,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:02:10.4543763Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:59:45.6480521Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:02:10.4543763Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:59:45.6480521Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2821,21 +2807,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:03:00 GMT + - Mon, 09 Jan 2023 20:00:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 579756EA191E49E4888640E358FB170F Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:00:36Z' status: code: 200 message: OK @@ -2855,34 +2839,35 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Nov 2022 19:03:00 GMT + - Mon, 09 Jan 2023 20:00:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' + x-msedge-ref: + - 'Ref A: F109DD4A14D943E1808936BDFC1599C3 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:00:36Z' status: code: 202 message: Accepted @@ -2900,37 +2885,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:03:17 GMT + - Mon, 09 Jan 2023 20:00:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E1FAD59CA5AC4E5FADD422EFA3AA0F28 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:00:55Z' status: code: 200 message: OK @@ -2948,37 +2930,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:03:48 GMT + - Mon, 09 Jan 2023 20:01:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CBDA9DE0D9CD4728842AA6FED0F73FC5 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:01:25Z' status: code: 200 message: OK @@ -2996,37 +2975,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:04:18 GMT + - Mon, 09 Jan 2023 20:01:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3902141174CC476A9826345A5A7F0B28 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:01:56Z' status: code: 200 message: OK @@ -3044,37 +3020,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:04:48 GMT + - Mon, 09 Jan 2023 20:02:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 679F1BA584014ABBB907CA08097BBA51 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:02:26Z' status: code: 200 message: OK @@ -3092,37 +3065,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:05:19 GMT + - Mon, 09 Jan 2023 20:02:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 35AA264453C444FFB71F617512ACFBAE Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:02:57Z' status: code: 200 message: OK @@ -3140,37 +3110,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:05:50 GMT + - Mon, 09 Jan 2023 20:03:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 551E9657925D4938A7BFF3D3BB3ACF25 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:03:27Z' status: code: 200 message: OK @@ -3188,37 +3155,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n - \ \"name\": \"67573194-89e7-4d4d-82d6-af782d74a3c9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n + \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:06:20 GMT + - Mon, 09 Jan 2023 20:03:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AAF0DF70740243099CAE9406AC22799E Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:03:58Z' status: code: 200 message: OK @@ -3236,10 +3200,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3251,17 +3214,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:06:20 GMT + - Mon, 09 Jan 2023 20:03:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C99B86CD25624188AEF4789EB05D73DD Ref B: BL2AA2030110053 Ref C: 2023-01-09T20:03:59Z' status: code: 200 message: OK @@ -3279,10 +3244,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: string: '{"value":[]}' @@ -3294,17 +3258,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:06:21 GMT + - Mon, 09 Jan 2023 20:04:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 96B0A0D4F5504506B2DD9AF4497FA642 Ref B: BL2AA2030110053 Ref C: 2023-01-09T20:03:59Z' status: code: 200 message: OK @@ -3320,33 +3286,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:57:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T19:53:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '36267' + - '23948' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:06:20 GMT + - Mon, 09 Jan 2023 20:04:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6BCF2F66242F47F89F50F5E813067D15 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:04:00Z' status: code: 200 message: OK @@ -3366,10 +3332,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '' @@ -3379,101 +3344,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:06:23 GMT + - Mon, 09 Jan 2023 20:04:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 19:06:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 19:06:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '14993' + x-msedge-ref: + - 'Ref A: 9D3A4818077C4402BC9D20C771B59C33 Ref B: BL2AA2030110031 Ref C: 2023-01-09T20:04:01Z' status: code: 202 message: Accepted @@ -3491,10 +3378,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -3504,56 +3390,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:07:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 19:07:25 GMT + - Mon, 09 Jan 2023 20:04:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8C0FAAD35BBC48FA90B57B7DF84C854C Ref B: BL2AA2030110031 Ref C: 2023-01-09T20:04:19Z' status: code: 200 message: OK @@ -3575,10 +3424,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3590,17 +3438,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:07:28 GMT + - Mon, 09 Jan 2023 20:04: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-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: 984C115F96C942F9B811F06BFC3D8820 Ref B: BL2AA2030110003 Ref C: 2023-01-09T20:04:20Z' status: code: 201 message: Created @@ -3618,10 +3470,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -3635,17 +3486,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:07:29 GMT + - Mon, 09 Jan 2023 20:04:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E317E00C60404AC3A3A47B60AD838343 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:04:22Z' status: code: 404 message: Not Found @@ -3681,10 +3534,9 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -3696,13 +3548,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T19:07:29.6642008Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:07:29.6642008Z\"\r\n + \"2023-01-09T20:04:24.6031488Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:04:24.6031488Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3710,19 +3562,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:07:30 GMT + - Mon, 09 Jan 2023 20:04:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: 52F4D0FD60A845B78F8863A4EAEBB657 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:04:23Z' status: code: 201 message: Created @@ -3740,37 +3594,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n - \ \"name\": \"dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n + \ \"name\": \"38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:07:47 GMT + - Mon, 09 Jan 2023 20:04:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C1AC62105E9549CEBDAD0C65E14884A6 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:04:42Z' status: code: 200 message: OK @@ -3788,37 +3639,34 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n - \ \"name\": \"dd137062-40ea-47e3-8ebc-d7d794e50501\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n + \ \"name\": \"38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:08:17 GMT + - Mon, 09 Jan 2023 20:05:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E6E4323663A14C52BCE82A61BDF43B9B Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:05:12Z' status: code: 200 message: OK @@ -3836,16 +3684,15 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-07-29-26e20\",\r\n - \ \"duration\": \"PT19.9350877S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-20-04-24-24c38\",\r\n + \ \"duration\": \"PT28.5717385S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3853,9 +3700,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:07:29.6642008Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:04:24.6031488Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:07:29.6642008Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:04:24.6031488Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3866,21 +3713,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:08:17 GMT + - Mon, 09 Jan 2023 20:05:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4C64FE1CA25148F999AB4AD41D614B7C Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:05:12Z' status: code: 200 message: OK @@ -3898,10 +3743,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3913,17 +3757,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:08:18 GMT + - Mon, 09 Jan 2023 20:05:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A2C04239674041F2A97A33FBB82E7F91 Ref B: BL2AA2030108029 Ref C: 2023-01-09T20:05:13Z' status: code: 200 message: OK @@ -3941,16 +3787,15 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2022-11-18-19-07-29-26e20\",\r\n - \ \"duration\": \"PT19.9350877S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-20-04-24-24c38\",\r\n + \ \"duration\": \"PT28.5717385S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3958,9 +3803,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:07:29.6642008Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:04:24.6031488Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:07:29.6642008Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:04:24.6031488Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3971,21 +3816,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:08:19 GMT + - Mon, 09 Jan 2023 20:05:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BCC60C7A3CED4F9AA39491A7CED2D2C2 Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:05:13Z' status: code: 200 message: OK @@ -4005,34 +3848,35 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Nov 2022 19:08:19 GMT + - Mon, 09 Jan 2023 20:05:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14993' + x-msedge-ref: + - 'Ref A: A0ACD7BDC24045E588E0A4BD1AB65BAA Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:05:14Z' status: code: 202 message: Accepted @@ -4050,37 +3894,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n - \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n + \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:08:37 GMT + - Mon, 09 Jan 2023 20:05:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 44A2593CAD5A42B98E11285B0FE42B5A Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:05:32Z' status: code: 200 message: OK @@ -4098,37 +3939,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n - \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n + \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:09:08 GMT + - Mon, 09 Jan 2023 20:06:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E1A11B4B11C14A79A5329359209A9FE5 Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:06:03Z' status: code: 200 message: OK @@ -4146,37 +3984,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n - \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n + \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:09:38 GMT + - Mon, 09 Jan 2023 20:06:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E42EBBCFC3AB4245B903D0FFE2FEA944 Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:06:33Z' status: code: 200 message: OK @@ -4194,37 +4029,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n - \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n + \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:10:08 GMT + - Mon, 09 Jan 2023 20:07:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CF7FB89CF56D4D3892C17657403FB06A Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:07:04Z' status: code: 200 message: OK @@ -4242,37 +4074,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n - \ \"name\": \"22c88b67-5da4-4f8c-b7f9-04d3b933770d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n + \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:10:39 GMT + - Mon, 09 Jan 2023 20:07:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 67A724C4F5D4479BBEBCCC395604F10B Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:07:34Z' status: code: 200 message: OK @@ -4280,41 +4109,44 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group list + - stack group delete Connection: - keep-alive + ParameterSetName: + - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-18T18:57:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n + \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '36267' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:10:39 GMT + - Mon, 09 Jan 2023 20:08:05 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 371AB10AA1BA470BB738505AF5D2A96D Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:08:05Z' status: code: 200 message: OK @@ -4326,184 +4158,59 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 19:10:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Nov 2022 19:10:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete + - group list Connection: - keep-alive - ParameterSetName: - - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T19:53:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '23948' + content-type: + - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:11:12 GMT + - Mon, 09 Jan 2023 20:08:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 70284270132D4258ABB439247B5D26E9 Ref B: BL2AA2030110021 Ref C: 2023-01-09T20:08:06Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - group delete Connection: - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: + Content-Length: - '0' - date: - - Fri, 18 Nov 2022 19:11:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '' @@ -4513,17 +4220,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:11:43 GMT + - Mon, 09 Jan 2023 20:08:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14996' + x-msedge-ref: + - 'Ref A: F5A73DB896B748CC88B2F4B2F4539428 Ref B: BL2AA2030105025 Ref C: 2023-01-09T20:08:07Z' status: code: 202 message: Accepted @@ -4541,10 +4254,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4RTVDNUUxM0YzNEMyREM2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -4554,15 +4266,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:11:58 GMT + - Mon, 09 Jan 2023 20:08:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3F2B110D18BF4025B9DD3C40FC453E90 Ref B: BL2AA2030105025 Ref C: 2023-01-09T20:08:26Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index ef0aa107a09..5c2d3fc0ac8 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -29,17 +28,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:16:56 GMT + - Mon, 09 Jan 2023 17:58: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 25061CFF27144AA0A8640CA8E42E6570 Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:05Z' status: code: 404 message: Not Found @@ -69,10 +72,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -86,13 +88,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:16:57.5222781Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n + \"2023-01-09T17:58:06.6678205Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/80261e35-0cd1-4fb0-aeee-c9c2db6895c2?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/fb75825f-b34f-42d3-91bc-5673fd8a0e50?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +102,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:00 GMT + - Mon, 09 Jan 2023 17:58:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: F9F75C1CFDDC4C4F8D1295E10E748AB2 Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:05Z' status: code: 201 message: Created @@ -130,37 +134,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/80261e35-0cd1-4fb0-aeee-c9c2db6895c2?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/fb75825f-b34f-42d3-91bc-5673fd8a0e50?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/80261e35-0cd1-4fb0-aeee-c9c2db6895c2\",\r\n - \ \"name\": \"80261e35-0cd1-4fb0-aeee-c9c2db6895c2\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/fb75825f-b34f-42d3-91bc-5673fd8a0e50\",\r\n + \ \"name\": \"fb75825f-b34f-42d3-91bc-5673fd8a0e50\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:17 GMT + - Mon, 09 Jan 2023 17:58:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 206791AF9569432FA42CDED60AECAF88 Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:24Z' status: code: 200 message: OK @@ -178,18 +179,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-00-6d49f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-07-5afa9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.129879S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT9.4784932S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,34 +199,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:16:57.5222781Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:06.6678205Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1598' + - '1599' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:17 GMT + - Mon, 09 Jan 2023 17:58:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 61C2218E07BB4B5AAB9483E4AD73990B Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:24Z' status: code: 200 message: OK @@ -244,18 +242,17 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-00-6d49f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-07-5afa9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.129879S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT9.4784932S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -265,34 +262,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:16:57.5222781Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:06.6678205Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1598' + - '1599' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:21 GMT + - Mon, 09 Jan 2023 17:58:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D6D1DF5F34A740A8953255D59EBAB96E Ref B: BL2AA2030110007 Ref C: 2023-01-09T17:58:25Z' status: code: 200 message: OK @@ -310,18 +305,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-00-6d49f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-07-5afa9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.129879S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT9.4784932S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -331,34 +325,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:16:57.5222781Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:06.6678205Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:16:57.5222781Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1598' + - '1599' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:24 GMT + - Mon, 09 Jan 2023 17:58:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DD99AF0CAB094056930809431EAC8AC5 Ref B: BL2AA2030106011 Ref C: 2023-01-09T17:58:26Z' status: code: 200 message: OK @@ -378,10 +370,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -391,19 +382,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:17:26 GMT + - Mon, 09 Jan 2023 17:58:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: CEB870EDA5EF4B219A0F3D79551CAE7F Ref B: BL2AA2030106011 Ref C: 2023-01-09T17:58:27Z' status: code: 200 message: OK @@ -421,10 +414,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -437,17 +429,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:28 GMT + - Mon, 09 Jan 2023 17:58:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 19CA431DCA34452192991313494BDB5F Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:28Z' status: code: 404 message: Not Found @@ -477,10 +473,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -494,13 +489,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:17:29.8378302Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:17:29.8378302Z\"\r\n + \"2023-01-09T17:58:29.7598918Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:29.7598918Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5338e36e-14b5-4c7d-b4f6-a23815c30eea?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4aed3ea4-a6bc-426f-bd54-07350e03340e?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -508,19 +503,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:32 GMT + - Mon, 09 Jan 2023 17:58:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 0EA9EF113051440DBBB28A65A45C824C Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:29Z' status: code: 201 message: Created @@ -538,37 +535,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5338e36e-14b5-4c7d-b4f6-a23815c30eea?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4aed3ea4-a6bc-426f-bd54-07350e03340e?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5338e36e-14b5-4c7d-b4f6-a23815c30eea\",\r\n - \ \"name\": \"5338e36e-14b5-4c7d-b4f6-a23815c30eea\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4aed3ea4-a6bc-426f-bd54-07350e03340e\",\r\n + \ \"name\": \"4aed3ea4-a6bc-426f-bd54-07350e03340e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:49 GMT + - Mon, 09 Jan 2023 17:58:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6A92B323A2E341498242EDB2FB0B531C Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:47Z' status: code: 200 message: OK @@ -586,18 +580,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-33-30ef7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-30-39fe2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.0231966S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.3231271S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -607,34 +600,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:17:29.8378302Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:29.7598918Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:17:29.8378302Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:29.7598918Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1600' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:50 GMT + - Mon, 09 Jan 2023 17:58:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1BCC2B30BD7B47D989AB387009B3845A Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:47Z' status: code: 200 message: OK @@ -652,18 +643,17 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-17-33-30ef7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-30-39fe2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.0231966S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.3231271S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -673,34 +663,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:17:29.8378302Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:29.7598918Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:17:29.8378302Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:29.7598918Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1600' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:54 GMT + - Mon, 09 Jan 2023 17:58:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F29A141C266A462FA8AB7DFD78D0DAE7 Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:58:48Z' status: code: 200 message: OK @@ -720,10 +708,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -733,19 +720,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:17:55 GMT + - Mon, 09 Jan 2023 17:58:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: E8E13995AFE342DEBB716B2C0A9D378B Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:58:49Z' status: code: 200 message: OK @@ -767,10 +756,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -782,17 +770,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:58 GMT + - Mon, 09 Jan 2023 17:58:51 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 16AED872598E4E07A245718AA485FB1F Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:58:50Z' status: code: 201 message: Created @@ -810,10 +802,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -826,17 +817,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:17:59 GMT + - Mon, 09 Jan 2023 17:58: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 7804E6356D65464383F2B1A2CDF42D56 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:58:53Z' status: code: 404 message: Not Found @@ -876,10 +871,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -892,14 +886,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:00.9441534Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:54.0264355Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:00.9441534Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:54.0264355Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0e5759e3-4b30-4223-970d-fbcf69ba87b9?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -907,19 +901,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:02 GMT + - Mon, 09 Jan 2023 17:58:53 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: E1F1779EC1224C3B8FEF35596C5E2DF7 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:58:53Z' status: code: 201 message: Created @@ -937,37 +933,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0e5759e3-4b30-4223-970d-fbcf69ba87b9?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0e5759e3-4b30-4223-970d-fbcf69ba87b9\",\r\n - \ \"name\": \"0e5759e3-4b30-4223-970d-fbcf69ba87b9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6\",\r\n + \ \"name\": \"53ced4db-0501-4173-b685-aa76b72945f6\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:19 GMT + - Mon, 09 Jan 2023 17:59:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 83C4074E218A4AD6A029A74F8B6B4A35 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:59:11Z' status: code: 200 message: OK @@ -985,18 +978,62 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6\",\r\n + \ \"name\": \"53ced4db-0501-4173-b685-aa76b72945f6\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 17:59:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EA12ABCE7335403BAD86BD5374813067 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:59:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location -g --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-02-f7d8f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-54-eae2b\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT7.4398111S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT29.498732S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1006,9 +1043,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:00.9441534Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:54.0264355Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:00.9441534Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:54.0264355Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -1019,21 +1056,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:19 GMT + - Mon, 09 Jan 2023 17:59:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5BB0F1F35D05474785DE822168E63C3F Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:59:42Z' status: code: 200 message: OK @@ -1051,18 +1086,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-02-f7d8f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-54-eae2b\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT7.4398111S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT29.498732S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1072,9 +1106,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:00.9441534Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:54.0264355Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:00.9441534Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:54.0264355Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -1085,21 +1119,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:25 GMT + - Mon, 09 Jan 2023 17:59:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 25F6259FDCBE43C79F8EF021FC60B388 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:59:42Z' status: code: 200 message: OK @@ -1119,10 +1151,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1132,19 +1163,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:18:27 GMT + - Mon, 09 Jan 2023 17:59:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' + x-msedge-ref: + - 'Ref A: ED496B8E2A7C45E7B44187115FF6F8C1 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:59:43Z' status: code: 200 message: OK @@ -1162,113 +1195,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:28 GMT + - Mon, 09 Jan 2023 17:59:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FA009B0B56E0480C8710EC7B26BFAF2E Ref B: BL2AA2030106025 Ref C: 2023-01-09T17:59:45Z' status: code: 200 message: OK @@ -1286,43 +1260,40 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:05.409199Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:01.6872279Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:05.784269Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:05.0008468Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '727' + - '729' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:29 GMT + - Mon, 09 Jan 2023 17:59:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3024D609C47146F1B2C8A2115C7614B5 Ref B: BL2AA2030106025 Ref C: 2023-01-09T17:59:46Z' status: code: 200 message: OK @@ -1340,10 +1311,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -1356,17 +1326,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:32 GMT + - Mon, 09 Jan 2023 17:59: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 3566C8D55529435686605663E85819F9 Ref B: BL2AA2030105031 Ref C: 2023-01-09T17:59:47Z' status: code: 404 message: Not Found @@ -1406,10 +1380,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1422,14 +1395,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:33.5049298Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:49.8127544Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:33.5049298Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:49.8127544Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/396cf045-da2a-4275-9a21-5ef1e2dd4b66?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/117baaf1-009f-4e28-8a4b-8b6b6eba3ea0?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1437,19 +1410,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:36 GMT + - Mon, 09 Jan 2023 17:59:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: 22FDA9C7D7A546D49970661C9249877B Ref B: BL2AA2030105031 Ref C: 2023-01-09T17:59:48Z' status: code: 201 message: Created @@ -1467,37 +1442,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/396cf045-da2a-4275-9a21-5ef1e2dd4b66?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/117baaf1-009f-4e28-8a4b-8b6b6eba3ea0?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/396cf045-da2a-4275-9a21-5ef1e2dd4b66\",\r\n - \ \"name\": \"396cf045-da2a-4275-9a21-5ef1e2dd4b66\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/117baaf1-009f-4e28-8a4b-8b6b6eba3ea0\",\r\n + \ \"name\": \"117baaf1-009f-4e28-8a4b-8b6b6eba3ea0\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:53 GMT + - Mon, 09 Jan 2023 18:00:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AE57670A48514BCDAB463DD0979F2B75 Ref B: BL2AA2030105031 Ref C: 2023-01-09T18:00:08Z' status: code: 200 message: OK @@ -1515,18 +1487,17 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-36-63d91\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-59-50-d6e3e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT9.1860138S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.9146281S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1536,34 +1507,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:33.5049298Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:49.8127544Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:33.5049298Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:49.8127544Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2098' + - '2099' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:54 GMT + - Mon, 09 Jan 2023 18:00:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 82D2C57DEBB840A58E34355251F79ABD Ref B: BL2AA2030105031 Ref C: 2023-01-09T18:00:09Z' status: code: 200 message: OK @@ -1581,18 +1550,17 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-18-36-63d91\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-59-50-d6e3e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT9.1860138S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.9146281S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1602,34 +1570,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:18:33.5049298Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:49.8127544Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:18:33.5049298Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:49.8127544Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2098' + - '2099' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:18:58 GMT + - Mon, 09 Jan 2023 18:00:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E9503E91223144EF9A252CD6B24A6593 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:00:10Z' status: code: 200 message: OK @@ -1649,34 +1615,35 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Nov 2022 18:19:00 GMT + - Mon, 09 Jan 2023 18:00:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: 2A87DB4DF5B9459A9DB8C97870B8AA9E Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:00:11Z' status: code: 202 message: Accepted @@ -1694,37 +1661,34 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n - \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n + \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:19:18 GMT + - Mon, 09 Jan 2023 18:00:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C4B6A46463C24D3090F3C583773EAC29 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:00:31Z' status: code: 200 message: OK @@ -1742,37 +1706,34 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n - \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n + \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:19:48 GMT + - Mon, 09 Jan 2023 18:01:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B3F4F341D2A74E188CA44863739EDF96 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:01:02Z' status: code: 200 message: OK @@ -1790,37 +1751,34 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n - \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n + \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:20:18 GMT + - Mon, 09 Jan 2023 18:01:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 23351AD46B8046BFAC417C5A8887E648 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:01:33Z' status: code: 200 message: OK @@ -1838,37 +1796,34 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n - \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n + \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:20:50 GMT + - Mon, 09 Jan 2023 18:02:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 689E922378C944D494D513AF8A236BCE Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:02:04Z' status: code: 200 message: OK @@ -1886,37 +1841,34 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n - \ \"name\": \"302bcf55-685c-4b1f-831f-bf7b012c3eae\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n + \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:21:20 GMT + - Mon, 09 Jan 2023 18:02:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 039C76FC879942ABB4375939DBC4B52A Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:02:36Z' status: code: 200 message: OK @@ -1932,39 +1884,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: - string: '{"value":[{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2022-04-25T19:02:06.5440853Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkWatchers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"type":"Microsoft.Network/publicIPAddresses","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/networkInterfaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"type":"Microsoft.Compute/disks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Compute/disks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.PowerPlatform/accounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.OperationalInsights/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"type":"Microsoft.OperationsManagement/solutions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2022-11-08T19:10:36.8883217Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.KeyVault/vaults","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.ContainerInstance/containerGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"type":"Providers.Test/statefulResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/dnszones","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:23:44.9589885Z","changedTime":"2022-11-14T23:03:01.9713904Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-11-07T23:28:25.4284299Z","changedTime":"2022-11-14T23:03:02.0267239Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"type":"Microsoft.Network/publicIPAddresses","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"type":"Microsoft.Network/networkInterfaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"type":"Microsoft.Network/networkSecurityGroups","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"type":"Microsoft.Network/publicIPAddresses","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"type":"Microsoft.Network/virtualNetworks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"type":"Microsoft.Network/networkInterfaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3","name":"simpleblogstorage3","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-07T23:01:38.0105357Z","changedTime":"2022-11-07T23:11:58.1206582Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Web/serverFarms","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"type":"Microsoft.Insights/components","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"type":"Microsoft.Web/sites","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"type":"microsoft.alertsmanagement/smartDetectorAlertRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"type":"microsoft.cdn/profiles","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"type":"microsoft.cdn/profiles/endpoints","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"type":"Microsoft.Resources/templateSpecs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","location":"westus2","createdTime":"2022-11-18T18:18:05.3854122Z","changedTime":"2022-11-18T18:18:05.5859263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:18:05.409199Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:18:05.409199Z"}},{"type":"Microsoft.Resources/templateSpecs/versions","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","location":"westus2","createdTime":"2022-11-18T18:18:05.7553529Z","changedTime":"2022-11-18T18:18:05.9632277Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:18:05.784269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:18:05.784269Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:59:00.6696209Z","changedTime":"2023-01-09T17:59:02.483377Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:59:01.6872279Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:59:01.6872279Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:59:04.3609305Z","changedTime":"2023-01-09T17:59:05.4697376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:59:05.0008468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:59:05.0008468Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' headers: cache-control: - no-cache content-length: - - '72270' + - '64781' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:21:20 GMT + - Mon, 09 Jan 2023 18:02:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C9F82B70C450416790602026BC6AFB4E Ref B: BL2AA2030107011 Ref C: 2023-01-09T18:02:37Z' status: code: 200 message: OK @@ -1984,10 +1930,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '' @@ -1997,19 +1942,67 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:21:24 GMT + - Mon, 09 Jan 2023 18:02:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: B4B69809F0FF4E30B47D6CD279CAD346 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:02:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 18:02:57 GMT + expires: + - '-1' + location: + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5072CFD628CC44B388781D9EAC6BFF07 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:02:58Z' status: code: 202 message: Accepted @@ -2027,10 +2020,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2040,17 +2032,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:21:39 GMT + - Mon, 09 Jan 2023 18:03:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1EBF2E95EE464482BA84D12AFC675E7C Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:03:13Z' status: code: 202 message: Accepted @@ -2068,10 +2064,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2081,17 +2076,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:22:06 GMT + - Mon, 09 Jan 2023 18:03:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EDCD622AD0BF427B9FE7C6509FF53437 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:03:29Z' status: code: 202 message: Accepted @@ -2109,10 +2108,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2122,17 +2120,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:22:22 GMT + - Mon, 09 Jan 2023 18:03:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 96D43DC68B26455F822334D8B4E89083 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:03:44Z' status: code: 202 message: Accepted @@ -2150,10 +2152,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2163,15 +2164,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:22:37 GMT + - Mon, 09 Jan 2023 18:04:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A0414D1E85DB419D9C98262A545FFB39 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:04:00Z' status: code: 200 message: OK @@ -2189,34 +2194,36 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n - \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001' - could not be found.\"\r\n }\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '283' + - '199' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:22:42 GMT + - Mon, 09 Jan 2023 18:04:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 8351D48F043048B6B0D8CB88C264F8D1 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:00Z' status: code: 404 message: Not Found @@ -2246,10 +2253,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -2262,14 +2268,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:22:42.4448364Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:01.7002962Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:22:42.4448364Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:01.7002962Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/89d2646d-f0b2-4cc4-b6ab-c069b8c88207?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -2277,19 +2283,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:22:45 GMT + - Mon, 09 Jan 2023 18:04:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: CE9654C9F547467A8A548EF1156982B7 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:01Z' status: code: 201 message: Created @@ -2307,37 +2315,79 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n + \ \"name\": \"59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 18:04:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 46A27419DF0D47EF87CB138F7F223EE2 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/89d2646d-f0b2-4cc4-b6ab-c069b8c88207?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/89d2646d-f0b2-4cc4-b6ab-c069b8c88207\",\r\n - \ \"name\": \"89d2646d-f0b2-4cc4-b6ab-c069b8c88207\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n + \ \"name\": \"59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:02 GMT + - Mon, 09 Jan 2023 18:04:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FACDF51029954FB7998B41F2A414F544 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:49Z' status: code: 200 message: OK @@ -2355,18 +2405,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-22-45-b39e4\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-02-102a3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.9763438S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT30.8894307S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2374,34 +2423,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:22:42.4448364Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:01.7002962Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:22:42.4448364Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:01.7002962Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1613' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:03 GMT + - Mon, 09 Jan 2023 18:04:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CE616631FD2A4EEBA2FA4DEA74FA6ED0 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:50Z' status: code: 200 message: OK @@ -2419,18 +2466,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-22-45-b39e4\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-02-102a3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.9763438S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT30.8894307S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2438,34 +2484,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:22:42.4448364Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:01.7002962Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:22:42.4448364Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:01.7002962Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1613' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:07 GMT + - Mon, 09 Jan 2023 18:04:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 522FA1C6031041519787E2693E6A6BB0 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:04:51Z' status: code: 200 message: OK @@ -2485,10 +2529,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -2498,19 +2541,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:23:09 GMT + - Mon, 09 Jan 2023 18:04:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' + x-msedge-ref: + - 'Ref A: 6EACC4A60E6F4CCA82693A49712C2CF4 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:04:52Z' status: code: 200 message: OK @@ -2528,10 +2573,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2543,17 +2587,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:10 GMT + - Mon, 09 Jan 2023 18:04:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 177C135B8F2A41B9BBF1536A88473DF5 Ref B: BL2AA2030110005 Ref C: 2023-01-09T18:04:54Z' status: code: 200 message: OK @@ -2572,10 +2618,9 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -2588,17 +2633,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:12 GMT + - Mon, 09 Jan 2023 18:04: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: D4826B3FD28444B883DE17DAF46C5824 Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:04:54Z' status: code: 404 message: Not Found @@ -2629,10 +2678,9 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -2645,14 +2693,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:23:13.1306333Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:56.0538795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:23:13.1306333Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:56.0538795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/abfb2205-84e2-40ee-972e-624c8f070a33?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a178df3a-6227-4170-9fbd-25bc9c08ce0d?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -2660,19 +2708,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:15 GMT + - Mon, 09 Jan 2023 18:04:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 805C208A42604D5E8CD3998FD266BBEC Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:04:55Z' status: code: 201 message: Created @@ -2691,37 +2741,34 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/abfb2205-84e2-40ee-972e-624c8f070a33?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a178df3a-6227-4170-9fbd-25bc9c08ce0d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/abfb2205-84e2-40ee-972e-624c8f070a33\",\r\n - \ \"name\": \"abfb2205-84e2-40ee-972e-624c8f070a33\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a178df3a-6227-4170-9fbd-25bc9c08ce0d\",\r\n + \ \"name\": \"a178df3a-6227-4170-9fbd-25bc9c08ce0d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:32 GMT + - Mon, 09 Jan 2023 18:05:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9C5FFB4ABCBD41EC8C36A90F8779C673 Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:05:13Z' status: code: 200 message: OK @@ -2740,18 +2787,17 @@ interactions: - --name --location --template-file --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-23-16-eb59a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-56-3ee83\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.1630775S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT16.2396681S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2759,34 +2805,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:23:13.1306333Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:56.0538795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:23:13.1306333Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:56.0538795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1613' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:33 GMT + - Mon, 09 Jan 2023 18:05:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D4F94071CA934857BAC60BBB8624F8AE Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:05:14Z' status: code: 200 message: OK @@ -2804,18 +2848,17 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-23-16-eb59a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-56-3ee83\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.1630775S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT16.2396681S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2823,34 +2866,32 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:23:13.1306333Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:56.0538795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:23:13.1306333Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:56.0538795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1613' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:36 GMT + - Mon, 09 Jan 2023 18:05:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 449321DC7FF84CDAAF47AEC36A8CD882 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:05:15Z' status: code: 200 message: OK @@ -2870,34 +2911,35 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Nov 2022 18:23:38 GMT + - Mon, 09 Jan 2023 18:05:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' + x-msedge-ref: + - 'Ref A: 29988110E59049D5B1EBCD0CCB449044 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:05:16Z' status: code: 202 message: Accepted @@ -2915,37 +2957,124 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '265' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 18:05:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: FA4009FE49DA4543942A8A1C91FA18C1 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:05:34Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '265' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 18:06:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: FC55D0189E58456884451338B196C62A Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:06:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n - \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:23:55 GMT + - Mon, 09 Jan 2023 18:06:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FB8C5987ADF044EB809351925AA291B7 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:06:34Z' status: code: 200 message: OK @@ -2963,37 +3092,34 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n - \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:24:26 GMT + - Mon, 09 Jan 2023 18:07:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7E8911AB98124222842B00EE9819ECA0 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:07:05Z' status: code: 200 message: OK @@ -3011,37 +3137,34 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n - \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:24:57 GMT + - Mon, 09 Jan 2023 18:07:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EAF28CE96C9F4EA8A983641E1DB58B23 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:07:35Z' status: code: 200 message: OK @@ -3059,37 +3182,34 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n - \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:25:26 GMT + - Mon, 09 Jan 2023 18:08:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 672EBF9D9311499880E5227F4A76328A Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:08:06Z' status: code: 200 message: OK @@ -3107,37 +3227,34 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n - \ \"name\": \"75475c6b-86e8-4aa0-b385-9daa6344a6d2\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n + \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:25:57 GMT + - Mon, 09 Jan 2023 18:08:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 79F00E21AE93491593FA8D622039A032 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:08:36Z' status: code: 200 message: OK @@ -3155,10 +3272,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3170,17 +3286,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:25:58 GMT + - Mon, 09 Jan 2023 18:08:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1551C46FACB54F2390094816FE5205E1 Ref B: BL2AA2030108047 Ref C: 2023-01-09T18:08:37Z' status: code: 200 message: OK @@ -3196,33 +3314,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '35887' + - '23568' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:25:58 GMT + - Mon, 09 Jan 2023 18:08:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F74EEBE385F34316BE9DDE240E1C57AC Ref B: BL2AA2030105037 Ref C: 2023-01-09T18:08:37Z' status: code: 200 message: OK @@ -3242,10 +3360,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: body: string: '' @@ -3255,19 +3372,23 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:26:01 GMT + - Mon, 09 Jan 2023 18:08:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVKTkVRT1BNVlVLWkZQU0NDMlpDU3xGODU2MEYxQzY3NkREM0JBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU0V05VUUJQTUtOT0U1WlZDWk9YRHxCRTI4OUY3QTNGRDAwQzRFLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' + x-msedge-ref: + - 'Ref A: B7F7B7CAE25A4594A22F36F26AC19579 Ref B: BL2AA2030105023 Ref C: 2023-01-09T18:08:38Z' status: code: 202 message: Accepted @@ -3285,10 +3406,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVKTkVRT1BNVlVLWkZQU0NDMlpDU3xGODU2MEYxQzY3NkREM0JBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU0V05VUUJQTUtOT0U1WlZDWk9YRHxCRTI4OUY3QTNGRDAwQzRFLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -3298,15 +3418,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:26:16 GMT + - Mon, 09 Jan 2023 18:08:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EE35DA981FD3434F955366BD82BE416A Ref B: BL2AA2030105023 Ref C: 2023-01-09T18:08:57Z' status: code: 200 message: OK @@ -3328,10 +3452,9 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3343,17 +3466,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:26:19 GMT + - Mon, 09 Jan 2023 18:08: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-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: B6943C408AD349DDBA4FF215915DDCF8 Ref B: BL2AA2030106027 Ref C: 2023-01-09T18:08:58Z' status: code: 201 message: Created @@ -3371,34 +3498,36 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n - \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001' - could not be found.\"\r\n }\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '283' + - '199' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:26:23 GMT + - Mon, 09 Jan 2023 18:09:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 013B83037FCF44EABEB7435F8B854E73 Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:01Z' status: code: 404 message: Not Found @@ -3437,10 +3566,9 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -3454,14 +3582,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:24.1254456Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:03.0587063Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:26:24.1254456Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:09:03.0587063Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3469,19 +3597,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:26:26 GMT + - Mon, 09 Jan 2023 18:09:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: 7B7A71DAF1144196B7082F1FB11DD06D Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:02Z' status: code: 201 message: Created @@ -3499,37 +3629,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n - \ \"name\": \"0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n + \ \"name\": \"b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:26:43 GMT + - Mon, 09 Jan 2023 18:09:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FF1E176428784391B5919EFE96BB7F95 Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:21Z' status: code: 200 message: OK @@ -3547,37 +3674,34 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n - \ \"name\": \"0cff0501-b121-4bfa-80c6-edc8c5b8228c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n + \ \"name\": \"b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:14 GMT + - Mon, 09 Jan 2023 18:09:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 26F2AFC771EA4F8999C34F99919604FA Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:52Z' status: code: 200 message: OK @@ -3595,18 +3719,17 @@ interactions: ParameterSetName: - --name --location -g --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-26-26-5ee14\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-09-03-5d0b2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT34.1429412S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT26.8363136S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n @@ -3617,9 +3740,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:24.1254456Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:03.0587063Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:26:24.1254456Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:09:03.0587063Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -3630,21 +3753,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:15 GMT + - Mon, 09 Jan 2023 18:09:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5DCEEF7D0CBC40BAB31113FF379F2F3A Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:53Z' status: code: 200 message: OK @@ -3662,113 +3783,54 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central + US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US + 3","Central US","North Central US","South Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, + SupportsExtension"},{"resourceType":"deployments/operations","locations":["East + US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20276' + - '7275' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:17 GMT + - Mon, 09 Jan 2023 18:09:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 202DD2C4F63343DF8FC7B06B8E51D141 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:09:54Z' status: code: 200 message: OK @@ -3786,17 +3848,16 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005?api-version=2022-02-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:32.9178957Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:08.5324908Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-11-18T18:26:32.9178957Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-01-09T18:09:08.5324908Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000005\"\r\n}" headers: @@ -3807,21 +3868,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:17 GMT + - Mon, 09 Jan 2023 18:09:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F44A5EB2054C4FF4B2E1AFF1D59DCFD9 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:09:54Z' status: code: 200 message: OK @@ -3839,10 +3898,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3854,17 +3912,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:17 GMT + - Mon, 09 Jan 2023 18:09:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B963F615368F4870AA08DD5088171902 Ref B: BL2AA2030110033 Ref C: 2023-01-09T18:09:55Z' status: code: 200 message: OK @@ -3882,18 +3942,17 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-11-18-18-26-26-5ee14\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-09-03-5d0b2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT34.1429412S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT26.8363136S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n @@ -3904,9 +3963,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:26:24.1254456Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:03.0587063Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:26:24.1254456Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:09:03.0587063Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: @@ -3917,21 +3976,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:21 GMT + - Mon, 09 Jan 2023 18:09:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C733D8187D6540A0B1B7E9B22DD40566 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:09:55Z' status: code: 200 message: OK @@ -3951,34 +4008,35 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Nov 2022 18:27:22 GMT + - Mon, 09 Jan 2023 18:09:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' + x-msedge-ref: + - 'Ref A: AFAEBE5B03A14581B96C826B693EF7B6 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:09:56Z' status: code: 202 message: Accepted @@ -3996,37 +4054,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:27:40 GMT + - Mon, 09 Jan 2023 18:10:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C96725228ABC4C05A0B3E961AF788B97 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:10:14Z' status: code: 200 message: OK @@ -4044,37 +4099,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:28:11 GMT + - Mon, 09 Jan 2023 18:10:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F8E63ADC38DA4B3398A5FB85DD7912F1 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:10:44Z' status: code: 200 message: OK @@ -4092,37 +4144,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:28:40 GMT + - Mon, 09 Jan 2023 18:11:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AEBA7F2D28774389A7D3C2780BC69A0F Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:11:15Z' status: code: 200 message: OK @@ -4140,37 +4189,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:29:11 GMT + - Mon, 09 Jan 2023 18:11:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9D7E062E79F649D79482A010CADAD8C3 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:11:45Z' status: code: 200 message: OK @@ -4188,37 +4234,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:29:41 GMT + - Mon, 09 Jan 2023 18:12:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7D4EFC5D58164A32A406C3D2C3B7D6F0 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:12:15Z' status: code: 200 message: OK @@ -4236,37 +4279,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:30:11 GMT + - Mon, 09 Jan 2023 18:12:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9376EE0189794213A61020EC7B8C45C3 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:12:46Z' status: code: 200 message: OK @@ -4284,37 +4324,79 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/463ffd50-07b6-45b5-ae41-21c308870060\",\r\n - \ \"name\": \"463ffd50-07b6-45b5-ae41-21c308870060\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '265' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:30:41 GMT + - Mon, 09 Jan 2023 18:13:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8884982C0DB34C44844A2E5992C82838 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:13:16Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-all --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n + \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 09 Jan 2023 18:13:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 22B876215C4D4F74913135BCD2055F10 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:13:47Z' status: code: 200 message: OK @@ -4332,10 +4414,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4347,17 +4428,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:30:42 GMT + - Mon, 09 Jan 2023 18:13:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BA706407D1DB41CA9AB725447D3C7B6A Ref B: BL2AA2030107011 Ref C: 2023-01-09T18:13:47Z' status: code: 200 message: OK @@ -4375,10 +4458,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 response: body: string: '{"value":[]}' @@ -4390,17 +4472,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:30:42 GMT + - Mon, 09 Jan 2023 18:13:48 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EFDF03A77234447AA07247D7FB06890C Ref B: BL2AA2030107011 Ref C: 2023-01-09T18:13:48Z' status: code: 200 message: OK @@ -4416,33 +4500,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '35923' + - '23604' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:30:43 GMT + - Mon, 09 Jan 2023 18:13:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1EB624F8440547F59E634BBA71478184 Ref B: BL2AA2030110011 Ref C: 2023-01-09T18:13:49Z' status: code: 200 message: OK @@ -4462,10 +4546,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 response: body: string: '' @@ -4475,19 +4558,199 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:30:46 GMT + - Mon, 09 Jan 2023 18:13:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' + x-msedge-ref: + - 'Ref A: C5C89926EC164554995EB5EEC88A6209 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:13:49Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 18:14:07 GMT + expires: + - '-1' + location: + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3287A7FE5B944E78A280CF90DB55E107 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:07Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 18:14:23 GMT + expires: + - '-1' + location: + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 50DB3D8697084695A5315319187429B0 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:23Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 18:14:38 GMT + expires: + - '-1' + location: + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3FD4D65E7CB04196BCAB40E6251DCAD4 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:38Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 09 Jan 2023 18:14:53 GMT + expires: + - '-1' + location: + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C022D4496C2A4DF697AE9A227F54A3F7 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:53Z' status: code: 202 message: Accepted @@ -4505,10 +4768,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxDNkJEMkU5NzMyQTQxNDQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -4518,15 +4780,19 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:31:02 GMT + - Mon, 09 Jan 2023 18:15:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 28D6DE73E54B478882004D80E20668C8 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:15:09Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml index a3cf03ecab0..f4d40827bc9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml @@ -13,8 +13,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -29,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:28 GMT + - Mon, 09 Jan 2023 20:34:29 GMT expires: - '-1' pragma: @@ -43,7 +42,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 0A191F188C41458B9C020520F7A54A7E Ref B: BL2AA2030109031 Ref C: 2022-10-05T22:12:28Z' + - 'Ref A: F4F664DDBA4044BBB4681214817D7F82 Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:30Z' status: code: 404 message: Not Found @@ -55,7 +54,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -66,14 +66,13 @@ interactions: Connection: - keep-alive Content-Length: - - '775' + - '822' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -81,28 +80,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T22:12:29.3833308Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:12:29.3833308Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-01-09T20:34:31.6588288Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/381e6545-95b0-4812-a90d-5bdd820c23ae?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ebd900ed-f9de-46fd-9d8f-741ff16bddd7?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1124' + - '1213' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:30 GMT + - Mon, 09 Jan 2023 20:34:33 GMT expires: - '-1' pragma: @@ -116,7 +116,7 @@ interactions: x-ms-ratelimit-remaining-tenant-writes: - '1199' x-msedge-ref: - - 'Ref A: A96E08641A1D49B59F1E604CCF0B752F Ref B: BL2AA2030109031 Ref C: 2022-10-05T22:12:29Z' + - 'Ref A: ECB316FEE7D845E4BA70CF7F64E1E0EA Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:30Z' status: code: 201 message: Created @@ -134,14 +134,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/381e6545-95b0-4812-a90d-5bdd820c23ae?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ebd900ed-f9de-46fd-9d8f-741ff16bddd7?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/381e6545-95b0-4812-a90d-5bdd820c23ae\",\r\n - \ \"name\": \"381e6545-95b0-4812-a90d-5bdd820c23ae\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ebd900ed-f9de-46fd-9d8f-741ff16bddd7\",\r\n + \ \"name\": \"ebd900ed-f9de-46fd-9d8f-741ff16bddd7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:47 GMT + - Mon, 09 Jan 2023 20:34:50 GMT expires: - '-1' pragma: @@ -162,7 +161,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8239B043BBA5474B8F4DFFD7D59B4561 Ref B: BL2AA2030109031 Ref C: 2022-10-05T22:12:48Z' + - 'Ref A: 0F199E143CB240ABAE9E2B5ED5418821 Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:51Z' status: code: 200 message: OK @@ -180,40 +179,40 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-22-12-30-f6f4f\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-22-12-30-f6f4f\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-34-32-dcd26\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.1514984S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:12:29.3833308Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:12:29.3833308Z\"\r\n + \ \"duration\": \"PT14.6205222S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:34:31.6588288Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1734' + - '1606' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:47 GMT + - Mon, 09 Jan 2023 20:34:51 GMT expires: - '-1' pragma: @@ -225,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 9D3A7576F043453F902AB62A6FDC814E Ref B: BL2AA2030109031 Ref C: 2022-10-05T22:12:48Z' + - 'Ref A: 7BDAF9DCB7F146EAB122742030B5EDBB Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:51Z' status: code: 200 message: OK @@ -245,8 +244,7 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: @@ -270,7 +268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:50 GMT + - Mon, 09 Jan 2023 20:34:53 GMT expires: - '-1' pragma: @@ -284,7 +282,7 @@ interactions: x-ms-ratelimit-remaining-tenant-writes: - '1199' x-msedge-ref: - - 'Ref A: 176EE3CCDC984505B4E7F122BC04975E Ref B: BL2AA2030109049 Ref C: 2022-10-05T22:12:49Z' + - 'Ref A: EDC3B26D7C2445DD914DD89D74A756F9 Ref B: BL2AA2030109039 Ref C: 2023-01-09T20:34:52Z' status: code: 200 message: OK @@ -304,8 +302,7 @@ interactions: ParameterSetName: - --id --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: @@ -329,7 +326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:51 GMT + - Mon, 09 Jan 2023 20:34:55 GMT expires: - '-1' pragma: @@ -341,9 +338,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: ECF5FAE500FB4FC1BCADD88A5A2A2B02 Ref B: BL2AA2030110009 Ref C: 2022-10-05T22:12:50Z' + - 'Ref A: EFA58052F80C49E48A627EA90F03DD9D Ref B: BL2AA2030107003 Ref C: 2023-01-09T20:34:54Z' status: code: 200 message: OK @@ -361,40 +358,40 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-22-12-30-f6f4f\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-22-12-30-f6f4f\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-34-32-dcd26\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.1514984S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:12:29.3833308Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:12:29.3833308Z\"\r\n + \ \"duration\": \"PT14.6205222S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:34:31.6588288Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1734' + - '1606' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:51 GMT + - Mon, 09 Jan 2023 20:34:56 GMT expires: - '-1' pragma: @@ -406,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 148C978167F347DCB8A62AD8997A5479 Ref B: BL2AA2030109051 Ref C: 2022-10-05T22:12:51Z' + - 'Ref A: 58695137BF3446C092F34C130652D2AD Ref B: BL2AA2030108023 Ref C: 2023-01-09T20:34:55Z' status: code: 200 message: OK @@ -424,40 +421,40 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-22-12-30-f6f4f\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-22-12-30-f6f4f\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-34-32-dcd26\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.1514984S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T22:12:29.3833308Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T22:12:29.3833308Z\"\r\n + \ \"duration\": \"PT14.6205222S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:34:31.6588288Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1734' + - '1606' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 22:12:52 GMT + - Mon, 09 Jan 2023 20:34:56 GMT expires: - '-1' pragma: @@ -469,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8622086245234E2688802CA37E7EF08B Ref B: BL2AA2030109011 Ref C: 2022-10-05T22:12:52Z' + - 'Ref A: 53A70D8B28CA4CC6BAF565FE2895F677 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:34:57Z' status: code: 200 message: OK @@ -489,8 +486,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -502,7 +498,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 22:12:52 GMT + - Mon, 09 Jan 2023 20:34:57 GMT expires: - '-1' pragma: @@ -514,9 +510,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14999' + - '14996' x-msedge-ref: - - 'Ref A: F8009223B2B04B1EADD98524059B313F Ref B: BL2AA2030109011 Ref C: 2022-10-05T22:12:52Z' + - 'Ref A: 1D507154DBCE468EB6A67A3D797837CD Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:34:57Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml index fa36aa7cc4a..f62d0ec4de9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -30,17 +29,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:01 GMT + - Mon, 09 Jan 2023 20:12:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D66995EDE27F41E9867DE3FABD4823E5 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:07Z' status: code: 404 message: Not Found @@ -70,10 +71,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,14 +85,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57c824ed-c905-4caf-afdb-15a05af5fab1?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d3911662-bcfe-44d4-8d75-4f0eba2d0839?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +100,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:02 GMT + - Mon, 09 Jan 2023 20:12:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' + x-msedge-ref: + - 'Ref A: 821B83BC9C424297801B637732927867 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:08Z' status: code: 201 message: Created @@ -130,37 +132,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57c824ed-c905-4caf-afdb-15a05af5fab1?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d3911662-bcfe-44d4-8d75-4f0eba2d0839?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57c824ed-c905-4caf-afdb-15a05af5fab1\",\r\n - \ \"name\": \"57c824ed-c905-4caf-afdb-15a05af5fab1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d3911662-bcfe-44d4-8d75-4f0eba2d0839\",\r\n + \ \"name\": \"d3911662-bcfe-44d4-8d75-4f0eba2d0839\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:19 GMT + - Mon, 09 Jan 2023 20:12:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 641B253EB57B414E8B9D9A192AD3C2ED Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:26Z' status: code: 200 message: OK @@ -178,16 +177,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-19-16-02-8828c\",\r\n - \ \"duration\": \"PT6.2966548S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-20-12-09-e0e41\",\r\n + \ \"duration\": \"PT12.7157338S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -197,34 +195,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1591' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:19 GMT + - Mon, 09 Jan 2023 20:12:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0E38DA59EB584D92B76ACDFE7529EDED Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:27Z' status: code: 200 message: OK @@ -244,10 +240,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -269,23 +264,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:21 GMT + - Mon, 09 Jan 2023 20:12:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 7B345C3C26F04A8494489281726289C7 Ref B: BL2AA2030109019 Ref C: 2023-01-09T20:12:28Z' status: code: 200 message: OK @@ -305,10 +298,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -330,23 +322,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:22 GMT + - Mon, 09 Jan 2023 20:12:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 38E659CB0D1C40339212A5CFF0C0EAB9 Ref B: BL2AA2030106011 Ref C: 2023-01-09T20:12:31Z' status: code: 200 message: OK @@ -364,16 +354,15 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-19-16-02-8828c\",\r\n - \ \"duration\": \"PT6.2966548S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-20-12-09-e0e41\",\r\n + \ \"duration\": \"PT12.7157338S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -383,34 +372,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1591' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:22 GMT + - Mon, 09 Jan 2023 20:12:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 869FB1FCA4AB4BFEB6F55E1EC8210060 Ref B: BL2AA2030108039 Ref C: 2023-01-09T20:12:33Z' status: code: 200 message: OK @@ -428,16 +415,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-19-16-02-8828c\",\r\n - \ \"duration\": \"PT6.2966548S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-20-12-09-e0e41\",\r\n + \ \"duration\": \"PT12.7157338S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -447,34 +433,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T19:16:02.5011591Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T19:16:02.5011591Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1591' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 19:16:23 GMT + - Mon, 09 Jan 2023 20:12:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 03F26666458C4051B72163AB1EBD9D47 Ref B: BL2AA2030107005 Ref C: 2023-01-09T20:12:34Z' status: code: 200 message: OK @@ -494,10 +478,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -507,19 +490,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 19:16:25 GMT + - Mon, 09 Jan 2023 20:12:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14992' + x-msedge-ref: + - 'Ref A: 8E053CBF91CB4BC7B6C509DFFFADA84A Ref B: BL2AA2030107005 Ref C: 2023-01-09T20:12:35Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml index c6b3d1fc523..768dc462d3d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -29,17 +28,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:35:50 GMT + - Mon, 09 Jan 2023 18:44: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 4CFAF4B0E3654A89B1B89F5D605E3A28 Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:44:57Z' status: code: 404 message: Not Found @@ -69,10 +72,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -86,13 +88,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T18:35:50.9542982Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n + \"2023-01-09T18:45:00.4460255Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e9ec723-fd65-432e-bbc8-bdba250c453c?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a8f564e1-83a7-4881-bd88-4d186644184b?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +102,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:35:54 GMT + - Mon, 09 Jan 2023 18:45:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: D4A70544FFB84A39B24985B1E13B9BA3 Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:44:59Z' status: code: 201 message: Created @@ -130,37 +134,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e9ec723-fd65-432e-bbc8-bdba250c453c?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a8f564e1-83a7-4881-bd88-4d186644184b?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7e9ec723-fd65-432e-bbc8-bdba250c453c\",\r\n - \ \"name\": \"7e9ec723-fd65-432e-bbc8-bdba250c453c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a8f564e1-83a7-4881-bd88-4d186644184b\",\r\n + \ \"name\": \"a8f564e1-83a7-4881-bd88-4d186644184b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:36:11 GMT + - Mon, 09 Jan 2023 18:45:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 456F51E1720A4938B6C8BF79E2681C4C Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:45:18Z' status: code: 200 message: OK @@ -178,18 +179,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-35-54-018ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-18-45-01-36158\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.9005308S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT9.6128869S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,9 +199,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:35:50.9542982Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:45:00.4460255Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -212,21 +212,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:36:12 GMT + - Mon, 09 Jan 2023 18:45:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F6458702E8694C219C443D884EFDA83E Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:45:18Z' status: code: 200 message: OK @@ -246,10 +244,9 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -271,23 +268,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:36:15 GMT + - Mon, 09 Jan 2023 18:45:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: D866A712D96940E48A1C8DFD80737669 Ref B: BL2AA2030106019 Ref C: 2023-01-09T18:45:19Z' status: code: 200 message: OK @@ -307,10 +302,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -332,23 +326,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:36:17 GMT + - Mon, 09 Jan 2023 18:45:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 2F35EC67378D45EB9D1EC48916CE5C8E Ref B: BL2AA2030109029 Ref C: 2023-01-09T18:45:21Z' status: code: 200 message: OK @@ -366,18 +358,17 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-35-54-018ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-18-45-01-36158\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.9005308S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT9.6128869S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -387,9 +378,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:35:50.9542982Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:45:00.4460255Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -400,21 +391,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:36:21 GMT + - Mon, 09 Jan 2023 18:45:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 99D97B210734465683EE58BBBE6C7FFA Ref B: BL2AA2030110037 Ref C: 2023-01-09T18:45:22Z' status: code: 200 message: OK @@ -432,18 +421,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-35-54-018ac\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-18-45-01-36158\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.9005308S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT9.6128869S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -453,9 +441,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:35:50.9542982Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:45:00.4460255Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:35:50.9542982Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: @@ -466,21 +454,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:36:24 GMT + - Mon, 09 Jan 2023 18:45:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F5CA37EB0CFD4C92AFE3E196C73F5CF9 Ref B: BL2AA2030106033 Ref C: 2023-01-09T18:45:23Z' status: code: 200 message: OK @@ -500,10 +486,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -513,19 +498,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:36:27 GMT + - Mon, 09 Jan 2023 18:45:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' + x-msedge-ref: + - 'Ref A: 9D5C5A60706E4DDCB2A3456D5935C4D1 Ref B: BL2AA2030106033 Ref C: 2023-01-09T18:45:24Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index a1ebc2dc76c..0ded477d01d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -30,17 +29,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:55:37 GMT + - Mon, 09 Jan 2023 19:48:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F6503AF849924815A41A080BC2C9EA39 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:48:54Z' status: code: 404 message: Not Found @@ -70,10 +71,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,14 +85,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/953d6f6d-129b-495d-a9a5-3595d8407ed0?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2c6a4123-2e2a-4662-ab10-7cd947a3de7e?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +100,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:55:37 GMT + - Mon, 09 Jan 2023 19:48:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' + x-msedge-ref: + - 'Ref A: A621112932D5492C83D563CD381D7BA6 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:48:55Z' status: code: 201 message: Created @@ -130,37 +132,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/953d6f6d-129b-495d-a9a5-3595d8407ed0?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2c6a4123-2e2a-4662-ab10-7cd947a3de7e?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/953d6f6d-129b-495d-a9a5-3595d8407ed0\",\r\n - \ \"name\": \"953d6f6d-129b-495d-a9a5-3595d8407ed0\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2c6a4123-2e2a-4662-ab10-7cd947a3de7e\",\r\n + \ \"name\": \"2c6a4123-2e2a-4662-ab10-7cd947a3de7e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:55:55 GMT + - Mon, 09 Jan 2023 19:49:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E3FAA28E9C664CE79EC53D143D582909 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:49:14Z' status: code: 200 message: OK @@ -178,16 +177,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-11-18-18-55-38-48666\",\r\n - \ \"duration\": \"PT4.7148647S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-01-09-19-48-57-14515\",\r\n + \ \"duration\": \"PT6.8281691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -197,9 +195,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -210,21 +208,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:55:56 GMT + - Mon, 09 Jan 2023 19:49:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9A0A234BF568433D8E63AE67AFC44DB0 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:49:14Z' status: code: 200 message: OK @@ -242,17 +238,16 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-11-18-18-55-38-48666\",\r\n - \ \"duration\": \"PT4.7148647S\",\r\n \"denySettings\": {\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-01-09-19-48-57-14515\",\r\n + \ \"duration\": \"PT6.8281691S\",\r\n \"denySettings\": {\r\n \ \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": @@ -263,9 +258,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" @@ -277,21 +272,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:55:56 GMT + - Mon, 09 Jan 2023 19:49:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C4832B3A5C3F4D398DAE3919E346BCCB Ref B: BL2AA2030108039 Ref C: 2023-01-09T19:49:15Z' status: code: 200 message: OK @@ -309,16 +302,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2022-11-18-18-55-38-48666\",\r\n - \ \"duration\": \"PT4.7148647S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-01-09-19-48-57-14515\",\r\n + \ \"duration\": \"PT6.8281691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -328,9 +320,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:55:38.3108788Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:55:38.3108788Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -341,21 +333,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:55:58 GMT + - Mon, 09 Jan 2023 19:49:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 06416FED51B04339A0DB28FA88ABFAC0 Ref B: BL2AA2030105019 Ref C: 2023-01-09T19:49:16Z' status: code: 200 message: OK @@ -375,10 +365,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -388,19 +377,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:55:58 GMT + - Mon, 09 Jan 2023 19:49:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + x-msedge-ref: + - 'Ref A: F6AA20F382C74B6C836AE7647E389CEC Ref B: BL2AA2030105019 Ref C: 2023-01-09T19:49:18Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index 16eaab6dcd2..69af52a06e8 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-list-deployment-stack-subscription000001'' @@ -29,17 +28,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:42:54 GMT + - Mon, 09 Jan 2023 17:56: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 951DE99675F241B49C91B922A9AFFEB7 Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:38Z' status: code: 404 message: Not Found @@ -69,10 +72,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -86,13 +88,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T17:42:54.9836572Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:42:54.9836572Z\"\r\n + \"2023-01-09T17:56:39.0894117Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:56:39.0894117Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/99e45085-dd25-431d-9c03-e4eb73f64b15?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/790501d3-754a-4736-873d-2d67f0a1ea63?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +102,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:42:57 GMT + - Mon, 09 Jan 2023 17:56:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: 546C8AE0F7074E8AA3993954EB62DD02 Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:38Z' status: code: 201 message: Created @@ -130,37 +134,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/99e45085-dd25-431d-9c03-e4eb73f64b15?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/790501d3-754a-4736-873d-2d67f0a1ea63?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/99e45085-dd25-431d-9c03-e4eb73f64b15\",\r\n - \ \"name\": \"99e45085-dd25-431d-9c03-e4eb73f64b15\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/790501d3-754a-4736-873d-2d67f0a1ea63\",\r\n + \ \"name\": \"790501d3-754a-4736-873d-2d67f0a1ea63\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:43:15 GMT + - Mon, 09 Jan 2023 17:56:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 29C9CF561A9D4193AA09AEC9635BE68E Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:56Z' status: code: 200 message: OK @@ -178,18 +179,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-11-18-17-42-58-e1c21\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-01-09-17-56-39-46c4e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.1891742S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.2615051S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,9 +199,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:42:54.9836572Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:56:39.0894117Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:42:54.9836572Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:56:39.0894117Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: @@ -212,21 +212,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:43:15 GMT + - Mon, 09 Jan 2023 17:56:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E90E197541BA4987AACD507C96F49EE6 Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:56Z' status: code: 200 message: OK @@ -242,816 +240,207 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: '{"value":[{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-23T19:15:01.5981235Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-24T16:40:51.8924628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/TemplateSpecStack","type":"Microsoft.Resources/deploymentStacks","name":"TemplateSpecStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest2_tf-2021-09-13-21-44-13-097eb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidResourceGroupLocation","message":"Invalid - resource group location ''eastus''. The Resource group already exists in location - ''westus2''."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:44:13.4958458Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:44:13.4958458Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest2_tf"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_2-2021-09-15-15-29-15-9f56b","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:31:59.0977693Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:29:15.4823796Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_3-2021-09-15-15-30-22-9519a","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:30:22.1215654Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:30:22.1215654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_3"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_4-2021-09-15-15-32-06-8b48e","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:32:06.1775591Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:32:06.1775591Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_4"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mySubStack-2022-06-20-18-51-46-7a6f1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.0741566S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-02-01T21:35:50.3861621Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-20T18:51:45.8755542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStack","type":"Microsoft.Resources/deploymentStacks","name":"mySubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.001939S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone/snapshots/2022-04-05-17-29-24-64a9d'' - for more details.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. - The tracking Id is ''236c6ae3-acd8-43c3-b27b-9dcf44e35d59''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-05T16:27:38.5417212Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-05T17:29:23.9447321Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone","type":"Microsoft.Resources/deploymentStacks","name":"hpone"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9251897S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22/snapshots/2022-05-26-20-18-12-269e3'' - for more details. Correlation id: ''845b9eba-1687-4504-916e-8d69d56d2847''","details":[{"code":"InvalidRequestContent","message":"The - request content was invalid and could not be deserialized: ''Required property - ''contentVersion'' not found in JSON. Path ''properties.template'', line 6, - position 5.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-18T20:23:06.5444995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T20:18:11.4113067Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22","type":"Microsoft.Resources/deploymentStacks","name":"hp22"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detach-test-2022-06-15-17-25-59-01c8c","duration":"PT34.0312008S","outputs":{"storageAccountAName":{"type":"String","value":"deploymentscopetesta"},"storageAccountBName":{"type":"String","value":"deploymentscopetestb"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:53:43.8289431Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T17:25:59.1555357Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detach-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detach-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detatch-test-2022-06-14-21-57-39-972ba","duration":"PT10.1409527S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test/snapshots/2022-06-14-21-57-39-972ba'' - for more details. Correlation id: ''723328db-c1c9-4b5d-9fa9-9429eb056224''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-b'' under - resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-a'' under - resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:57:38.2436258Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T21:57:38.2436258Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detatch-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-example-storageaccount-2022-06-14-22-13-56-d5b2f","duration":"PT12.7634725S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount/snapshots/2022-06-14-22-13-56-d5b2f'' - for more details. Correlation id: ''bbdbbf47-5555-4a8e-901c-4a6d53b094aa''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T22:13:54.9096146Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T22:13:54.9096146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount","type":"Microsoft.Resources/deploymentStacks","name":"dante-example-storageaccount"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9740014S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg/snapshots/2022-06-15-16-47-09-62c43'' - for more details. Correlation id: ''f812d4e9-8926-4957-a4ae-1c18895674b3''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''angperezAKS'' at line - ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:47:07.7566368Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:47:07.7566368Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg","type":"Microsoft.Resources/deploymentStacks","name":"angperezStackRg"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.2094989S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack/snapshots/2022-06-15-16-51-12-544d9'' - for more details. Correlation id: ''2c1f0a54-6867-4206-9aea-ded21cee84e1''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''angperezAKS'' at line - ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:49:53.9387362Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:51:12.1631587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack","type":"Microsoft.Resources/deploymentStacks","name":"angperezStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.3648936S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13/snapshots/2022-06-17-18-53-18-03d4c'' - for more details. Correlation id: ''b864b76e-1dd6-41d5-a0b6-f08ab4aa49e3''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''sqlServerName'' at line - ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-17T18:53:16.7933655Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-17T18:53:16.7933655Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13","type":"Microsoft.Resources/deploymentStacks","name":"teststack13"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy-2022-06-23-17-09-19-b7d99","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.1677588S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy/snapshots/2022-06-23-17-09-19-b7d99'' - for more details. Correlation id: ''a0f6b921-5643-42c2-84b8-7091762fc357''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:09:17.4941031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:09:17.4941031Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy","type":"Microsoft.Resources/deploymentStacks","name":"dummy"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteTestStack-2022-09-07-17-32-25-5a92d","duration":"PT9.0890768S","parameters":{"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"keyVaultName":{"value":"danted-stackstest1523"},"secretValue":{"value":"HelloToTheWorld"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack/snapshots/2022-09-07-17-32-25-5a92d'' - for more details. Correlation id: ''3334e5a3-5ab1-4a77-9ab0-3d02b5c5f8da''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The resource ''Microsoft.KeyVault/vaults/danted-stackstest1523'' - is not defined in the template. Please see https://aka.ms/arm-template for - usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:34:18.5382285Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T17:32:24.3045971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteTestStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStorageStack-2022-09-07-18-33-27-a89a9","duration":"PT43.548586S","outputs":{},"parameters":{"namePrefix":{"value":"danted1234"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-07T18:05:16.4036646Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T18:33:25.9618998Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStorageStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStorageStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/9_19_test1-2022-09-26-16-20-50-2da1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.5093326S","parameters":{"name":{"value":"resource2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:47.4745761Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:47.4745761Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/deployments/subStack-2022-11-04-01-38-25-933c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","duration":"PT10.0476458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T01:38:22.5331641Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T01:38:22.5331641Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack","type":"Microsoft.Resources/deploymentStacks","name":"subStack"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/gptestBugBash-2021-08-10-23-14-45-07694","parameters":{"rgname":{"value":"pstestBugBashRG"},"principalId":{"value":"3602fbdc-4558-4a64-966c-2629723a3189"},"rgLocation":{"value":"eastus2euap"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Authorization/locks/DontDelete"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Authorization/roleAssignments/44d2e010-b263-5c5f-98a9-4a7ee7eeca84"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Network/publicIPAddresses/pip"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-10T23:14:45.516492Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-10T23:14:45.516492Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptestBugBash","type":"Microsoft.Resources/deploymentStacks","name":"gptestBugBash"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testpollingstack-2021-08-11-19-12-44-422e5","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-11T19:12:44.3040355Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-11T19:12:44.3040355Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testpollingstack","type":"Microsoft.Resources/deploymentStacks","name":"testpollingstack"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidDeployment","message":"The - ''location'' property is not allowed for ''testdeploymentscope-2021-08-12-22-35-46-919e5'' - at resource group scope. Please see https://aka.ms/deploy-to-subscription - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-12T22:08:09.396501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-12T22:35:45.8498994Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testdeploymentscope","type":"Microsoft.Resources/deploymentStacks","name":"testdeploymentscope"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/gptestBugBash2-2021-09-08-19-29-49-1c296","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-16T21:24:23.2631976Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T19:29:49.4722587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptestBugBash2","type":"Microsoft.Resources/deploymentStacks","name":"gptestBugBash2"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_canary-2021-10-27-15-31-52-867d5","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-27T15:31:52.2677322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-27T15:31:52.2677322Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_canary","type":"Microsoft.Resources/deploymentStacks","name":"hp2_bb_canary"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable - to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 - 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). - Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', - request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''foo'' - at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', - request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + string: '{"value":[{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStackOld-2022-09-09-21-35-32-031fd","duration":"PT23.6044782S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStackOld/snapshots/2022-09-09-21-35-32-031fd'' + for more details. Correlation id: ''19768e63-85e7-4861-8a8b-b20f3997f68e''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + Resource ''Microsoft.Resources/templateSpecs/hello'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-09T21:34:38.8181773Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-09T21:35:31.9759219Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStackOld","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStackOld"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy12-2022-09-16-16-57-00-25162","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT24.1049468S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-13T20:56:41.7301542Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T16:57:00.1144885Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy12","type":"Microsoft.Resources/deploymentStacks","name":"dummy12"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource2-2022-09-16-17-12-54-54553","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT16.5114522S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource2/snapshots/2022-09-16-17-12-54-54553'' + for more details. Correlation id: ''11c99696-3d65-4aaa-a2f1-4a5040f513e0''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The value for the template parameter ''hostingPlanName'' - at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. - Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: - timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', - request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The - ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription - for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. - The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Compute/virtualMachines/simple-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkInterfaces/myVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkSecurityGroups/default-NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/publicIPAddresses/myPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Storage/storageAccounts/storageforfilizsvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-template-created/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"deletedResources":[],"failedResources":[{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Compute/virtualMachines/simple-vm"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkInterfaces/myVMNic"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkSecurityGroups/default-NSG"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/publicIPAddresses/myPublicIP"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Storage/storageAccounts/storageforfilizsvm"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"},{"error":{"code":"DeletionFailed","message":"Resource - could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-template-created/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One - or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown - error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The - resource group ''filiz-test-template-created'' is in deprovisioning state - and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The - resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot - perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' - does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn - how deployment scopes work","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAEb%2fC1n2tMpVZSZmqYi3gZkiuvmylFJYx6S1LaAY%2f%2ft0%2b55Pck6%2bi1aSkwpoWUhtcNF2frSJI22gfSnF5UDXD6hEOTmQUnVQWwnSweygyyqRWFCuKCuljswkQz27CzIryYBjZSZwe0kXuI6Le30nw7Zl6lywmqZESD2kWDDJMtVZE8kqgYnUU8J%2f2PluiRTChXxBnIL6Rt8EQ8uwLGC4wDABF6SmpHl8kAXlG1aQcjhz5Bz%2bz4fzqtpSsWiN%2fjLuLyIj75%2fTYHo82l67mc2MtJENdYWFbf%2bE5yu4M%2bsfNoJiBXar%2bRSLVROO9%2fgzDz35vY%2bf37OzbGMzbDHYwn2LhXeOU44Cv35bxwukjjw9hcViAou09T06HjfLfBmY3lF8GBM4Woqq9xrc07Trk4bEAea5IDlSJP1Lv70M16F2%2fQU%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '185154' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Nov 2022 17:43:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - fbbaa666-9107-4cf5-bd11-e22ecc7cc5c2 - - c7888f6e-2754-488e-8ac8-f186fbe9a120 - - 83d58912-3290-4561-9041-18300f4dc987 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAEb/C1n2tMpVZSZmqYi3gZkiuvmylFJYx6S1LaAY/t0%2B55Pck6%2Bi1aSkwpoWUhtcNF2frSJI22gfSnF5UDXD6hEOTmQUnVQWwnSweygyyqRWFCuKCuljswkQz27CzIryYBjZSZwe0kXuI6Le30nw7Zl6lywmqZESD2kWDDJMtVZE8kqgYnUU8J/2PluiRTChXxBnIL6Rt8EQ8uwLGC4wDABF6SmpHl8kAXlG1aQcjhz5Bz%2Bz4fzqtpSsWiN/jLuLyIj75/TYHo82l67mc2MtJENdYWFbf%2BE5yu4M%2BsfNoJiBXar%2BRSLVROO9/gzDz35vY%2Bf37OzbGMzbDHYwn2LhXeOU44Cv35bxwukjjw9hcViAou09T06HjfLfBmY3lF8GBM4Woqq9xrc07Trk4bEAea5IDlSJP1Lv70M16F2/QU%3D - response: - body: - string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:50:04.0885604Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:50:04.0885604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:51:00.3893514Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:51:00.3893514Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf-pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:53:28.4521693Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:53:28.4521693Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:54:42.7520085Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:56:22.212836Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{"adVnetName":{"value":"ad-vnet"},"adVnetSubscriptionId":{"value":"ec0f79d3-16f0-4892-8165-f569a92c8273"},"dnsServerPrivateIp":{"value":"10.0.0.4"},"adminUsername":{"value":"bmoore"},"adSubnetName":{"value":"ad-vnet-subnet"},"adDomainName":{"value":"corp.mydomain.com"},"adVnetRG":{"value":"aad-stack"},"adminPassword":{"reference":{"keyVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo"},"secretName":"adminPass"}}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''dnsLabelPrefix'' at - line ''8'' and column ''27'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":27,"path":"properties.template.parameters.dnsLabelPrefix"}}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-17T22:00:21.3463894Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T22:00:21.3463894Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"AuthorizationFailed","message":"The - client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' - does not have authorization to perform action ''Microsoft.Resources/deployments/write'' - over scope ''/subscriptions/00000000-0000-0000-0000-000000000000'' or the - scope is invalid. If access was recently granted, please refresh your credentials.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T19:48:19.4198449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T19:48:19.4198449Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T20:51:35.6106822Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T20:51:35.6106822Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:05:40.8310162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:05:40.8310162Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:12:35.6680098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:12:35.6680098Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll","type":"Microsoft.Resources/deploymentStacks","name":"lollllllllll"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:36:04.5554974Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:36:04.5554974Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:40:16.9285842Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:40:16.9285842Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:42:52.0782141Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:42:52.0782141Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-21T16:46:13.0543587Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-21T16:46:13.0543587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-21T16:48:00.0416885Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-21T16:48:00.0416885Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T13:58:19.9106289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T13:58:19.9106289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:09:26.2162792Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:09:26.2162792Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:10:56.9901386Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:10:56.9901386Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:14:16.6982424Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:14:16.6982424Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:18:57.6431545Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:18:57.6431545Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:28:35.7385575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:28:35.7385575Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T15:36:25.6807389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T15:36:25.6807389Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-27T20:32:39.4217317Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-27T20:32:39.4217317Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_50"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-30T16:50:53.0934702Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T14:14:15.7887316Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2","type":"Microsoft.Resources/deploymentStacks","name":"hptest2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mySubStack-2022-06-20-18-51-46-7a6f1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.0741566S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-02-01T21:35:50.3861621Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-20T18:51:45.8755542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStack","type":"Microsoft.Resources/deploymentStacks","name":"mySubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.001939S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone/snapshots/2022-04-05-17-29-24-64a9d'' - for more details.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. - The tracking Id is ''236c6ae3-acd8-43c3-b27b-9dcf44e35d59''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-05T16:27:38.5417212Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-05T17:29:23.9447321Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone","type":"Microsoft.Resources/deploymentStacks","name":"hpone"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9251897S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22/snapshots/2022-05-26-20-18-12-269e3'' - for more details. Correlation id: ''845b9eba-1687-4504-916e-8d69d56d2847''","details":[{"code":"InvalidRequestContent","message":"The - request content was invalid and could not be deserialized: ''Required property - ''contentVersion'' not found in JSON. Path ''properties.template'', line 6, - position 5.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-18T20:23:06.5444995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T20:18:11.4113067Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22","type":"Microsoft.Resources/deploymentStacks","name":"hp22"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-04-27-17-16-32-c05e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT46.17268S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks6fq7lg6a2c4oyl3tm4nclfpwjghhuuos22zvw66monjatto4w/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpwlpcdu3ucnpgghodkeam3nnwaqdsi5z5ynglm/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg/snapshots/2022-04-27-17-16-32-c05e0'' - for more details.","details":[{"code":"DeploymentFailed","message":"Unable - to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks6fq7lg6a2c4oyl3tm4nclfpwjghhuuos22zvw66monjatto4w/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpwlpcdu3ucnpgghodkeam3nnwaqdsi5z5ynglm/versions/v1''. - Either the template spec version does not exist, or the user does not have - access. Please see https://aka.ms/arm-deploy for usage details. Error Code: - ''ServerTimeout'', Detailed Error: The request timed out. Diagnostic information: - timestamp ''20220427T171653Z'', subscription id ''a1bfa635-f2bf-42f1-86b5-848c674fc321'', - tracking id ''dc9b4f61-4ce3-4ffc-b98e-70ecee88b3d7'', request correlation - id ''627c1564-4808-480c-9296-e597bcbaa4a1''. Diagnostic information: timestamp - ''20220427T171653Z'', tracking Id ''dc9b4f61-4ce3-4ffc-b98e-70ecee88b3d7'', - request correlation Id ''627c1564-4808-480c-9296-e597bcbaa4a1''."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:16:29.2922667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:16:29.2922667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-27-17-17-28-e6e77","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT16.7042892S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:17:25.9228775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:17:25.9228775Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription4bas6bgmmdut36t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription4bas6bgmmdut36t"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detach-test-2022-06-15-17-25-59-01c8c","duration":"PT34.0312008S","outputs":{"storageAccountAName":{"type":"String","value":"deploymentscopetesta"},"storageAccountBName":{"type":"String","value":"deploymentscopetestb"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:53:43.8289431Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T17:25:59.1555357Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detach-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detach-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detatch-test-2022-06-14-21-57-39-972ba","duration":"PT10.1409527S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test/snapshots/2022-06-14-21-57-39-972ba'' - for more details. Correlation id: ''723328db-c1c9-4b5d-9fa9-9429eb056224''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-b'' under - resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-a'' under - resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:57:38.2436258Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T21:57:38.2436258Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detatch-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-example-storageaccount-2022-06-14-22-13-56-d5b2f","duration":"PT12.7634725S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount/snapshots/2022-06-14-22-13-56-d5b2f'' - for more details. Correlation id: ''bbdbbf47-5555-4a8e-901c-4a6d53b094aa''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T22:13:54.9096146Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T22:13:54.9096146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount","type":"Microsoft.Resources/deploymentStacks","name":"dante-example-storageaccount"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9740014S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg/snapshots/2022-06-15-16-47-09-62c43'' - for more details. Correlation id: ''f812d4e9-8926-4957-a4ae-1c18895674b3''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''angperezAKS'' at line - ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:47:07.7566368Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:47:07.7566368Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStackRg","type":"Microsoft.Resources/deploymentStacks","name":"angperezStackRg"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.2094989S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack/snapshots/2022-06-15-16-51-12-544d9'' - for more details. Correlation id: ''2c1f0a54-6867-4206-9aea-ded21cee84e1''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''angperezAKS'' at line - ''75'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":75,"linePosition":9,"path":"properties.template.resources[3]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-06-15T16:49:53.9387362Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T16:51:12.1631587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezStack","type":"Microsoft.Resources/deploymentStacks","name":"angperezStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.3648936S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13/snapshots/2022-06-17-18-53-18-03d4c'' - for more details. Correlation id: ''b864b76e-1dd6-41d5-a0b6-f08ab4aa49e3''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''sqlServerName'' at line - ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-17T18:53:16.7933655Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-17T18:53:16.7933655Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13","type":"Microsoft.Resources/deploymentStacks","name":"teststack13"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy-2022-06-23-17-09-19-b7d99","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.1677588S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy/snapshots/2022-06-23-17-09-19-b7d99'' - for more details. Correlation id: ''a0f6b921-5643-42c2-84b8-7091762fc357''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:09:17.4941031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:09:17.4941031Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy","type":"Microsoft.Resources/deploymentStacks","name":"dummy"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteTestStack-2022-09-07-17-32-25-5a92d","duration":"PT9.0890768S","parameters":{"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"keyVaultName":{"value":"danted-stackstest1523"},"secretValue":{"value":"HelloToTheWorld"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack/snapshots/2022-09-07-17-32-25-5a92d'' - for more details. Correlation id: ''3334e5a3-5ab1-4a77-9ab0-3d02b5c5f8da''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The resource ''Microsoft.KeyVault/vaults/danted-stackstest1523'' - is not defined in the template. Please see https://aka.ms/arm-template for - usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:34:18.5382285Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T17:32:24.3045971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteTestStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStorageStack-2022-09-07-18-33-27-a89a9","duration":"PT43.548586S","outputs":{},"parameters":{"namePrefix":{"value":"danted1234"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-07T18:05:16.4036646Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T18:33:25.9618998Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStorageStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStorageStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/9_19_test1-2022-09-26-16-20-50-2da1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.5093326S","parameters":{"name":{"value":"resource2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:47.4745761Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:47.4745761Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/deployments/subStack-2022-11-04-01-38-25-933c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","duration":"PT10.0476458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T01:38:22.5331641Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T01:38:22.5331641Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack","type":"Microsoft.Resources/deploymentStacks","name":"subStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackPollingTest-2022-11-15-18-00-23-43c41","duration":"PT22.548223S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:55:43.6664349Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:23.6612325Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackPollingTest","type":"Microsoft.Resources/deploymentStacks","name":"testStackPollingTest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-01T13:57:41.1847322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T13:57:41.1847322Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-01T14:07:15.4046137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T14:07:15.4046137Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25","parameters":{"bar":{"value":"xyz"},"foo":{"value":"abc"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T16:55:41.0189076Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T16:55:41.0189076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50","type":"Microsoft.Resources/deploymentStacks","name":"hp2_bb_50"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-04T16:26:50.5947681Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-11T16:24:03.7631746Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1","type":"Microsoft.Resources/deploymentStacks","name":"hp_df_1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T14:37:19.2142448Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T14:37:19.2142448Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T14:25:40.0202065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T20:45:56.782397Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create","type":"Microsoft.Resources/deploymentStacks","name":"hp_prod_sub_create"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The - template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1'' - is not a valid template spec version. Please see https://aka.ms/arm-template - for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T14:41:02.4356082Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T14:41:02.4356082Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T15:01:33.1770554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T15:03:30.7704565Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T15:07:17.9213523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T15:08:18.4975412Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4mqjir"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T16:45:54.3518991Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T16:45:54.3518991Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086","type":"Microsoft.Resources/deploymentStacks","name":"ps3086"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T16:52:30.9693468Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T16:52:30.9693468Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836","type":"Microsoft.Resources/deploymentStacks","name":"ps1836"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:06:23.7002099Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:06:23.7002099Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074","type":"Microsoft.Resources/deploymentStacks","name":"ps6074"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35","parameters":{"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:12:29.3345984Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:12:29.3345984Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175","type":"Microsoft.Resources/deploymentStacks","name":"ps175"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:14:49.4351416Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:15:01.180634Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274","type":"Microsoft.Resources/deploymentStacks","name":"ps4274"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:18:25.7212979Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:19:07.1648963Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583","type":"Microsoft.Resources/deploymentStacks","name":"ps1583"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:19:46.7570435Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:19:46.7570435Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867","type":"Microsoft.Resources/deploymentStacks","name":"ps1867"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:20:06.8260216Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:20:06.8260216Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437","type":"Microsoft.Resources/deploymentStacks","name":"ps437"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:23:50.912183Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:24:02.5159965Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906","type":"Microsoft.Resources/deploymentStacks","name":"ps3906"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:30:54.8199045Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:31:31.5117985Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781","type":"Microsoft.Resources/deploymentStacks","name":"ps781"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:32:19.6402071Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:32:19.6402071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796","type":"Microsoft.Resources/deploymentStacks","name":"ps5796"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:32:37.6073194Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:32:37.6073194Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420","type":"Microsoft.Resources/deploymentStacks","name":"ps5420"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:40:18.9660861Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:40:18.9660861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205","type":"Microsoft.Resources/deploymentStacks","name":"ps3205"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:41:13.3903692Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:41:13.3903692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696","type":"Microsoft.Resources/deploymentStacks","name":"ps4696"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-21T13:53:05.5338226Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T13:54:07.7508046Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-21T14:47:02.3811951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T14:48:02.5162767Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-27T15:25:42.4421091Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-27T15:26:44.5347824Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T18:41:02.8192804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-01T16:25:25.8944733Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist","type":"Microsoft.Resources/deploymentStacks","name":"shouldnotexist"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:19:25.0094772Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:19:25.0094772Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription56r32mivz7ic36w"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:27:42.3445727Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:01.9714966Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:27:42.8855732Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:27:42.8855732Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:28:06.3731401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:06.3731401Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:28:09.2279775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:09.2279775Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:23.4565657Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:23.4565657Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:24.0694861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:24.0694861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:31.3859118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:31.3859118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:44:59.3519432Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:19.3365624Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:02.0061035Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:02.0061035Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7uldyssruansxuj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:23.4694512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:23.4694512Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:31.4559907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:31.4559907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:31.392848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:31.392848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:55:17.899007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:56:19.0801133Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription2itu4q"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T18:52:08.0432709Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T18:53:08.8891818Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-01T15:19:26.5294367Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-01T15:20:30.1078116Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription3p34wp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-01T16:26:23.8125615Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T14:45:36.2610103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1","type":"Microsoft.Resources/deploymentStacks","name":"hpts1"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"NoRegisteredProviderFound","message":"No + registered resource provider found for location ''westus'' and API version + ''2019-06-01'' for type ''storageAccounts''. The supported api-versions are + ''2018-11-01, 2017-10-01, 2017-06-01, 2016-12-01, 2016-07-01, 2016-05-01, + 2016-01-01, 2015-10-01, 2015-06-15, 2015-05-01-preview''. The supported locations + are ''westus, northcentralus''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:12:53.474358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:12:53.474358Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource2","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg21-2022-10-04-18-41-13-8e685","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT8.0826677S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-04T18:41:12.1458194Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-04T18:41:12.1458194Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackmg21","type":"Microsoft.Resources/deploymentStacks","name":"stackmg21"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg22-2022-10-05-00-15-01-61ad6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT32.0717947S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T00:14:58.810254Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T00:14:58.810254Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackmg22","type":"Microsoft.Resources/deploymentStacks","name":"stackmg22"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221004T1721-2022-10-05-00-21-45-da7af","duration":"PT14.6334568S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221004T172124"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-05T00:21:41.6712297Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T00:21:41.6712297Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221004T172124","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221004T172124"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg25-2022-10-05-20-15-47-5aef9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT10.4854316S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T18:28:03.5485958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:15:46.7621198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackmg25","type":"Microsoft.Resources/deploymentStacks","name":"stackmg25"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1545-2022-10-12-22-46-01-ee1a2","duration":"PT12.4298339S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T154545"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T22:46:01.2169233Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T22:46:01.2169233Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T154545a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T154545a"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1559-2022-10-12-22-59-30-0b0f3","duration":"PT10.4796281S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T155917"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T22:59:29.9753173Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T22:59:29.9753173Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T155917a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T155917a"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1601-2022-10-12-23-02-12-df6dc","duration":"PT9.921038S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T160157"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T23:02:12.2720455Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T23:02:12.2720455Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T160157a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T160157a"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1622-2022-10-12-23-23-08-8496a","duration":"PT8.8825832S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T162253"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T23:23:08.3304976Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T23:23:08.3304976Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T162253a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T162253a"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStackDF-2022-10-13-21-36-19-53826","duration":"PT2M42.1065336S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStackDF/snapshots/2022-10-13-21-36-19-53826'' + for more details. Correlation id: ''1996d667-a389-4db5-bbe5-6fdbb599459c''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details."},{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-11-02T15:02:38.9889696Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T15:13:51.4211642Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro","type":"Microsoft.Resources/deploymentStacks","name":"repro"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-02T16:45:59.8209721Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T16:47:05.4842135Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-02T17:14:47.1456522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T17:15:53.8410163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-03T14:35:51.3843559Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T14:36:55.445654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-04T14:57:45.2338258Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T14:58:48.7272611Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-04T15:09:02.03315Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T15:10:05.0413021Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T13:52:45.154655Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T13:53:48.4051267Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-08T17:50:37.8777875Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T17:51:41.7610477Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:16:44.9692359Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:18:02.6858472Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271","type":"Microsoft.Resources/deploymentStacks","name":"ps9271"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:19:13.5864143Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:19:41.4727654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125","type":"Microsoft.Resources/deploymentStacks","name":"ps4125"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:21:19.0918203Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:21:19.0918203Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480","type":"Microsoft.Resources/deploymentStacks","name":"ps6480"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:21:53.3918115Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:21:53.3918115Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927","type":"Microsoft.Resources/deploymentStacks","name":"ps7927"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:29:06.805572Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:29:33.6304101Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257","type":"Microsoft.Resources/deploymentStacks","name":"ps1257"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d","parameters":{"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:36:24.6329286Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:36:24.6329286Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692","type":"Microsoft.Resources/deploymentStacks","name":"ps8692"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T15:06:34.4666682Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T15:07:36.8624014Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T20:19:17.0338745Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T20:20:18.1175672Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAIX%2fC9n2tMpFJ8zELAyY4sQ58TZeltIW1qC0tlwE438fbifn8STfOeei5ORczGmeSWV0UXZeuN6Eykj5KQouR6p6hDlMyZHkRQ%2b2pSA9xI6qLGOJBOUFZblUoR4ncNh%2fAokRJ2BgJDqwhvETsAYWGpqDBPUNXeWCVRQTIdWAIsEkS4reikhWCkSkigk%2fsOZGCQuIMvkCOQVVl%2b4AY0MzDKBZQNMBF6SipH64kxnla5aRfDwdSN%2f%2bl2f7ZbmlYtZq5mJjzkItNRs8n5xOfaddT6carmVNLWGgYdag6UrDduTs9OrAXm3hg92nP0HCrwM3Qt9p4LhL7XmfNLLd6MEZfWA3ahF3wg3h765XLbf72enA%2bOK8yGZvdrYwPadx7RrLYH6YcPFVe1Eem0ta38rd93Fn5fqoQHG001SQFBYE%2f03o3rZXgXL9BQ%3d%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '127842' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Nov 2022 17:43:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 7d51b3b0-889f-415e-81ef-4ef0d1ad0085 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAIX/C9n2tMpFJ8zELAyY4sQ58TZeltIW1qC0tlwE438fbifn8STfOeei5ORczGmeSWV0UXZeuN6Eykj5KQouR6p6hDlMyZHkRQ%2B2pSA9xI6qLGOJBOUFZblUoR4ncNh/AokRJ2BgJDqwhvETsAYWGpqDBPUNXeWCVRQTIdWAIsEkS4reikhWCkSkigk/sOZGCQuIMvkCOQVVl%2B4AY0MzDKBZQNMBF6SipH64kxnla5aRfDwdSN/%2Bl2f7ZbmlYtZq5mJjzkItNRs8n5xOfaddT6carmVNLWGgYdag6UrDduTs9OrAXm3hg92nP0HCrwM3Qt9p4LhL7XmfNLLd6MEZfWA3ahF3wg3h765XLbf72enA%2BOK8yGZvdrYwPadx7RrLYH6YcPFVe1Eem0ta38rd93Fn5fqoQHG001SQFBYE/03o3rZXgXL9BQ%3D%3D - response: - body: - string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T20:41:20.4753415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T20:42:21.4238094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T21:11:23.4123304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T21:12:24.6476543Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9","parameters":{"resourceGroups":{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}]}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-13T21:36:18.930454Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-13T21:36:18.930454Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStackDF","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStackDF"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackPollingTest-2022-11-14-22-49-22-b97d0","duration":"PT32.8771317S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"NoRegisteredProviderFound","message":"No + registered resource provider found for location ''eastus'' and API version + ''2021-02-01'' for type ''serverFarms''. The supported api-versions are ''2017-08-01, + 2016-08-01, 2016-03-01, 2015-08-01, 2015-07-01, 2015-06-01, 2015-05-01, 2015-04-01, + 2015-02-02, 2015-02-01, 2014-11-01, 2014-06-01, 2014-04-01, 2014-04-01-preview, + 2015-04-01-privatepreview, 2017-08-01-privatepreview, 2016-08-01-privatepreview, + 2016-03-01-privatepreview, 2015-08-01-privatepreview, 2015-07-01-privatepreview, + 2015-06-01-privatepreview, 2015-05-01-privatepreview, 2015-02-01-privatepreview, + 2014-11-01-privatepreview, 2014-06-01-privatepreview, 2014-04-01-privatepreview''. + The supported locations are ''westus, eastus, eastus2, eastasiastage''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2/providers/Microsoft.Web/serverfarms/shared-app-service"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''318eac2b-e069-4d01-a80f-20d6cf011ace''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}]}},"systemData":{"createdBy":"tsunkaraneni@microsoft.com","createdByType":"User","createdAt":"2021-11-16T23:17:33.6981155Z","lastModifiedBy":"tsunkaraneni@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-16T23:31:28.1053874Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit","type":"Microsoft.Resources/deploymentStacks","name":"ghImplicit"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T20:17:25.3276637Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T20:18:26.5874089Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''resource-group'' could not be found.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T20:58:13.256519Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T20:44:40.7588571Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje","type":"Microsoft.Resources/deploymentStacks","name":"hp_prod_sub_create_checje"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T21:02:09.9177231Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T21:03:16.4615691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T20:41:35.3698362Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T20:42:37.6788971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription53xmqc"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:13:15.1673603Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:13:15.1673603Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-hp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T21:01:12.9792533Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T21:02:19.3094872Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T21:08:34.3282811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T21:09:35.8321305Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-19T15:46:36.9976152Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T15:47:38.9223058Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:13:37.2232093Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:13:37.2232093Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-2"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One - or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details."},{"code":"KeyVaultParameterReferenceNotFound","message":"The + specified KeyVault ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VaultsGroup/providers/Microsoft.KeyVault/vaults/armdemovault'' + could not be found. Please see https://aka.ms/arm-keyvault for usage details."}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-08T17:08:40.888718Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T22:49:22.1844201Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackPollingTest","type":"Microsoft.Resources/deploymentStacks","name":"testStackPollingTest"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStack-2022-09-06-23-21-52-99aff","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"A + New Stack","duration":"PT1M24.8213117S","parameters":{"keyVaultName":{"value":"dantekeyvault"},"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"secretValue":{"value":"Hello"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStack/snapshots/2022-09-06-23-21-52-99aff'' + for more details. Correlation id: ''1bfbeaa9-c7a1-42f0-9223-4f04fa67e227''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:17:46.80745Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:20:05.9319831Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:24:17.4398839Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:39:53.5762409Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:35:48.7273275Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:36:51.51709Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:12:40.5996915Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:12:40.5996915Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john - doe","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-02-25-19-24-11-02c37","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-25T19:24:11.172495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' - for more details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template parameters ''foo, bar'' in the - parameters file are not valid; they are not present in the original template - and can therefore not be provided at deployment time. The only supported parameters - for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' - for more details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template parameters ''foo, bar'' in the - parameters file are not valid; they are not present in the original template - and can therefore not be provided at deployment time. The only supported parameters - for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file - for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAEb%2fC1n2tMrFG5qYpeI9YOYFby%2bmtoV1KC1tAcX436fb93ySc%2fLdjZRetc%2fSRBndu7Edrtbhyuga31oL1TXNC0pRTC801TVU5ZLWML%2bYKj8pLJnQjKfKRPYpQq16E0TOKQINJ7KB2zo1gdtwcavdiHDdsU0hecEIlcoMGJZc8UjXllTxXGKqTELFmd9elpVGOFGfSDBQPOmnoOdYjgMsF1g2EJIWjJbvbyphYs0TmvYmDTWF%2fxvCaZ5vmJxVVnsetmcrK27fiD%2fOsrpXrScTi5SqZK64dnbwiidLi8CDt7WLM%2b9DuQfbxXSM5b4MBgd8jANP%2fRzCzi66qSq0gwqDDTxUWHq3kAjkD4uvZThDOhPkGiSzEUxINfTYYFDO47lve5ncWyPY9xadY%2ba%2f8ozHh4HkBcaxpDHSlPzlP5%2bGy8B4%2fAI%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '105783' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Nov 2022 17:43:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 78922796-6a33-4da3-aa66-71299c2de7b2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAEb/C1n2tMrFG5qYpeI9YOYFby%2BmtoV1KC1tAcX436fb93ySc/LdjZRetc/SRBndu7Edrtbhyuga31oL1TXNC0pRTC801TVU5ZLWML%2BYKj8pLJnQjKfKRPYpQq16E0TOKQINJ7KB2zo1gdtwcavdiHDdsU0hecEIlcoMGJZc8UjXllTxXGKqTELFmd9elpVGOFGfSDBQPOmnoOdYjgMsF1g2EJIWjJbvbyphYs0TmvYmDTWF/xvCaZ5vmJxVVnsetmcrK27fiD/OsrpXrScTi5SqZK64dnbwiidLi8CDt7WLM%2B9DuQfbxXSM5b4MBgd8jANP/RzCzi66qSq0gwqDDTxUWHq3kAjkD4uvZThDOhPkGiSzEUxINfTYYFDO47lve5ncWyPY9xadY%2Ba/8ozHh4HkBcaxpDHSlPzlP5%2BGy8B4/AI%3D - response: - body: - string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:31.6976428Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT5.0963878S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp77/snapshots/2022-05-27-18-18-53-83c61'' - for more details. Correlation id: ''2a21bfec-0641-46c5-af29-d041271ae7cf''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''sqlServerName'' at line - ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' - is not expected at this location. Please see https://aka.ms/arm-template-expressions + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''Microsoft.KeyVault/vaults/dantekeyvault'' + is not defined in the template. Please see https://aka.ms/arm-template for + usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:19:24.0431371Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-06T23:21:52.4273739Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStack"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackGokul-2022-05-24-19-22-56-259f5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-05-24T19:22:55.2064645Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-24T19:22:55.2064645Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackGokul","type":"Microsoft.Resources/deploymentStacks","name":"testStackGokul"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackGokul3f2a1503-8c47-4762-ae5d--2022-06-01-18-05-54-9b043","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT33.6830883S","outputs":{"rgName":{"type":"String","value":"my-stackrg2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefuls1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefuls2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-01T18:05:52.9874073Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-01T18:05:52.9874073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackGokul3f2a1503-8c47-4762-ae5d-9f9a2a5c6967","type":"Microsoft.Resources/deploymentStacks","name":"testStackGokul3f2a1503-8c47-4762-ae5d-9f9a2a5c6967"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedStack2-2022-09-02-21-43-58-519bc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"a + new stack","duration":"PT7.7278278S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedStack2/snapshots/2022-09-02-21-43-58-519bc'' + for more details. Correlation id: ''22779bdf-4094-4386-a969-50b7fe851001''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidResourceGroupLocation","message":"Invalid + resource group location ''westus''. The Resource group already exists in location + ''eastus''."},{"code":"InvalidResourceGroupLocation","message":"Invalid resource + group location ''westus''. The Resource group already exists in location ''eastus''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-02T21:43:15.5849188Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-02T21:43:58.1336092Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedStack2","type":"Microsoft.Resources/deploymentStacks","name":"dantedStack2"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedTestStack-2022-09-06-21-35-55-aec3e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT35M26.5495658S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedTestStack/snapshots/2022-09-06-21-35-55-aec3e'' + for more details. Correlation id: ''33cf9c25-49ee-482f-ba1b-65e818b5ce46''","details":[{"code":"DeploymentFailed","message":"Could + not deploy the specified template successfully. DeploymentId ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedTestStack-2022-09-06-21-35-55-aec3e'' + was canceled."}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T21:34:55.2106741Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-06T21:35:55.2953677Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedTestStack","type":"Microsoft.Resources/deploymentStacks","name":"dantedTestStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStack-2022-09-14-22-39-48-5d504","duration":"PT9.3005101S","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-14T22:31:42.3121374Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-14T22:39:46.5011699Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStack"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-16-17-00-26-1a829","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.6276422S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:00:25.8193712Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:00:25.8193712Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionj5gx4qjvfqxkyfo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionj5gx4qjvfqxkyfo"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource3-2022-09-16-17-14-08-00ad7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.9753559S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource3/snapshots/2022-09-16-17-14-08-00ad7'' + for more details. Correlation id: ''e56b3723-4bfc-4b27-a579-3cb3fda89f7b''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"NoRegisteredProviderFound","message":"No + registered resource provider found for location ''westus'' and API version + ''2019-06-01'' for type ''storageAccounts''. The supported api-versions are + ''2018-11-01, 2017-10-01, 2017-06-01, 2016-12-01, 2016-07-01, 2016-05-01, + 2016-01-01, 2015-10-01, 2015-06-15, 2015-05-01-preview''. The supported locations + are ''westus, northcentralus''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:14:07.4080299Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:14:07.4080299Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource3","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource4-2022-09-16-17-15-22-6a6dc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT2H18M38.4182915S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource4/snapshots/2022-09-16-17-15-22-6a6dc'' + for more details. Correlation id: ''403dbbe9-4f45-4fe2-b1ca-cf0420845ccd''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceDeploymentFailure","message":"The + resource provision operation did not complete within the allowed timeout period."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:15:21.5044931Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:15:21.5044931Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource4","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource4"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource5-2022-09-16-19-05-06-44f0e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT2H18M1.6666246S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource5/snapshots/2022-09-16-19-05-06-44f0e'' + for more details. Correlation id: ''c5b315ba-4a99-4761-8d04-088e5a528cd3''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceDeploymentFailure","message":"The + resource provision operation did not complete within the allowed timeout period."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:05:04.1952769Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:05:04.1952769Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource5","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource5"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource6-2022-09-16-19-13-24-2de81","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT14.1193528S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:12:10.3238535Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:13:24.1191473Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource6","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource6"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource8-2022-09-16-19-43-09-3f0cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT1M33.0635842S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{"name":{"value":"hp"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hp"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:13:39.4856955Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:43:08.7528621Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource8","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-16-19-49-18-f9d8f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","duration":"PT19.4037672S","outputs":{"storageId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:49:17.3184598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:49:17.3184598Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionyxi7coerjgvmsrm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionyxi7coerjgvmsrm"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource9-2022-09-16-19-50-26-c6901","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT18.4220814S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:26.0678691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:26.0678691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource9","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.0733839S","parameters":{"name":{"value":"cli-test-resource-onecjzkabt7jd3tfjwmf75x7rbcolpwlb23puuvvnd"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5ejpykmx5ntv5cb/snapshots/2022-09-16-19-56-49-75c06'' + for more details. Correlation id: ''d69e1f5f-0bc5-41d6-aa1c-721dc45cc742''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''location'' at line ''22'' + and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is + not expected at this location. Please see https://aka.ms/arm-template-expressions for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T15:44:34.5616677Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-27T18:18:51.5771521Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp77","type":"Microsoft.Resources/deploymentStacks","name":"hp77"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-11-17-06-09-dc3dc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.3437174S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:19.5709979Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:08.2890473Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionuyruv3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionuyruv3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-05-36-5884b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT14.3473298S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:34.9404604Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:05:34.9404604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription7je46pkv4ly2w7sdt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription7je46pkv4ly2w7sdt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-11-17-05-59-02f1d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.5794656S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:57.7866312Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:05:57.7866312Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionawdwgojr2azfies","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionawdwgojr2azfies"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-06-09-8433b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.3102277S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:06:08.197594Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:08.197594Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono2u76jatulle7jxhjf","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono2u76jatulle7jxhjf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-06-11-ddf64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.1844204S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:06:09.3601536Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:09.3601536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription4wd5bhjmz6soao5lee","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription4wd5bhjmz6soao5lee"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-11-17-09-08-2aedf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.8135181S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:08:15.9398492Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:07.7562419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription5hi54v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription5hi54v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-08-37-7e9d6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT10.6105923S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:08:35.4317746Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:08:35.4317746Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontds4i2di4gqv4ikk4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontds4i2di4gqv4ikk4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-11-17-09-06-0fa1a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.1000913S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:03.1785622Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:03.1785622Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionny3opsthmn5kvl7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionny3opsthmn5kvl7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-09-11-08ec1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT14.0165756S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:08.9243576Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:08.9243576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionoulsxedw52jvdiqpjn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionoulsxedw52jvdiqpjn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-09-15-a6fb0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.8216339S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:13.4236281Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:13.4236281Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionn23qblpzc27zivvotn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionn23qblpzc27zivvotn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-11-52-2b52e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.009615S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:11:50.1377153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:11:50.1377153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnlqtjrafznkqelasu","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionnlqtjrafznkqelasu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-14-01-9c921","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.7837082S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:13:59.5897268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:13:59.5897268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpuoh26b6axfjpjbgs","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionpuoh26b6axfjpjbgs"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.4349888S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp23/snapshots/2022-04-19-19-53-26-26125'' - for more details.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. - The tracking Id is ''411f217a-ffdc-43fe-bf71-24b75e6b2a55''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-19T19:53:24.0334447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:53:24.0334447Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp23","type":"Microsoft.Resources/deploymentStacks","name":"hp23"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT6.175094S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp82/snapshots/2022-04-21-18-57-25-ae0bd'' - for more details.","details":[{"code":"InvalidContentLink","message":"Unable - to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. - The tracking Id is ''0fc50863-9f11-491c-be2f-26bc1813e556''. Please see https://aka.ms/arm-deploy - for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-21T18:57:22.9382114Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-21T18:57:22.9382114Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp82","type":"Microsoft.Resources/deploymentStacks","name":"hp82"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4306-2022-04-22-16-48-19-6e0e2","duration":"PT23.6963395S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:46:37.4846781Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:48:18.2376819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4306","type":"Microsoft.Resources/deploymentStacks","name":"ps4306"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4441-2022-04-22-16-51-09-f271e","duration":"PT26.0686067S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2399/providers/Microsoft.Resources/templateSpecs/ps2494/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:50:33.598735Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:51:08.7092523Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4441","type":"Microsoft.Resources/deploymentStacks","name":"ps4441"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8719-2022-04-22-16-53-52-88805","duration":"PT31.0064039S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:53:50.4870495Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:53:50.4870495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8719","type":"Microsoft.Resources/deploymentStacks","name":"ps8719"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1307-2022-04-22-16-55-15-023dd","duration":"PT29.0285475S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:55:12.7052984Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:55:12.7052984Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1307","type":"Microsoft.Resources/deploymentStacks","name":"ps1307"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3275-2022-04-22-17-03-16-899fe","duration":"PT25.4700707S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:02:41.1244637Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:03:15.1082627Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3275","type":"Microsoft.Resources/deploymentStacks","name":"ps3275"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2022-2022-04-22-17-08-10-c1758","duration":"PT9.3108048S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"bar":{"value":"xyz"},"foo":{"value":"abc"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:08:07.8577681Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:08:07.8577681Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2022","type":"Microsoft.Resources/deploymentStacks","name":"ps2022"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1913-2022-04-22-17-31-58-8ecee","duration":"PT26.4054684S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:30:23.5098344Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:31:56.7883282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1913","type":"Microsoft.Resources/deploymentStacks","name":"ps1913"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5815-2022-04-22-17-34-13-629ba","duration":"PT27.825526S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8794/providers/Microsoft.Resources/templateSpecs/ps283/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:33:25.815992Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:34:12.9983797Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5815","type":"Microsoft.Resources/deploymentStacks","name":"ps5815"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps832-2022-04-22-17-37-11-73ef9","duration":"PT30.1533737S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:37:09.0011353Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:37:09.0011353Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps832","type":"Microsoft.Resources/deploymentStacks","name":"ps832"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8224-2022-04-22-17-38-26-a1b80","duration":"PT32.0832653S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:38:24.0548236Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:38:24.0548236Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8224","type":"Microsoft.Resources/deploymentStacks","name":"ps8224"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5967-2022-04-25-17-00-49-29ee3","duration":"PT30.705107S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T16:55:03.7751295Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:00:46.5883527Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5967","type":"Microsoft.Resources/deploymentStacks","name":"ps5967"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1886-2022-04-25-17-02-47-b923e","duration":"PT27.2589278S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8033/providers/Microsoft.Resources/templateSpecs/ps1794/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:02:07.7242282Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:02:45.470847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1886","type":"Microsoft.Resources/deploymentStacks","name":"ps1886"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2292-2022-04-25-17-05-31-ded65","duration":"PT31.3371289S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:05:28.4068234Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:05:28.4068234Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2292","type":"Microsoft.Resources/deploymentStacks","name":"ps2292"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2994-2022-04-25-17-06-45-05ecf","duration":"PT27.2821172S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:06:43.0639185Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:06:43.0639185Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2994","type":"Microsoft.Resources/deploymentStacks","name":"ps2994"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9521-2022-04-25-17-14-25-5f3bb","duration":"PT26.7493798S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:13:52.3029272Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:14:24.7369532Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9521","type":"Microsoft.Resources/deploymentStacks","name":"ps9521"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2090-2022-04-25-17-22-25-70ea1","duration":"PT12.0704318S","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26669"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East - US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2090/snapshots/2022-04-25-17-22-25-70ea1'' - for more details.","details":[{"code":"DeploymentFailed","message":"At least - one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:22:23.3588989Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:22:23.3588989Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2090","type":"Microsoft.Resources/deploymentStacks","name":"ps2090"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9456-2022-04-25-18-36-57-b58e4","duration":"PT25.5752395S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:35:09.0556409Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:36:55.1551166Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9456","type":"Microsoft.Resources/deploymentStacks","name":"ps9456"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1667-2022-04-25-18-38-51-288d4","duration":"PT27.0929961S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4008/providers/Microsoft.Resources/templateSpecs/ps6226/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:38:15.3633486Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:38:50.4274414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1667","type":"Microsoft.Resources/deploymentStacks","name":"ps1667"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6461-2022-04-25-18-41-35-25f36","duration":"PT29.6086821S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:41:32.3821421Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:41:32.3821421Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6461","type":"Microsoft.Resources/deploymentStacks","name":"ps6461"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5986-2022-04-25-18-42-54-b2f45","duration":"PT32.3488547S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:42:51.7871722Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:42:51.7871722Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5986","type":"Microsoft.Resources/deploymentStacks","name":"ps5986"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7543-2022-04-25-18-51-57-40c41","duration":"PT27.9803613S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:51:17.1733876Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:51:54.3634901Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7543","type":"Microsoft.Resources/deploymentStacks","name":"ps7543"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1458-2022-04-25-18-58-47-b449d","duration":"PT11.0873053S","parameters":{"siteLocation":{"value":"East - US"},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1458/snapshots/2022-04-25-18-58-47-b449d'' - for more details.","details":[{"code":"DeploymentFailed","message":"At least - one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:58:45.4438949Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:58:45.4438949Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1458","type":"Microsoft.Resources/deploymentStacks","name":"ps1458"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/138-2022-05-03-15-28-20-9c41a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.5683401S","outputs":{"storageAccountName":{"type":"String","value":"deploymentscopetest"},"storageAccountName2":{"type":"String","value":"deploymentscopetest2"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest2/providers/Microsoft.Authorization/locks/MySiteLock"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-28T15:34:54.6527163Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-03T15:28:19.3881678Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/138","type":"Microsoft.Resources/deploymentStacks","name":"138"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-29-19-18-40-e7ed3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.505281S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-29T19:18:37.5350519Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T19:18:37.5350519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionz6g2vuwbhp7fmt5io","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionz6g2vuwbhp7fmt5io"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-29-19-33-32-ff4ce","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.9340789S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-29T19:32:21.7900515Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T19:33:32.0280202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondmgvvw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondmgvvw"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT3.2123482S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/test/snapshots/2022-05-02-19-29-16-14593'' - for more details. Correlation id: ''7309e325-1184-4262-b29e-c7f55bea232c''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''Template schema ''https://schema.management.azure.com/schemas/2021-05-01/deploymentTemplate.json#'' - is not supported. Supported versions are ''2014-04-01-preview,2015-01-01,2018-05-01,2019-04-01,2019-08-01''. - Please see https://aka.ms/arm-template for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":4,"linePosition":98,"path":"properties.template.$schema"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-05-02T19:27:11.4571246Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-02T19:29:15.1538791Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/test","type":"Microsoft.Resources/deploymentStacks","name":"test"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg_9-2022-09-26-16-20-08-0fd67","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT31.0501257S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9/snapshots/2022-09-26-16-20-08-0fd67'' - for more details. Correlation id: ''af5a19f7-4daa-4a57-9285-41698413c9a5''","details":[{"code":"DeploymentFailed","message":"At + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:56:48.2655372Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:56:48.2655372Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5ejpykmx5ntv5cb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5ejpykmx5ntv5cb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-09-16-20-08-51-ce0e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.0892422S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T20:08:51.0755724Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T20:08:51.0755724Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptions5hyylvuxj4faysmdp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptions5hyylvuxj4faysmdp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteBlankStack-2022-09-16-23-47-41-5e051","duration":"PT7.1129529S","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-16T23:47:40.4967826Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T23:47:40.4967826Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteBlankStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteBlankStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT1.7182791S","parameters":{"name":{"value":"resource2"},"rgLocation":{"value":"sup"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1/snapshots/2022-10-05-20-32-32-27029'' + for more details. Correlation id: ''454549dc-5e71-4c3c-b2b3-43bca78fe318''","details":[{"code":"LocationNotAvailableForResourceGroup","message":"The + provided location ''sup'' is not available for resource group. List of available + regions is ''eastasia,southeastasia,eastus,eastus2,westus,westus2,westus3,centralus,northcentralus,southcentralus,northeurope,westeurope,japaneast,japanwest,brazilsouth,australiasoutheast,australiaeast''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T15:52:21.0467759Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:32:32.0727294Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-16-57-56-e9c43","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe","duration":"PT6.8786056S","parameters":{"name":{"value":"cli-test-resource-two6osrj3tligfdtcy5rlqjfoyzxnbwmnmeapvkdt2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two6osrj3tligfdtcy5rlqjfoyzxnbwmnmeapvkdt2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two6osrj3tligfdtcy5rlqjfoyzxnbwmnmeapvkdt2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oner2jnzgo5dsar4u66gp5f7gw4qrqkbk7n2afbr4s"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oner2jnzgo5dsar4u66gp5f7gw4qrqkbk7n2afbr4s/versions/v1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T16:57:36.2716797Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T16:57:56.0232934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionmkuehfx6hwipifk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionmkuehfx6hwipifk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-06-34-a1a70","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc","duration":"PT13.2674443S","parameters":{"name":{"value":"cli-test-resource-threeqv3lvsoj7cdpcdromrsefltwmtxjmagbktwdp"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeqv3lvsoj7cdpcdromrsefltwmtxjmagbktwdp"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeqv3lvsoj7cdpcdromrsefltwmtxjmagbktwdp/versions/v1"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned2424qsz63uosm4hn7k7whemcmjcjz74vypynsm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned2424qsz63uosm4hn7k7whemcmjcjz74vypynsm/versions/v1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:06:14.6595988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:06:34.1532442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionmzwglxbrrtbf5se","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionmzwglxbrrtbf5se"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-10-06-0d0c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4","duration":"PT3M23.0501268S","parameters":{"name":{"value":"cli-test-resource-threeykwg5my2zpfdj74ta2wv2lepx3zk6icbc7guz"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeykwg5my2zpfdj74ta2wv2lepx3zk6icbc7guz"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeykwg5my2zpfdj74ta2wv2lepx3zk6icbc7guz/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoilwzioyz4ds75bj55xcaqg5xtd2ud2cccfm4ezc"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoilwzioyz4ds75bj55xcaqg5xtd2ud2cccfm4ezc/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:09:26.7434101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:10:06.1875441Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionzckp7la4pwskluz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionzckp7la4pwskluz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-31-12-8b874","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy","duration":"PT5M25.89651S","parameters":{"name":{"value":"cli-test-resource-three7o2rwory6iezqpwdwfrsjgp7yvsifmry347os"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three7o2rwory6iezqpwdwfrsjgp7yvsifmry347os"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three7o2rwory6iezqpwdwfrsjgp7yvsifmry347os/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomaravc7eik7ekx4q5awlmrqogyp3awydbhcvldm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomaravc7eik7ekx4q5awlmrqogyp3awydbhcvldm/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:30:32.38851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:31:12.1404352Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionkdrgbj5ognpom6j","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionkdrgbj5ognpom6j"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-44-42-e9ffa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj","duration":"PT2M30.9847235S","parameters":{"name":{"value":"cli-test-resource-threek75bcxbvah77yvatscq5tyuk3fbqqhsq45cup"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threek75bcxbvah77yvatscq5tyuk3fbqqhsq45cup"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threek75bcxbvah77yvatscq5tyuk3fbqqhsq45cup/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two2tf7ve4ajub4lzk7lrdjlluem3wbszy5ss3kuxk"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two2tf7ve4ajub4lzk7lrdjlluem3wbszy5ss3kuxk/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:43:31.7295993Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:44:42.5225689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionzirya7ltnyfrjrk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionzirya7ltnyfrjrk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-18-22-37-7f3c8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.4735553S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksk7dhreu2ysr5jzua3qjkok3vdrqn7ei3234ydvfkvcyzf55mp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specu5gzeiiuokf6oncksvatn5p5723oitrigrruvo/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:22:36.2230642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:22:36.2230642Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptiongfxlqvv2vtyurz7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptiongfxlqvv2vtyurz7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-18-33-44-dcc4b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","duration":"PT8M23.9326765S","parameters":{"name":{"value":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoi3hfszg74pawdet67lw4weduikrzlcbu5m4repw"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoi3hfszg74pawdet67lw4weduikrzlcbu5m4repw/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:02.8134694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:44.5184015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionzqjh7x5s7gwyaoo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionzqjh7x5s7gwyaoo"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-19-04-45-241b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2","duration":"PT7M21.5758272S","parameters":{"name":{"value":"cli-test-resource-threejy4atc7ebqha337jz5wnwj4znm3fktgqr2iys"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threejy4atc7ebqha337jz5wnwj4znm3fktgqr2iys"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threejy4atc7ebqha337jz5wnwj4znm3fktgqr2iys/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twob6yi4atm5m42rqm4iw7bifpsvyezjxplk5xa3bp"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twob6yi4atm5m42rqm4iw7bifpsvyezjxplk5xa3bp/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T19:04:03.7230574Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T19:04:44.7064451Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionfevunuisrnyt3a3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionfevunuisrnyt3a3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg-2022-09-21-17-15-21-791aa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT10.7361664S","parameters":{"name":{"value":"rg1"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg/snapshots/2022-09-21-17-15-21-791aa'' + for more details. Correlation id: ''7c4ad283-1c36-430b-81b8-ba3f7d4bedcf''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"message":"No - HTTP resource was found that matches the request URI ''https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/delete_all_rg?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:05.958234Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:05.958234Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-09-26-16-47-14-d493f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.1915998S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:47:12.3295438Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:47:12.3295438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription7aynifdnb5o32wy3b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription7aynifdnb5o32wy3b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/trackedRGHP-2022-09-26-17-34-48-77a36","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT4M21.518069S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP"}],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T17:25:51.184283Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T17:34:47.5970069Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/trackedRGHP","type":"Microsoft.Resources/deploymentStacks","name":"trackedRGHP"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Resources/deployments/trackedRGHP2-2022-09-26-17-40-21-f9767","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","duration":"PT6M25.7125642S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Resources/templateSpecs/wave"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel4"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T17:37:43.244932Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T17:40:20.437079Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/trackedRGHP2","type":"Microsoft.Resources/deploymentStacks","name":"trackedRGHP2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-26-18-44-07-fe03d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","duration":"PT20.5842006S","parameters":{"rgname":{"value":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij"},"tsname":{"value":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:05.1416959Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:05.1416959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionj3uf6k5wdpltres","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionj3uf6k5wdpltres"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9176-2022-09-29-17-48-20-dc0b3","duration":"PT10.5021189S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9176/snapshots/2022-09-29-17-48-20-dc0b3'' - for more details. Correlation id: ''eb5901b5-dbe7-4f31-980c-5d3e4c2f999c''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T17:48:16.3934247Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T17:48:16.3934247Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9176","type":"Microsoft.Resources/deploymentStacks","name":"ps9176"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/rname-2022-09-29-17-53-53-c6692","duration":"PT9.8309056S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rname/snapshots/2022-09-29-17-53-53-c6692'' - for more details. Correlation id: ''604554ce-7b3d-427b-abda-d737afab3673''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T17:53:50.0219942Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T17:53:50.0219942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rname","type":"Microsoft.Resources/deploymentStacks","name":"rname"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6607-2022-09-29-18-16-34-5443d","duration":"PT10.7104429S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6607/snapshots/2022-09-29-18-16-34-5443d'' - for more details. Correlation id: ''1468979d-9248-4f86-b789-9e49fec1772c''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T18:16:30.6584934Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T18:16:30.6584934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6607","type":"Microsoft.Resources/deploymentStacks","name":"ps6607"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps311-2022-09-29-19-26-43-f5333","duration":"PT11.1852537S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps311/snapshots/2022-09-29-19-26-43-f5333'' - for more details. Correlation id: ''d7ee5cbd-c1f5-4e24-96e3-669e57b58be4''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"RoleDefinitionLimitExceeded","message":"Role - definition limit exceeded. No more role definitions can be created."}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T19:26:39.5039157Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T19:26:39.5039157Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps311","type":"Microsoft.Resources/deploymentStacks","name":"ps311"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1272-2022-09-29-20-08-21-68e7e","duration":"PT8.8745404S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:08:18.5062505Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:08:18.5062505Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1272","type":"Microsoft.Resources/deploymentStacks","name":"ps1272"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1292-2022-09-29-20-10-24-2677c","duration":"PT10.0211213S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:10:21.2044074Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:10:21.2044074Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1292","type":"Microsoft.Resources/deploymentStacks","name":"ps1292"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2395-2022-09-29-20-18-32-eb1f3","duration":"PT10.1153363S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:18:29.2038306Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:18:29.2038306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2395","type":"Microsoft.Resources/deploymentStacks","name":"ps2395"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1437-2022-09-29-20-55-10-992de","duration":"PT9.6629483S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:55:07.1552838Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:55:07.1552838Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1437","type":"Microsoft.Resources/deploymentStacks","name":"ps1437"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3697-2022-09-29-20-59-18-ff07e","duration":"PT7.6068354S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:58:59.0460377Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:59:17.4247133Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3697","type":"Microsoft.Resources/deploymentStacks","name":"ps3697"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4987-2022-09-29-21-03-39-71f4c","duration":"PT8.1566476S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T21:03:20.5426523Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T21:03:38.4199538Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4987","type":"Microsoft.Resources/deploymentStacks","name":"ps4987"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6728-2022-09-30-16-06-51-dd76d","duration":"PT7.7596451S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-30T16:06:25.054911Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-30T16:06:50.0217499Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6728","type":"Microsoft.Resources/deploymentStacks","name":"ps6728"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-15-49-10-d5e06","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","duration":"PT21.7560333S","parameters":{"rgname":{"value":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b"},"tsname":{"value":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:08.4192544Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:08.4192544Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionkla64dpkjtekqlr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionkla64dpkjtekqlr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3545-2022-10-27-15-37-33-3cacb","duration":"PT11.3230296S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps1961/providers/Microsoft.Resources/templateSpecs/ps323/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3545/snapshots/2022-10-27-15-37-33-3cacb'' - for more details. Correlation id: ''71896f95-2b7e-4b81-a084-3ed3324cbf8c''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource - group ''StacksTestRGiyrmpdcyfhgl6'' could not be found."}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:37:28.7957759Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:37:28.7957759Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3545","type":"Microsoft.Resources/deploymentStacks","name":"ps3545"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4476-2022-10-27-15-40-23-1fd56","duration":"PT8.4024741S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:39:59.3336413Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:40:21.6001638Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4476","type":"Microsoft.Resources/deploymentStacks","name":"ps4476"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2600-2022-10-27-15-40-42-a26b9","duration":"PT23.4755593S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:40:38.8519053Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:40:38.8519053Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2600","type":"Microsoft.Resources/deploymentStacks","name":"ps2600"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation-2022-11-02-15-11-55-72693","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6.9967863S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedPrincipals":["7c1752e8-668a-4aed-9405-20d1e9daf1e6"]},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-02T15:07:01.4801558Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-02T15:11:54.0026423Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_2-2022-11-03-16-35-30-42dfa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT31.9224311S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-02T15:10:47.4355981Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:35:29.2845863Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_3-2022-11-03-16-35-43-c828c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8M55.1244079S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"deletedResources":[],"failedResources":[{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The - client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' - has permission to perform action ''Providers.Test/statefulResources/delete'' - on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6''; + HTTP resource was found that matches the request URI ''https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/rg1?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T17:15:20.4586627Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T17:15:20.4586627Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_test_rg_2-2022-09-21-17-22-24-ed643","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2M23.2901893S","outputs":{},"parameters":{"name":{"value":"rg3"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T17:17:59.5139579Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T17:22:24.003861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT5.8582903S","parameters":{"name":{"value":"cli-test-resource-onegkgdi4yotzdtexrsdb7qut76zn42rwbqefofirf"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionsfdyznoddy7ealq/snapshots/2022-09-22-20-32-02-822ed'' + for more details. Correlation id: ''43eb9464-9862-4a29-a2ec-2698f6eaebf1''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''location'' at line ''22'' + and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is + not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:32:02.0782009Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:32:02.0782009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionsfdyznoddy7ealq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionsfdyznoddy7ealq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.3087632S","parameters":{"name":{"value":"cli-test-resource-onersf4dv6movto25zukrlgjn6ez373e2nziueypg3"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionskmhuw2rtr6wm7k/snapshots/2022-09-22-20-35-12-41fba'' + for more details. Correlation id: ''4b8f357e-9f1e-4e64-b3f7-cd6d54165142''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''location'' at line ''22'' + and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is + not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:35:11.9447454Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:35:11.9447454Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionskmhuw2rtr6wm7k","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionskmhuw2rtr6wm7k"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-47-14-972ba","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","duration":"PT15.6814346S","parameters":{"name":{"value":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:13.8112644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:13.8112644Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7k7qua5kilauxar","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7k7qua5kilauxar"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-50-28-2582d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","duration":"PT8.085962S","parameters":{"name":{"value":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:27.947971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:27.947971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionxgidi443gs7bsju","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionxgidi443gs7bsju"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-53-16-ac27a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","duration":"PT9.1791963S","parameters":{"name":{"value":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:15.3432029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:15.3432029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionoim424rwyat4pwz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionoim424rwyat4pwz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-55-32-72c5c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","duration":"PT11.6937557S","parameters":{"name":{"value":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:31.1604426Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:31.1604426Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionmwtu6gya3efz7ei","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionmwtu6gya3efz7ei"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-23-14-29-46-343d9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT20.9428413S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T14:29:45.8083108Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T14:29:45.8083108Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioneyvesfasnb47vyl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioneyvesfasnb47vyl"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.3819009S","parameters":{"name":{"value":"deleteall"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_3/snapshots/2022-09-23-15-30-01-c5b29'' + for more details. Correlation id: ''614d86e2-5120-4d85-a67d-c70f9fed1a4a''","details":[{"code":"LocationNotAvailableForResourceType","message":"The + provided location ''WestUS2'' is not available for resource type ''Microsoft.Storage/storageAccounts''. + List of available regions for the resource type is ''westus,northcentralus''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:27:17.8584378Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:30:01.1602379Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.0477532S","parameters":{"name":{"value":"deleteall"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_4/snapshots/2022-09-23-15-31-02-0a73b'' + for more details. Correlation id: ''83a96118-0887-45dd-8b72-5163f9f71249''","details":[{"code":"LocationNotAvailableForResourceType","message":"The + provided location ''WestUS2'' is not available for resource type ''Microsoft.Storage/storageAccounts''. + List of available regions for the resource type is ''westus,northcentralus''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:31:01.1416964Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:31:01.1416964Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_4"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.7912441S","parameters":{"name":{"value":"deleteall"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_5/snapshots/2022-09-23-15-32-16-563db'' + for more details. Correlation id: ''87e972c5-2495-487a-b3f9-a9f593db1286''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts/eninevrndijga'' + at line ''37'' and column ''13'' doesn''t depend on parent resource ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/resourceGroups/deleteall''. + Please add dependency explicitly using the ''dependsOn'' syntax. Please see + https://aka.ms/arm-template/#resources for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":37,"linePosition":13,"path":"properties.template.resources[0].resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:32:15.128266Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:32:15.128266Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_5"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.8943491S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_7/snapshots/2022-09-23-15-35-01-2ed1f'' + for more details. Correlation id: ''015350a9-8b6c-4381-804f-8a32cfbfd413''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''eninevrndijga'' at line + ''37'' and column ''13'' is not valid: Unable to parse language expression + ''resourceId(''Microsoft.Resources/resourceGroups'', [parameters(''name'')])'': + expected token ''Identifier'' and actual ''LeftSquareBracket''.. Please see + https://aka.ms/arm-template-expressions for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":37,"linePosition":13,"path":"properties.template.resources[0].resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:35:01.0066347Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:35:01.0066347Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_7","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_7"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.9477734S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_8/snapshots/2022-09-23-15-36-16-e2688'' + for more details. Correlation id: ''3ce67eef-85da-4ccc-83bc-b3622e65fa4c''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''eninevrndijga'' at line + ''37'' and column ''13'' is not valid: Unable to parse language expression + ''resourceId(''Microsoft.Resources/resourceGroups'', [parameters(''name'')]))'': + expected token ''Identifier'' and actual ''LeftSquareBracket''.. Please see + https://aka.ms/arm-template-expressions for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":37,"linePosition":13,"path":"properties.template.resources[0].resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:36:15.3298933Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:36:15.3298933Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_8","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_8"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg_9-2022-09-23-15-54-16-fb8a5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT2H18M57.7724546S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9/snapshots/2022-09-23-15-54-16-fb8a5'' + for more details. Correlation id: ''599c7fa6-ce79-4c13-95e1-184261b2236b''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceDeploymentFailure","message":"The + resource provision operation did not complete within the allowed timeout period."},{"message":"No + HTTP resource was found that matches the request URI ''https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/delete_all_rg?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:37:47.4052402Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:54:15.6351745Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_9"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedSubStack23-2022-10-03-21-53-51-75f93","duration":"PT24.0446749S","parameters":{"specVersionName":{"value":"V2"},"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-03T15:34:07.8286194Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-03T21:53:51.2117933Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedSubStack23","type":"Microsoft.Resources/deploymentStacks","name":"dantedSubStack23"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check-2022-10-12-18-07-27-4c9ae","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT11.4765991S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-06T15:30:30.9903848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T18:07:27.3697786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check","type":"Microsoft.Resources/deploymentStacks","name":"check"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/temp-2022-10-06-15-30-48-73c1f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.0257586S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-06T15:30:47.4274263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-06T15:30:47.4274263Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/temp","type":"Microsoft.Resources/deploymentStacks","name":"temp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack2-2022-11-17-02-42-35-fa0fa","duration":"PT13M49.1696423S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"},"specVersionName":{"value":"V2"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"}],"deletedResources":[],"failedResources":[{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The + client ''danted@microsoft.com'' with object id ''5d175732-fcca-47ea-b831-c6012c843923'' + has permission to perform action ''Microsoft.Resources/templateSpecs/delete'' + on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec''; however, the access is denied because of the deny assignment with name ''Deny - assignment ''956788b5-e25c-cee3-1192-252580cd6937'' created by Deployment - Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_4''.'' - and Id ''956788b5e25ccee31192252580cd6937'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The - client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' - has permission to perform action ''Providers.Test/statefulResources/delete'' - on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7''; + assignment ''8cfe55d8-1eda-1efe-8cc6-85c0f0970dab'' created by Deployment + Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack1''.'' + and Id ''8cfe55d81eda1efe8cc685c0f0970dab'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The + client ''danted@microsoft.com'' with object id ''5d175732-fcca-47ea-b831-c6012c843923'' + has permission to perform action ''Microsoft.Resources/templateSpecs/versions/delete'' + on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2''; however, the access is denied because of the deny assignment with name ''Deny - assignment ''458d9276-e99d-d46f-9fee-924b27d058df'' created by Deployment - Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_2''.'' - and Id ''458d9276e99dd46f9fee924b27d058df'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"error":{"code":"DeploymentStackDeleteFailed","message":"One - or more stages of deploymentStack deletion failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3/snapshots/2022-11-03-16-38-14-c6537'' - for more details. Correlation id: ''6c457a1b-e929-42f0-b299-0e408917a60a''","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"One - or more resources could not be deleted. Refer to failed resources of snapshot - ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3/snapshots/2022-11-03-16-38-14-c6537'' - for more details.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An + assignment ''f406f1a4-6d46-fe81-93cd-9240a086b669'' created by Deployment + Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack1''.'' + and Id ''f406f1a46d46fe8193cd9240a086b669'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"error":{"code":"DeploymentStackDeleteFailed","message":"One + or more stages of deploymentStack deletion failed. Correlation id: ''cbcfe71b-d246-4cd0-a555-1685a4efd13e''","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"One + or more resources could not be deleted.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An unknown error occurred while trying to delete resources. These resources are - still present in the stack but can be deleted manually."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:35:40.6964229Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:35:40.6964229Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_4-2022-11-03-16-40-35-fc335","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT11.762819S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:40:33.0681835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:40:33.0681835Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_5-2022-11-03-16-46-01-2e0fd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.6762159S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedPrincipals":["7c1752e8-668a-4aed-9405-20d1e9daf1e6"]},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:41:34.2429594Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:45:59.9578596Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_10-2022-11-07-23-01-46-cbb0c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6M55.4791159S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T22:49:55.0248823Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:01:45.7935127Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_10","type":"Microsoft.Resources/deploymentStacks","name":"misc_10"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_11-2022-11-07-23-02-00-6b52e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT1M45.9466554S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_11/snapshots/2022-11-07-23-02-00-6b52e'' - for more details. Correlation id: ''879b19c3-e361-4385-978d-102b2919439a''","details":[{"code":"DeploymentFailed","message":"Could - not deploy the specified template successfully. DeploymentId ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_11-2022-11-07-23-02-00-6b52e'' - was canceled."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:01:57.5407868Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:01:57.5407868Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_11","type":"Microsoft.Resources/deploymentStacks","name":"misc_11"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_12-2022-11-07-23-13-07-c2f39","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.788458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsa12"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:13:04.0313262Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:13:04.0313262Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_12","type":"Microsoft.Resources/deploymentStacks","name":"misc_12"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_13-2022-11-07-23-14-35-b6848","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.1095473S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsa12"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:32.7471811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:32.7471811Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_13","type":"Microsoft.Resources/deploymentStacks","name":"misc_13"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_14-2022-11-07-23-17-03-0d0de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT5.5337977S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:16:04.2198436Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:17:02.4614826Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_14","type":"Microsoft.Resources/deploymentStacks","name":"misc_14"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_15-2022-11-07-23-23-41-7813e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT33.118398S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsaya4ieas2hwqse"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:23:38.1823385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:23:38.1823385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_15","type":"Microsoft.Resources/deploymentStacks","name":"misc_15"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT4.4528846S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_16/snapshots/2022-11-07-23-26-30-f4b8e'' - for more details. Correlation id: ''cbb0a607-9c93-4f1b-8a39-839d80389078''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The resource ''Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse'' - at line ''40'' and column ''9'' is defined multiple times in a template. Please - see https://aka.ms/arm-template/#resources for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":40,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:26:27.1893369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:26:27.1893369Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_16","type":"Microsoft.Resources/deploymentStacks","name":"misc_16"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_17-2022-11-14-21-57-48-ae42a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6.4730847S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:28:18.0835118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T21:57:46.7942297Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_17","type":"Microsoft.Resources/deploymentStacks","name":"misc_17"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStack-2022-11-17-23-11-44-6dde9","duration":"PT10.5007301S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-14T21:11:15.4433745Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T23:11:41.3794663Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStack"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check1-2022-11-18-17-15-29-d2382","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.8619026S","denySettings":{"mode":"none","applyToChildScopes":true},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-14T22:09:29.4800338Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:15:25.6900711Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check1","type":"Microsoft.Resources/deploymentStacks","name":"check1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-11-18-17-42-58-e1c21","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.1891742S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T17:42:54.9836572Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T17:42:54.9836572Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"}]}' + still present in the stack but can be deleted manually."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:14:32.3597463Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T02:42:35.658271Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack2","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check1-2022-10-21-16-12-47-5aa65","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.9640536S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-21T16:10:19.7569856Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-21T16:12:47.7991398Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check1","type":"Microsoft.Resources/deploymentStacks","name":"check1"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.Resources/deployments/rjwKitchenSink-2022-10-28-19-29-32-259ae","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","duration":"PT1M35.287478S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"InvalidCreateOrUpdateDenyAssignmentRequest","message":"The + specified deny assignment ConditionVersion ''2.0'' is not supported"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwKitchenSink/snapshots/2022-10-28-19-29-32-259ae'' + for more details. Correlation id: ''f9bcb291-1f4b-4dc3-882e-bc44157ccc0e''"}},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:08:06.2118901Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:29:32.4315845Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwKitchenSink","type":"Microsoft.Resources/deploymentStacks","name":"rjwKitchenSink"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","duration":"PT2.9082187S","denySettings":{"mode":"denyWriteAndDelete","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyWriteAndDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwDenyAllTest/snapshots/2022-11-03-21-16-23-8b5d2'' + for more details. Correlation id: ''a994822a-6b4b-4236-97f1-611f4cdf3cf3''","details":[{"code":"InvalidTemplateDeployment","message":"The + template deployment failed with error: ''Deny assignment check failed for + template resource ''statefulResource'' of type ''Providers.Test/StatefulResources''. + The client ''rwilke@microsoft.com'' with object id ''45edf20d-af28-4a3a-9a80-12016d6ef590'' + has the permission to perform action ''Providers.Test/StatefulResources/write'' + at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource'' + but is blocked by deny assignment.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-11-03T20:46:34.1399826Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T21:16:23.6968551Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwDenyAllTest","type":"Microsoft.Resources/deploymentStacks","name":"rjwDenyAllTest"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack4-2022-11-07-23-43-33-fe43e","duration":"PT3M50.188348S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{"specVersionName":{"value":"V2"},"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:43:32.9040621Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:43:32.9040621Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack4","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack4"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack1-2022-11-17-02-41-21-15531","duration":"PT50.4578436S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"},"specVersionName":{"value":"V2"}},"resources":[{"status":"managed","denyStatus":"notSupported","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:25.9019178Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T02:41:19.7248514Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack1","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack1"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack-2023-01-04-21-06-54-5e7e8","duration":"PT37.6513712S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specVersionName":{"value":"V2"},"location":{"value":"westus"},"templateSpecName":{"value":"ABetterSpec"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2023-01-04T21:06:54.2114103Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-04T21:06:54.2114103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStackTest-2023-01-04-22-54-10-ce4e5","duration":"PT49.0292039S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specVersionName":{"value":"V2"},"location":{"value":"westus"},"templateSpecName":{"value":"ABetterSpec"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2023-01-04T22:54:10.448512Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-04T22:54:10.448512Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStackTest","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStackTest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-01-09-17-56-39-46c4e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.2615051S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:56:39.0894117Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:56:39.0894117Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"}]}' headers: cache-control: - no-cache content-length: - - '112537' + - '110360' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:43:24 GMT + - Mon, 09 Jan 2023 17:56:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-original-request-ids: - - f265715d-41e9-4f85-bd38-d4c18fdb5547 + - b0b53e24-2f2f-409a-91cb-22d9d5a8e889 + - 2c5a0f25-67af-4602-87b6-bc891ed7b0a8 + x-msedge-ref: + - 'Ref A: 4C56117982FD4994857BB469D642E056 Ref B: BL2AA2030105051 Ref C: 2023-01-09T17:56:57Z' status: code: 200 message: OK @@ -1069,18 +458,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-11-18-17-42-58-e1c21\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-01-09-17-56-39-46c4e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.1891742S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.2615051S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1090,9 +478,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:42:54.9836572Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:56:39.0894117Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:42:54.9836572Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:56:39.0894117Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: @@ -1103,21 +491,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:43:29 GMT + - Mon, 09 Jan 2023 17:56:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4401E9E94B5646CAB1E96D1C45E9E90E Ref B: BL2AA2030107029 Ref C: 2023-01-09T17:56:59Z' status: code: 200 message: OK @@ -1137,10 +523,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1150,19 +535,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:43:30 GMT + - Mon, 09 Jan 2023 17:57:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: 72E85111A0824BE7A31D58BF56466915 Ref B: BL2AA2030107029 Ref C: 2023-01-09T17:56:59Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml index b7ad4cba3a2..b74856273b1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml @@ -1,73 +1,4 @@ interactions: -- request: - body: client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&grant_type=refresh_token&client_info=1&claims=%7B%22access_token%22%3A+%7B%22xms_cc%22%3A+%7B%22values%22%3A+%5B%22CP1%22%5D%7D%7D%7D&refresh_token=0.AAAAJtSG9haN20KBt6tXjhEMzZV3sATbjRpGu-4C-eG_e0YBAG0.1.AgABAAEAAABYrKuFWqWSRpp9FiMCi-70AwDs_wQA7_9FH_9gP4Dntz25CSea8jWTJoVkpYc5PS-qw84d6B1LANWRapxuvoUSLKw3AcPGS_rXNel4XFhTVlDoG8wvUdjlsr7cs-SoVPIoPu476skuYHBb2tZUYH-s5uFfi67KaMdARr_uYKvdOJZN2mykVSbX-F2V5wCaqd9H1GvcUP7OS68Tx-kkruC0J4Up_CBm7CPRiYCMXGSwWwZj9tuaI-u3P4I3vu-BYRmOi5-doBZ232c7ydfqJOaLP9vztV8ah_MiarL18iixZE9LWL5Ajvw1TJWR5nlf7JQh3T2ZAAfCHsC-g0S2LqmxrzFPv4vcLQ9XxVKrPq1iZiRwA2bbI5vz_XamVcMcFfJaOkzQ5RN1J1jF__jDeDFLdYYuEUuFlatz_3BHTSJVj4VyshEAxOMsoLMbTSNp7BsUhXJfQt_Xo0Ix7-JGM33cMNI-Xdn2THS7dqvuTA0sIZ5OEMluXc3mKSqR9ELXyw669BgtKUsPBD9DOT9OXpgvds0lU0TDDouTHCG0tCUZ1b3DabmfgGaHNjZh0RzJPXW0VfMyGbDiIJp5sTMURp-9P6h9r9NLCIFOkP44avbwYhM-Eas2T_arrDW_9c1vOxzw3EZEaOjfm7mGEC3IsfXUZbDnnx9iOig1FPkM61qJIeq3ZFHSXfsjVGeaD3P15CXeYCPVAXu0oDR8SOtmRnEy61_G5Rl22VdTeye9edX6Kn6dP1GRr_jN8ZZRDMB7E1A07a3vgJ0yG9s20ZFitGEBsBizPVgdrbLyvuHLdkmOy5A9qWRxX9TCi-zHby8uQm8rPeK4trt_ls4FGJtUH2SnFzjPnNnW1pstymIVWL0Kxf5CelivkkpziwMHZtbz_oSFRZNA7KzFC1e0e5wSPmKCEmKQVe8sRPRgjDfCOUNKXXPnkbxnQX09BhNbB5Ez5auntudTdi95ji83v1s1Qcws9jfhv-mHiCm8A-gvLRA6bmV4u7JgLcgAqwN8.AQABAAEAAABYrKuFWqWSRpp9FiMCi-70v1Q9HCErSwlQz0-xKNaoEo5aQ1rlJz_QMo1Y5w3P0s8Ls1jIkHxzReg1u9sdUB919W0q5e0V8aOac9Btekwj-CQwBdLcelRixVRpvhCkx8s4annV6sdddHUkeswkAlTCDEPWbQxEN8RDSSTsVgCjSg6Lm1BqevmUVZQQ918lboYJjH6YGcxOXmwnb7pyHeUnJVDXp5N01zgiwQQQfBdb9qWJSP9btHRNFX5AUOETMfsgAA&scope=https%3A%2F%2Fmanagement.core.windows.net%2F%2F.default+offline_access+openid+profile - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1642' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.26.0 - X-AnchorMailbox: - - Oid:96ab7641-f037-41c4-be1a-b79ce2c21798@f686d426-8d16-42db-81b7-ab578e110ccd - x-client-cpu: - - x64 - x-client-current-telemetry: - - 4|84,3| - x-client-last-telemetry: - - 4|0||| - x-client-os: - - win32 - x-client-sku: - - MSAL.Python - x-client-ver: - - 1.18.0b1 - x-ms-lib-capability: - - retry-after, h429 - method: POST - uri: https://login.windows-ppe.net/f686d426-8d16-42db-81b7-ab578e110ccd/oauth2/v2.0/token - response: - body: - string: '{"token_type":"Bearer","scope":"https://management.core.windows.net//user_impersonation - https://management.core.windows.net//.default","expires_in":86400,"ext_expires_in":86400,"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSIsImtpZCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvZjY4NmQ0MjYtOGQxNi00MmRiLTgxYjctYWI1NzhlMTEwY2NkLyIsImlhdCI6MTY2NDk5MzAzMiwibmJmIjoxNjY0OTkzMDMyLCJleHAiOjE2NjUwNzk3MzMsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLnBwZS53aW5kb3dzLm5ldC9mNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QvdXNlcnMvOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4L2dldE1lbWJlck9iamVjdHMifX0sImFjciI6IjEiLCJhaW8iOiJBVlFBcS84V0FBQUFVY2NaVCszaFdrbzRFbDlIMUI2cDhOSVFITFdESnc3c2ZJYzM0Nzh2U0gvbjBhbGxrNkpLaWFQa0dhLzBDODRJSDdzOE9lMStxUkRCS0J3SXd2U3MrT245QmVQYm5DcW0yTkNuTHhSL2ZUQT0iLCJhbXIiOlsid2lhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZmFtaWx5X25hbWUiOiJQYXRlbCIsImdpdmVuX25hbWUiOiJIYXJzaCIsImlwYWRkciI6IjEzNi42MC4xNjEuMjAzIiwibmFtZSI6IkhhcnNoIFBhdGVsIiwib2lkIjoiOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4Iiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTEyNDUyNTA5NS03MDgyNTk2MzctMTU0MzExOTAyMS0yMDQ5MTcwIiwicHVpZCI6IjEwMDNERkZEMDA2NTBBQUQiLCJyaCI6IjAuQUFBQUp0U0c5aGFOMjBLQnQ2dFhqaEVNelVaSWYza0F1dGRQdWtQYXdmajJNQk1CQUcwLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IlExQ3pfeDNDMW5SRFBWclNCWHkteE9DOTBNQnJsOWlKdThMdm1aNkZnc0kiLCJ0aWQiOiJmNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QiLCJ1bmlxdWVfbmFtZSI6ImhhcnNocGF0ZWxAbWljcm9zb2Z0LmNvbSIsInVwbiI6ImhhcnNocGF0ZWxAbWljcm9zb2Z0LmNvbSIsInV0aSI6IjY4UHM1aWotTkVhQWVGcVhYdW9MQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfY2MiOlsiQ1AxIl0sInhtc19zc20iOiIxIiwieG1zX3RjZHQiOjEyODQ2OTA2OTN9.hJYuoMs65iCRIv98t_vdVF_0f66DLei6E_WzitsYyW3AEH8X_uAawR6Q13i_RkedsYM7TsFtn1wKsU5WcVAPU6r9W4AkE0lNXM13zcL6WEMVtLUhl_7ZRedm6BWuC_8f3r3z9V7VHGBUMOP3mtP8m03-tGSieYnM3xBl-6xEV-akuCiBfP-NX4ydC2dz5KQiut4rF7CCZCdFk6kocmm6SAedp8DRZGDMp5yFsWnoAhNqOxCdcAQrCNHF_YnnRb4xevnxPuARJs_8GcdT3kWs840lbKSSxgnwI7ag_F-0LHVT1_zHm-FF3kJty0VGjX_G-fFa8_F5A5C9b6JKuCSyCg","refresh_token":"0.AAAAJtSG9haN20KBt6tXjhEMzZV3sATbjRpGu-4C-eG_e0YBAG0.1.AgABAAEAAABYrKuFWqWSRpp9FiMCi-70AwDs_wQA7_95Ak9F-mJrL9LN0heVilgeNoYgxSn5062yuW7gxOnjkNJlUMpc663vOYQybhMmoiO9_id_1IyjbsukUnLibBO-WCc0CqAYOrFTgW9YAxecsbn0RR-DGCpQacvEt2BrkW16TuotfknmRL6AKg3OYEpi59NVrIjkIeSoWptJ5eubS_GbQRRud5_0ndv2O47Q2VS1EDNVEi2QAHnnvuz1EaCzbeXhCGpdH2lLgB0HyiwuiVUPSwIKdsZMvAeaOL4XCU91aLGCgQZUXtK1eN58pvH36ecNemy0q4KNuD0c-Tzj7Khe2c6LX5OxH7_sdf4ddia0_vw9RTQbQH11Vf8vHTp1Z1P8CIEVl3YX8f8PEH_36UpBTR_zQKrRThAkb4UK_zRBmi-91c8LAAYSAyS6W5MBLTTIeolOzbN4HeOpLAoVCrhPwtYA8gLcuf6XRKyIvVQ7J7VRWoq-iIRVVmrNemfgd6odjSin0M5RGjKN-R4koa5PV-Gh_o9c2m9TBC1ojEohw8Zc0pWb5yOLl7sThCjkbs_qqsB7lcw23YBafPKURvbq6GILlq2GdBsBlQZvpW0FG2NSgXSPRDgxFxPNJNzsg5AwdempSY4WL2VhmLEHs1TDxoTRLeEyYHY-IZE1Z3TpfRFjrQ5VC6CBKKmjsS82vV8Qz9s7XrHFaDHZjM1jF81FugXHCzLMKw0tR6XHAFuO_T1vLVRranBgH03z7Tx0SzVMlspL9-noGsmvl-ESon4yNKzuA7PGK_nveDT4vM6CaN20nrs0T7M5sWqtTCdNgXW_lfiQGNGkyyyE-5-CziAnaezgFapUXw7gMs7eH9RDB5MeEMQJBAlO7lRTik45jqHD6c6R0HhhelGKn5mOWEGu2griESgJI2ZNnpOU8EU0bveakZs8-tjrE94VfcVtm42QSIDI0KC1a8HaOAfDjX1U2s1JLl-l0lJ5jnecaAH8XSr8y655oBBS7gPj5iKgMkYopuY.AQABAAEAAABYrKuFWqWSRpp9FiMCi-70LbL7dgsLrSQQR0lBhkNqbSbQH0935hXhFreqWnV-66zvgG6wvqSloKEKEqJKISLaAm8chB6Y0XVyxQFeMdj3QukJb_ipqrI24MTBXjBSmljp3aXcN5U-yLdp6Au3k6kiTmoBfOIKNNncH-t0_LjLTFBIBvaE3UW14ZXe65zEsmQjFKt9s2tB7U5AEkWn8kbOeab7DvjguxvISIK5cTNgH8leytBzTm7OqIA_NnskSFAgAA","foci":"1","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjRTZnZzYnR4MmtVcGNHLXNYTGNQR3FpVUNxWSJ9.eyJhdWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJpc3MiOiJodHRwczovL2xvZ2luLndpbmRvd3MtcHBlLm5ldC9mNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QvdjIuMCIsImlhdCI6MTY2NDk5MzAzMiwibmJmIjoxNjY0OTkzMDMyLCJleHAiOjE2NjQ5OTY5MzIsImFpbyI6IkFXUUFtLzhXQUFBQUpRdkhCRjlNTUdtd1c1a1FkaFJ5NVBCL2ZTQU83d0F6cTFKRVh4S3E1VkVBOWpNQS9KSHd6bG44NWNDb0tPeW5JT2VRTFhKNFBRWVBMY0hyY3hZYjE0TktnaXJlVkN2OTZuTmtpNGtVMThtNFFHZGkrMTg3RXVrUnZzS29Sb1lMIiwibmFtZSI6IkhhcnNoIFBhdGVsIiwibm9uY2UiOiIzZDYxZjc0ZmJiNGU1OTQ5ZTliNDdiOTU4Y2E2MDA5YTFiYzAyNjU1ZGVmMTA2YTAxZmExNmQ0NjJiODljMmZiIiwib2lkIjoiOTZhYjc2NDEtZjAzNy00MWM0LWJlMWEtYjc5Y2UyYzIxNzk4IiwicHJlZmVycmVkX3VzZXJuYW1lIjoiaGFyc2hwYXRlbEBtaWNyb3NvZnQuY29tIiwicHVpZCI6IjEwMDNERkZEMDA2NTBBQUQiLCJyaCI6IjAuQUFBQUp0U0c5aGFOMjBLQnQ2dFhqaEVNelpWM3NBVGJqUnBHdS00Qy1lR19lMFlCQUcwLiIsInN1YiI6ImlPcTZUNmFSMFFfaGlNSWl0UG9PUWR1M1diTWt1NXlSRk5kWXhGYlRtMkEiLCJ0aWQiOiJmNjg2ZDQyNi04ZDE2LTQyZGItODFiNy1hYjU3OGUxMTBjY2QiLCJ1dGkiOiI2OFBzNWlqLU5FYUFlRnFYWHVvTEFBIiwidmVyIjoiMi4wIn0.TwBQbcGmH4eYY2FR62-K5G_agtTw5ujVGS99j8IDVMTg4vtDmrX87FhpLO1bNvVYA0mlHuaI2A8_BJR9UUVVsdxBvekzqw1lhqqYTMjyXmA0vBYTcxvaU8Y8giAi2pAdoo6RYkVHM-3ry_fuOaQrLAeokMxGFhZiD4PCQELqjhCLA0yDgBdbEBgq0r8k93Y4XJZwNvj5yiapPsqwnPDNCjGU1z29KYoPDI0a4eRivt9X7r0t7U241Uqi-iFr6qFuEMxtkJ55LIZ8rTtSFTHSfkVSLBPEIOToKLHdWcTkViXcRGyPugl_zJG1KEPfDM7IjpK9n5QlApbQkeEEv2nuFg","client_info":"eyJ1aWQiOiI5NmFiNzY0MS1mMDM3LTQxYzQtYmUxYS1iNzljZTJjMjE3OTgiLCJ1dGlkIjoiZjY4NmQ0MjYtOGQxNi00MmRiLTgxYjctYWI1NzhlMTEwY2NkIn0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '5260' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 05 Oct 2022 18:08:53 GMT - expires: - - '-1' - p3p: - - CP="DSP CUR OTPi IND OTRi ONL FIN" - pragma: - - no-cache - set-cookie: - - fpc=Alx5cb2ife9EmphePURbLdzUCHkbAQAAADS_z9oOAAAA; expires=Fri, 04-Nov-2022 - 18:08:53 GMT; path=/; secure; HttpOnly; SameSite=None - - stsservicecookie=estsppe; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-clitelem: - - 1,0,0,86104202.9383, - x-ms-ests-server: - - 2.1.13984.0 - CHY PPE - x-xss-protection: - - '0' - status: - code: 200 - message: OK - request: body: null headers: @@ -82,8 +13,7 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -98,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:08:53 GMT + - Mon, 09 Jan 2023 20:22:03 GMT expires: - '-1' pragma: @@ -112,7 +42,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 6ED5FBE45CDF4D06BE25980468A274F6 Ref B: BL2AA2030109007 Ref C: 2022-10-05T18:08:54Z' + - 'Ref A: EDD9BFB29EC440F4AC0DD249DFCB51FF Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:02Z' status: code: 404 message: Not Found @@ -124,7 +54,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": - "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -135,14 +66,13 @@ interactions: Connection: - keep-alive Content-Length: - - '727' + - '774' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -150,26 +80,27 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {},\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T18:08:55.7645098Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T18:08:55.7645098Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-01-09T20:22:04.0819575Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a6f07b37-d291-4ef2-9195-b667a23096aa?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/82e1e33f-1198-4453-aed5-1037ba65d5e4?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1019' + - '1108' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:08:57 GMT + - Mon, 09 Jan 2023 20:22:06 GMT expires: - '-1' pragma: @@ -181,9 +112,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: 29A1E7766E6C48D9835BAE4B328CD043 Ref B: BL2AA2030109007 Ref C: 2022-10-05T18:08:54Z' + - 'Ref A: 03E4ED09929249808A36E6D98D575C35 Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:03Z' status: code: 201 message: Created @@ -201,14 +132,13 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a6f07b37-d291-4ef2-9195-b667a23096aa?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/82e1e33f-1198-4453-aed5-1037ba65d5e4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a6f07b37-d291-4ef2-9195-b667a23096aa\",\r\n - \ \"name\": \"a6f07b37-d291-4ef2-9195-b667a23096aa\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/82e1e33f-1198-4453-aed5-1037ba65d5e4\",\r\n + \ \"name\": \"82e1e33f-1198-4453-aed5-1037ba65d5e4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -217,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:09:14 GMT + - Mon, 09 Jan 2023 20:22:24 GMT expires: - '-1' pragma: @@ -229,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FCBEEF8A6BE542E8B43EEE6BEFE08629 Ref B: BL2AA2030109007 Ref C: 2022-10-05T18:09:15Z' + - 'Ref A: DB39DCD4D7714082BA32461490922C6C Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:23Z' status: code: 200 message: OK @@ -247,39 +177,38 @@ interactions: ParameterSetName: - --name --management-group-id --location --template-file User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-18-08-56-dca8a\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-18-08-56-dca8a\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4479372S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"bar\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n - \ \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n - \ \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-10-05T18:08:55.7645098Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-10-05T18:08:55.7645098Z\"\r\n },\r\n \"id\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '1501' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:09:15 GMT + - Mon, 09 Jan 2023 20:22:24 GMT expires: - '-1' pragma: @@ -291,7 +220,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A8EADEB9677B4AC0AB6C234354240D9A Ref B: BL2AA2030109007 Ref C: 2022-10-05T18:09:15Z' + - 'Ref A: AFF4BC971A1D451AADDE5D5B013FC0B4 Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:24Z' status: code: 200 message: OK @@ -309,39 +238,38 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-18-08-56-dca8a\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-18-08-56-dca8a\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4479372S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"bar\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n - \ \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n - \ \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-10-05T18:08:55.7645098Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-10-05T18:08:55.7645098Z\"\r\n },\r\n \"id\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '1501' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:09:17 GMT + - Mon, 09 Jan 2023 20:22:25 GMT expires: - '-1' pragma: @@ -353,7 +281,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 9169C85C36914F4EB8ECD09FCF6C1C88 Ref B: BL2AA2030105037 Ref C: 2022-10-05T18:09:17Z' + - 'Ref A: 2246A525F8F7471EB91F05DB128A12E5 Ref B: BL2AA2030109017 Ref C: 2023-01-09T20:22:24Z' status: code: 200 message: OK @@ -371,39 +299,38 @@ interactions: ParameterSetName: - --id --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-18-08-56-dca8a\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-18-08-56-dca8a\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4479372S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"bar\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n - \ \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n - \ \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-10-05T18:08:55.7645098Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-10-05T18:08:55.7645098Z\"\r\n },\r\n \"id\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '1501' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:09:18 GMT + - Mon, 09 Jan 2023 20:22:26 GMT expires: - '-1' pragma: @@ -415,7 +342,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B62E045CDC414F6DA831DA8683CC4657 Ref B: BL2AA2030110051 Ref C: 2022-10-05T18:09:17Z' + - 'Ref A: 149ECE6793DC4ABAAC0B0089977F42A4 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:22:25Z' status: code: 200 message: OK @@ -433,39 +360,38 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/snapshots/2022-10-05-18-08-56-dca8a\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-18-08-56-dca8a\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.4479372S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"bar\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n - \ \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n - \ \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2022-10-05T18:08:55.7645098Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2022-10-05T18:08:55.7645098Z\"\r\n },\r\n \"id\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '1501' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 18:09:18 GMT + - Mon, 09 Jan 2023 20:22:26 GMT expires: - '-1' pragma: @@ -477,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3D730FEACBE74C01A90F5DB2FF78A3A6 Ref B: BL2AA2030108049 Ref C: 2022-10-05T18:09:18Z' + - 'Ref A: C1C8A32A1E744EC7B64CA53BD111E447 Ref B: BL2AA2030109021 Ref C: 2023-01-09T20:22:26Z' status: code: 200 message: OK @@ -497,8 +423,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -510,7 +435,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 18:09:19 GMT + - Mon, 09 Jan 2023 20:22:27 GMT expires: - '-1' pragma: @@ -522,9 +447,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14999' + - '14998' x-msedge-ref: - - 'Ref A: 9C77883E97674181BCE27BF6D66EBA5C Ref B: BL2AA2030108049 Ref C: 2022-10-05T18:09:19Z' + - 'Ref A: AC573EE6AAFC415B83773858DF31C9C7 Ref B: BL2AA2030109021 Ref C: 2023-01-09T20:22:27Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index 6f26dde81d3..75d03a4828b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -30,17 +29,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:53:41 GMT + - Mon, 09 Jan 2023 19:44:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D1393E2054CC408489EECECC33B1FB5D Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:44:50Z' status: code: 404 message: Not Found @@ -70,10 +71,9 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,34 +85,36 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53447571-c087-40b4-8198-de9eb87d34bf?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/94250f8e-2933-41f0-bd8d-b5a8f54417d2?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1150' + - '1148' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:53:41 GMT + - Mon, 09 Jan 2023 19:44:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: 255026FC3F384C6DA5809BE6FE4DD558 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:44:51Z' status: code: 201 message: Created @@ -130,37 +132,34 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53447571-c087-40b4-8198-de9eb87d34bf?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/94250f8e-2933-41f0-bd8d-b5a8f54417d2?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/53447571-c087-40b4-8198-de9eb87d34bf\",\r\n - \ \"name\": \"53447571-c087-40b4-8198-de9eb87d34bf\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/94250f8e-2933-41f0-bd8d-b5a8f54417d2\",\r\n + \ \"name\": \"94250f8e-2933-41f0-bd8d-b5a8f54417d2\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:53:59 GMT + - Mon, 09 Jan 2023 19:45:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 392E86C05F3245BE847630BBB99F4BA8 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:45:09Z' status: code: 200 message: OK @@ -178,16 +177,15 @@ interactions: ParameterSetName: - --name --resource-group --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n - \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n + \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -197,34 +195,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1588' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:53:59 GMT + - Mon, 09 Jan 2023 19:45:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A76C256348AC45ABAB63FAB9350612A2 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:45:10Z' status: code: 200 message: OK @@ -242,16 +238,15 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n - \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n + \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -261,34 +256,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1588' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:54:01 GMT + - Mon, 09 Jan 2023 19:45:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 67A7AEE691544D1A950C8F62DDA4D4F7 Ref B: BL2AA2030105023 Ref C: 2023-01-09T19:45:10Z' status: code: 200 message: OK @@ -306,16 +299,15 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n - \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n + \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -325,34 +317,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1588' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:54:01 GMT + - Mon, 09 Jan 2023 19:45:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 60F60C9615D54C27B16776059960DC85 Ref B: BL2AA2030109029 Ref C: 2023-01-09T19:45:11Z' status: code: 200 message: OK @@ -370,16 +360,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2022-11-18-18-53-42-ffb2c\",\r\n - \ \"duration\": \"PT5.2307385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n + \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -389,34 +378,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T18:53:42.2394409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T18:53:42.2394409Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1590' + - '1588' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 18:54:02 GMT + - Mon, 09 Jan 2023 19:45:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 927CC171C27A46A089E27DF1372008A7 Ref B: BL2AA2030108053 Ref C: 2023-01-09T19:45:12Z' status: code: 200 message: OK @@ -436,10 +423,9 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -449,19 +435,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 18:54:03 GMT + - Mon, 09 Jan 2023 19:45:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: 5F7AE9B424764ECFB876A695A0001EF5 Ref B: BL2AA2030108053 Ref C: 2023-01-09T19:45:13Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index 22dc47b13ad..d10bc042abc 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -29,17 +28,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:36:47 GMT + - Mon, 09 Jan 2023 17:55: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-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 87928FBE338F465785DE35A950665CDB Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:38Z' status: code: 404 message: Not Found @@ -69,10 +72,9 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -86,13 +88,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-11-18T17:36:48.6960486Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n + \"2023-01-09T17:55:39.0390046Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8d25179-9fe0-41d0-9ac9-032bee425ce8?api-version=2022-08-01-preview + - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/10a4e571-01f5-4edd-8255-2fa6d6d13311?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,19 +102,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:36:52 GMT + - Mon, 09 Jan 2023 17:55:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' + x-msedge-ref: + - 'Ref A: BF349B7CB3E1425B84EF8F5338FC39AE Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:38Z' status: code: 201 message: Created @@ -130,37 +134,34 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8d25179-9fe0-41d0-9ac9-032bee425ce8?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/10a4e571-01f5-4edd-8255-2fa6d6d13311?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8d25179-9fe0-41d0-9ac9-032bee425ce8\",\r\n - \ \"name\": \"f8d25179-9fe0-41d0-9ac9-032bee425ce8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/10a4e571-01f5-4edd-8255-2fa6d6d13311\",\r\n + \ \"name\": \"10a4e571-01f5-4edd-8255-2fa6d6d13311\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '266' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:37:09 GMT + - Mon, 09 Jan 2023 17:55:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0455E7060DD44CA48B62010770470D85 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:56Z' status: code: 200 message: OK @@ -178,18 +179,17 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,34 +199,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1594' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:37:09 GMT + - Mon, 09 Jan 2023 17:55:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ED32A3CE09034224A4CF76181075BF47 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:56Z' status: code: 200 message: OK @@ -244,18 +242,17 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -265,34 +262,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1594' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:37:11 GMT + - Mon, 09 Jan 2023 17:55:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5D12EE610906446984ACAC9258DC1FD2 Ref B: BL2AA2030108039 Ref C: 2023-01-09T17:55:57Z' status: code: 200 message: OK @@ -310,18 +305,17 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -331,34 +325,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1594' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:37:14 GMT + - Mon, 09 Jan 2023 17:55:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 57BF82CAC2E241999F9BBC64952B3000 Ref B: BL2AA2030109051 Ref C: 2023-01-09T17:55:58Z' status: code: 200 message: OK @@ -376,18 +368,17 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-17-36-51-504fe\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.6980625S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -397,34 +388,32 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-11-18T17:36:48.6960486Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-11-18T17:36:48.6960486Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1594' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Nov 2022 17:37:16 GMT + - Mon, 09 Jan 2023 17:56:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ABDD1E475BB34E7B95F53617D562ACE4 Ref B: BL2AA2030109023 Ref C: 2023-01-09T17:55:59Z' status: code: 200 message: OK @@ -444,10 +433,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -457,19 +445,21 @@ interactions: content-length: - '0' date: - - Fri, 18 Nov 2022 17:37:17 GMT + - Mon, 09 Jan 2023 17:56:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: A04752489A774433AC6FE08AFA33962D Ref B: BL2AA2030109023 Ref C: 2023-01-09T17:56:00Z' status: code: 200 message: OK From 3c87e6f1a3b949ea5a83670e7207029df862dfe5 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 11 Jan 2023 15:03:18 -0500 Subject: [PATCH 081/139] Removed update-behavior from help, 1.8 --- .../cli/command_modules/resource/_help.py | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index cf64904ff15..b5c3d73bf31 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.7) +short-summary: (Version 1.8) """ helps['stack mg create'] = """ @@ -2787,12 +2787,12 @@ examples: - name: Create a deployment stack using template file. text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus2" --description "description" - - name: Create a deployment stack with parameter file. - text: az stack mg create --name "StackName" --management-group-id myMg --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - - name: Create a deployment stack with template spec - text: az stack mg create --name "StackName" --management-group-id myMg --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - - name: Create a deployment stack using bicep file. - text: az stack mg create --name "StackName" --management-group-id myMg --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" + - name: Create a deployment stack with parameter file and purge resources. + text: az stack mg create --name "StackName" --management-group-id myMg --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" + - name: Create a deployment stack with template spec and purge resource groups + text: az stack mg create --name "StackName" --management-group-id myMg --delete-resource-groups --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + - name: Create a deployment stack using bicep file and purge all resources. + text: az stack mg create --name "StackName" --management-group-id myMg --delete-all --template-file simple.bicep --location "westus2" --description "description" - name: Create a deployment stack using parameters from key/value pairs text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. @@ -2847,14 +2847,14 @@ examples: - name: Create a deployment stack using template file. text: az stack sub create --name "StackName" c --template-file simpleTemplate.json --location "westus2" --description "description" - - name: Create a deployment stack with parameter file. - text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - - name: Create a deployment stack with template spec - text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - - name: Create a deployment stack using bicep file. - text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simple.bicep --location "westus2" --description "description" + - name: Create a deployment stack with parameter file and purge resources. + text: az stack sub create --name "StackName" --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" + - name: Create a deployment stack with template spec and purge resource groups + text: az stack sub create --name "StackName" --delete-resource-groups --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + - name: Create a deployment stack using bicep file and purge all resources. + text: az stack sub create --name "StackName" --delete-all --template-file simple.bicep --location "westus2" --description "description" - name: Create a deployment stack at a different subscription. - text: az stack sub create --name "StackName" --update-behavior "detachResources" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" + text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" - name: Create a deployment stack and deploy at the resource group scope. text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --resource-group "ResourceGroup" --description "description" - name: Create a deployment stack using parameters from key/value pairs @@ -2909,16 +2909,16 @@ type: command short-summary: Create a deployment stack at resource group scope examples: - - name: Create a deployment stack using template file. - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description" - - name: Create a deployment stack with parameter file. - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" - - name: Create a deployment stack with template spec - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-spec "TemplateSpecResourceIDWithVersion" --description "description" + - name: Create a deployment stack using template file and purge resources. + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resources --template-file simpleTemplate.json --description "description" + - name: Create a deployment stack with parameter file and purge resource groups. + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resource-groups --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" + - name: Create a deployment stack with template spec and purge all resources + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-all --template-spec "TemplateSpecResourceIDWithVersion" --description "description" - name: Create a deployment stack using bicep file. - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simple.bicep --description "description" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --template-file simple.bicep --description "description" - name: Create a deployment stack at a different subscription - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --update-behavior "detachResources" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" + text: az stack group create --name "StackName" --resource-group "ResourceGroup" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" - name: Create a deployment stack using parameters from key/value pairs text: az stack group create --name "StackName" --template-file simpleTemplate.json --resource-group "ResourceGroup" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. From 290c5f42bf2a2839b8a3f135417de05c4a785582 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 12 Jan 2023 15:31:47 -0500 Subject: [PATCH 082/139] Added update --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index b5c3d73bf31..dfb81eda33d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2783,7 +2783,7 @@ helps['stack mg create'] = """ type: command -short-summary: Create a deployment stack at management group scope +short-summary: Create or update a deployment stack at management group scope examples: - name: Create a deployment stack using template file. text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus2" --description "description" @@ -2843,7 +2843,7 @@ helps['stack sub create'] = """ type: command -short-summary: Create a deployment stack at subscription scope +short-summary: Create or update a deployment stack at subscription scope examples: - name: Create a deployment stack using template file. text: az stack sub create --name "StackName" c --template-file simpleTemplate.json --location "westus2" --description "description" @@ -2907,7 +2907,7 @@ helps['stack group create'] = """ type: command -short-summary: Create a deployment stack at resource group scope +short-summary: Create or update a deployment stack at resource group scope examples: - name: Create a deployment stack using template file and purge resources. text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resources --template-file simpleTemplate.json --description "description" From 75f132c508408f952ebad091ea09ef8d5032466e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 25 Jan 2023 13:59:47 -0500 Subject: [PATCH 083/139] 1.9: tag support, removed word purge from help, and character c from help --- .../cli/command_modules/resource/_help.py | 22 +++++++++---------- .../cli/command_modules/resource/_params.py | 3 +++ .../command_modules/resource/_validators.py | 2 ++ .../cli/command_modules/resource/custom.py | 14 +++++++----- 4 files changed, 24 insertions(+), 17 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index dfb81eda33d..440f52f261f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.8) +short-summary: (Version 1.9) """ helps['stack mg create'] = """ @@ -2787,11 +2787,11 @@ examples: - name: Create a deployment stack using template file. text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus2" --description "description" - - name: Create a deployment stack with parameter file and purge resources. + - name: Create a deployment stack with parameter file and delete resources. text: az stack mg create --name "StackName" --management-group-id myMg --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - - name: Create a deployment stack with template spec and purge resource groups + - name: Create a deployment stack with template spec and delete resource groups text: az stack mg create --name "StackName" --management-group-id myMg --delete-resource-groups --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - - name: Create a deployment stack using bicep file and purge all resources. + - name: Create a deployment stack using bicep file and delete all resources. text: az stack mg create --name "StackName" --management-group-id myMg --delete-all --template-file simple.bicep --location "westus2" --description "description" - name: Create a deployment stack using parameters from key/value pairs text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar @@ -2846,12 +2846,12 @@ short-summary: Create or update a deployment stack at subscription scope examples: - name: Create a deployment stack using template file. - text: az stack sub create --name "StackName" c --template-file simpleTemplate.json --location "westus2" --description "description" - - name: Create a deployment stack with parameter file and purge resources. + text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus2" --description "description" + - name: Create a deployment stack with parameter file and delete resources. text: az stack sub create --name "StackName" --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" - - name: Create a deployment stack with template spec and purge resource groups + - name: Create a deployment stack with template spec and delete resource groups text: az stack sub create --name "StackName" --delete-resource-groups --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" - - name: Create a deployment stack using bicep file and purge all resources. + - name: Create a deployment stack using bicep file and delete all resources. text: az stack sub create --name "StackName" --delete-all --template-file simple.bicep --location "westus2" --description "description" - name: Create a deployment stack at a different subscription. text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" @@ -2909,11 +2909,11 @@ type: command short-summary: Create or update a deployment stack at resource group scope examples: - - name: Create a deployment stack using template file and purge resources. + - name: Create a deployment stack using template file and delete resources. text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resources --template-file simpleTemplate.json --description "description" - - name: Create a deployment stack with parameter file and purge resource groups. + - name: Create a deployment stack with parameter file and delete resource groups. text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resource-groups --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" - - name: Create a deployment stack with template spec and purge all resources + - name: Create a deployment stack with template spec and delete all resources text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-all --template-spec "TemplateSpecResourceIDWithVersion" --description "description" - name: Create a deployment stack using bicep file. text: az stack group create --name "StackName" --resource-group "ResourceGroup" --template-file simple.bicep --description "description" diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index d18fb32069c..592852b4a33 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -677,6 +677,7 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) + c.argument('tags', tags_type) with self.argument_context('stack mg show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -719,6 +720,7 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) + c.argument('tags', tags_type) with self.argument_context('stack sub show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) @@ -751,6 +753,7 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) + c.argument('tags', tags_type) with self.argument_context('stack group show') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index 0efa1758e92..cb87cdd4af2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -44,6 +44,8 @@ def _validate_template_spec_out(namespace): raise CLIError('Please enter a valid output folder') def validate_deployment_stack_files(namespace): + from azure.cli.core.commands.validators import validate_tags + validate_tags(namespace) if namespace.template_file and not os.path.isfile(namespace.template_file): raise InvalidArgumentValueError('Please enter a valid template file path') diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index ea5ca0a99e6..a89b0ad206c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2055,7 +2055,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2088,6 +2088,8 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource else: excluded_principals_array = None + tags = tags or {} + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: @@ -2139,7 +2141,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2241,7 +2243,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2316,7 +2318,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ #removed the following code because it is not in service yet, need to add this back eventually apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model, tags = tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: @@ -2429,7 +2431,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2508,7 +2510,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: From b252571c8b829ec85a30a9c4bd4682f3ef77519c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 2 Feb 2023 10:03:25 -0500 Subject: [PATCH 084/139] 19 intermim build, tested, more changes --- .../cli/command_modules/resource/_help.py | 2 +- .../cli/command_modules/resource/_params.py | 19 ++-- .../cli/command_modules/resource/custom.py | 91 ++++++++++--------- .../resource/tests/latest/test_resource.py | 32 +++---- 4 files changed, 73 insertions(+), 71 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 8e9d41fc48c..5b7a34b8e1a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2856,7 +2856,7 @@ - name: Create a deployment stack at a different subscription. text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" - name: Create a deployment stack and deploy at the resource group scope. - text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --resource-group "ResourceGroup" --description "description" + text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --deployment-resource-group "ResourceGroup" --description "description" - name: Create a deployment stack using parameters from key/value pairs text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index d6c6125b832..5df864080f0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -101,6 +101,8 @@ def load_arguments(self, _): stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') + stacks_stack_deployment_resource_group = CLIArgumentType(help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_subscription = CLIArgumentType(help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') @@ -668,6 +670,9 @@ def load_arguments(self, _): with self.argument_context('ts list') as c: c.argument('resource_group', arg_type=resource_group_name_type) + with self.argument_context('stack mg') as c: + c.argument('management_group_id', arg_type=management_group_id_type, help='The management group id to create stack at.') + with self.argument_context('stack mg create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') @@ -676,11 +681,10 @@ def load_arguments(self, _): c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) - c.argument('subscription', arg_type=subscription_type) + c.argument('deployment_subscription', arg_type=stacks_stack_deployment_subscription) c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) - c.argument('management-group-id', arg_type=management_group_name_type) c.argument('deny_settings_mode', arg_type=stacks_deny_settings_mode) c.argument('deny_settings_excluded_principals', arg_type=stacks_excluded_principals) c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) @@ -691,29 +695,23 @@ def load_arguments(self, _): c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - c.argument('management-group-id', arg_type=management_group_name_type) - with self.argument_context('stack mg delete') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - c.argument('management-group-id', arg_type=management_group_name_type) - with self.argument_context('stack mg export') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - c.argument('management-group-id', arg_type=management_group_name_type) - + with self.argument_context('stack mg list') as c: c.argument('subscription', arg_type=subscription_type) - c.argument('management-group-id', arg_type=management_group_name_type) with self.argument_context('stack sub create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + c.argument('deployment_resource_group', arg_type=stacks_stack_deployment_resource_group) c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) @@ -769,7 +767,6 @@ def load_arguments(self, _): c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - with self.argument_context('stack group list') as c: c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('subscription', arg_type=subscription_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index cfe8898df60..9f38a9a478d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2058,7 +2058,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, tags=None, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2103,31 +2103,32 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource #bypass if yes flag is true if not yes: from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format(name) + build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" #first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups" + build_confirmation_string += "\nDetach: resources and resource groups\n" #second case we only have delete elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDelete: resources and resource groups" + build_confirmation_string += "\nDeleting: resources and resource groups\n" else: if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources" - build_confirmation_string += "\nDelete: resource groups" + build_confirmation_string += "\nDetach: resources\n" + build_confirmation_string += "\nDeleting: resource groups\n" else: - build_confirmation_string += "\nDetach: resource groups" - build_confirmation_string += "\nDelete: resources" - confirmation = prompt_y_n(build_confirmation_string) + build_confirmation_string += "\nDetach: resource groups\n" + build_confirmation_string += "\nDeleting: resources\n" + confirmation = prompt_y_n(build_confirmation_string + "\n") if not confirmation: return None pass except: pass - if not resource_group: + if not deployment_resource_group: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) else: - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + resource_group + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_resource_group t_spec, t_uri = None, None template_obj = None @@ -2285,21 +2286,22 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ if rcf.deployment_stacks.get_at_resource_group(resource_group, name): if not yes: from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format(name) + build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" #first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups" + build_confirmation_string += "\nDetach: resources and resource groups\n" #second case we only have delete elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDelete: resources and resource groups" + build_confirmation_string += "\nDeleting: resources and resource groups\n" else: if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources" - build_confirmation_string += "\nDelete: resource groups" + build_confirmation_string += "\nDetach: resources\n" + build_confirmation_string += "\nDeleting: resource groups\n" else: - build_confirmation_string += "\nDetach: resource groups" - build_confirmation_string += "\nDelete: resources" - confirmation = prompt_y_n(build_confirmation_string) + build_confirmation_string += "\nDetach: resource groups\n" + build_confirmation_string += "\nDeleting: resources\n" + confirmation = prompt_y_n(build_confirmation_string + "\n") if not confirmation: return None pass @@ -2434,7 +2436,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2470,33 +2472,36 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") try: - get_subscription_response = rcf.deployment_stacks.get_at_subscription(name) - if get_subscription_response: - if get_subscription_response.location != location: - raise CLIError("Cannot change location of an already existing stack at subscription scope.") - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription. Do you want to overwrite it with the following actions: ".format(name) - #first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups" - #second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDelete: resources and resource groups" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources" - build_confirmation_string += "\nDelete: resource groups" + get_mg_response = rcf.deployment_stacks.get_at_management_group(management_group_id, name) + if get_mg_response: + if not yes: + from knack.prompting import prompt_y_n + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format(name) + build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" + #first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups\n" + #second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDeleting: resources and resource groups\n" else: - build_confirmation_string += "\nDetach: resource groups" - build_confirmation_string += "\nDelete: resources" - confirmation = prompt_y_n(build_confirmation_string) - if not confirmation: - return None - pass + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources\n" + build_confirmation_string += "\nDeleting: resource groups\n" + else: + build_confirmation_string += "\nDetach: resource groups\n" + build_confirmation_string += "\nDeleting: resources\n" + confirmation = prompt_y_n(build_confirmation_string + "\n") + if not confirmation: + return None + pass except: pass - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + if not deployment_subscription: + deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + else: + deployment_scope = "/subscriptions/" + deployment_subscription t_spec, t_uri = None, None template_obj = None diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 342c9b4c590..8d27cf4d5f9 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2152,13 +2152,13 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub delete --name {name} --yes') # deploy to rg - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --resource-group {resource-group} --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deployment-resource-group {resource-group} --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # create deployment stack with bicep file and rg scope - self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" -g {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --deployment-resource-group {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2167,10 +2167,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('az group create --location {location} --name {resource-group-two}') # create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2179,7 +2179,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group-two} --resource-type {resource-type-specs}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2228,7 +2228,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2237,7 +2237,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) @@ -2358,7 +2358,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('group create --location {location} --name {resource-group-two}') # create stack with resource1 to check if resources are being detached on delete - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack set to (default) detach self.cmd('stack sub delete --name {name} --yes') @@ -2367,7 +2367,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') # create stack with resource2 to check if resources are being purged on delete - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource2 set to delete self.cmd('stack sub delete --name {name} --delete-resources --yes') @@ -2407,7 +2407,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2812,12 +2812,12 @@ def test_create_deployment_stack_management_group(self, resource_group): }) # create mg #self.cmd('account management-group create --name {mg}', checks=[]) - + # create template spec - basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() - template_spec_id = basic_template_spec['id'] + #basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() + #template_spec_id = basic_template_spec['id'] - self.kwargs.update({'template-spec-id': template_spec_id}) + #self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) @@ -2826,10 +2826,10 @@ def test_create_deployment_stack_management_group(self, resource_group): self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + #self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup - self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + #self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) From 6f18fc27f366ada59d564e26d8fc44a42a5c5f2f Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 15 Mar 2023 12:47:32 -0400 Subject: [PATCH 085/139] retrigger checks From 9e8a7e7f8d75bebf36f174297b5c46bfcd4a7763 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 15 Mar 2023 12:58:51 -0400 Subject: [PATCH 086/139] PR requested changes --- .../cli/command_modules/resource/_help.py | 2 +- .../cli/command_modules/resource/commands.py | 22 ++++++++----------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 5b7a34b8e1a..25d54e9d88d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2778,7 +2778,7 @@ helps['stack'] = """ type: group -short-summary: (Version 1.9) +short-summary: A deployment stack is a native Azure resource type that enables you to perform operations on a resource collection as an atomic unit. Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 1.9) """ helps['stack mg create'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 3460e6b6e07..66938d8e0a0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -23,7 +23,6 @@ process_assign_identity_namespace, process_assignment_create_namespace, validate_deployment_stack_files) from ._exception_handler import managementgroups_exception_handler -import json logger = get_logger(__name__) @@ -96,21 +95,19 @@ def transform_deployments_list(result): return [transform_deployment(r) for r in sort_list] def transform_stacks(result): - r = result - return OrderedDict([('Name', r['name']), - ('State', r['provisioningState']), - ('Last Modified', r['systemData']['lastModifiedAt']), - ('Deployment Id', r['deploymentId'])]) + return OrderedDict([('Name', result['name']), + ('State', result['provisioningState']), + ('Last Modified', result['systemData']['lastModifiedAt']), + ('Deployment Id', result['deploymentId'])]) def transform_stacks_show(result): - r = result resources = "" for res in result['resources']: resources += res['id'] + "," - return OrderedDict([('Name', r['name']), - ('State', r['provisioningState']), - ('Last Modified', r['systemData']['lastModifiedAt']), + return OrderedDict([('Name', result['name']), + ('State', result['provisioningState']), + ('Last Modified', result['systemData']['lastModifiedAt']), ('Resource IDs', resources[:-1])]) def transform_stacks_list(result): @@ -126,9 +123,8 @@ def transform_stacks_list(result): return transformed def transform_stacks_export(result): - r = result - return OrderedDict([('$schema', r['template']['$schema']), - ('ContentVersion', r['template']['contentVersion'])]) + return OrderedDict([('$schema', result['template']['$schema']), + ('ContentVersion', result['template']['contentVersion'])]) # pylint: disable=too-many-statements def load_command_table(self, _): From 91f1827d70e01bf3ee002d0cf0dc7d444520bba8 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 15 Mar 2023 15:15:35 -0400 Subject: [PATCH 087/139] Fixed output table errors --- .../cli/command_modules/resource/commands.py | 22 +++++-------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index bc21bf7ea84..c428b1e574d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -100,26 +100,16 @@ def transform_stacks(result): ('Last Modified', result['systemData']['lastModifiedAt']), ('Deployment Id', result['deploymentId'])]) -def transform_stacks_show(result): - resources = "" - for res in result['resources']: - resources += res['id'] + "," - - return OrderedDict([('Name', result['name']), - ('State', result['provisioningState']), - ('Last Modified', result['systemData']['lastModifiedAt']), - ('Resource IDs', resources[:-1])]) - def transform_stacks_list(result): transformed = [] for r in result: resources = "" - for reslist in r['resources']: - resources += reslist['id'] + "," - - res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Resource IDs', resources[:-1])]) + if r['resources']: + for reslist in r['resources']: + resources += reslist['id'] + "," - transformed.append(res) + res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Resource IDs', resources[:-1])]) + transformed.append(res) return transformed def transform_stacks_export(result): @@ -414,7 +404,7 @@ def load_command_table(self, _): g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks_show) + g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) From a66508f369a29a72f5d9a03877daa843989a0f75 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 15 Mar 2023 15:53:24 -0400 Subject: [PATCH 088/139] Addressed rest of yanzudds comments --- .../cli/command_modules/resource/_help.py | 153 ++++++------------ .../cli/command_modules/resource/_params.py | 60 ++++--- .../command_modules/resource/_validators.py | 3 +- 3 files changed, 76 insertions(+), 140 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 79d7416004f..99ea3db6737 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2816,21 +2816,21 @@ short-summary: Create or update a deployment stack at management group scope examples: - name: Create a deployment stack using template file. - text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus2" --description "description" + text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus2 --description description - name: Create a deployment stack with parameter file and delete resources. - text: az stack mg create --name "StackName" --management-group-id myMg --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" + text: az stack mg create --name StackName --management-group-id myMg --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location westus2 --description description - name: Create a deployment stack with template spec and delete resource groups - text: az stack mg create --name "StackName" --management-group-id myMg --delete-resource-groups --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + text: az stack mg create --name StackName --management-group-id myMg --delete-resource-groups --template-spec TemplateSpecResourceIDWithVersion --location westus2 --description description - name: Create a deployment stack using bicep file and delete all resources. - text: az stack mg create --name "StackName" --management-group-id myMg --delete-all --template-file simple.bicep --location "westus2" --description "description" + text: az stack mg create --name StackName --management-group-id myMg --delete-all --template-file simple.bicep --location westus2 --description description - name: Create a deployment stack using parameters from key/value pairs - text: az stack mg create --name "StackName" --management-group-id myMg --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus - name: Create a deployment stack from a local template, using deny settings. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus - name: Create a deployment stack from a local template, apply deny settings to child scope. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-apply-to-child-scopes --location "westus" + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus """ helps['stack mg list'] = """ @@ -2838,7 +2838,7 @@ short-summary: List all deployment stacks in management group examples: - name: List all stacks - text: az stack mg list ----management-group-id myMg + text: az stack mg list --management-group-id myMg """ helps['stack mg show'] = """ @@ -2846,9 +2846,9 @@ short-summary: Get specified deployment stack from management group scope examples: - name: Get stack by name. - text: az stack mg show --name "StackName" --management-group-id myMg + text: az stack mg show --name StackName --management-group-id myMg - name: Get stack by stack resource id. - text: az stack mg show --id "StackResourceID" --management-group-id myMg + text: az stack mg show --id StackResourceID --management-group-id myMg """ helps['stack mg export'] = """ @@ -2856,9 +2856,9 @@ short-summary: Exports the template used to create the deployment stack examples: - name: Export template by name. - text: az stack mg export --name "StackName" --management-group-id myMg + text: az stack mg export --name StackName --management-group-id myMg - name: Export template by stack resource id. - text: az stack mg export --id "StackResourceID" --management-group-id myMg + text: az stack mg export --id StackResourceID --management-group-id myMg """ helps['stack mg delete'] = """ @@ -2866,9 +2866,9 @@ short-summary: Delete specified deployment stack from management group scope examples: - name: Delete stack by name. - text: az stack mg delete --name "StackName" --management-group-id myMg + text: az stack mg delete --name StackName --management-group-id myMg - name: Delete stack by stack resource id. - text: az stack mg delete --id "StackResourceID" --management-group-id myMg + text: az stack mg delete --id StackResourceID --management-group-id myMg """ helps['stack sub create'] = """ @@ -2876,25 +2876,25 @@ short-summary: Create or update a deployment stack at subscription scope examples: - name: Create a deployment stack using template file. - text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus2" --description "description" + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description - name: Create a deployment stack with parameter file and delete resources. - text: az stack sub create --name "StackName" --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location "westus2" --description "description" + text: az stack sub create --name StackName --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location westus2 --description description - name: Create a deployment stack with template spec and delete resource groups - text: az stack sub create --name "StackName" --delete-resource-groups --template-spec "TemplateSpecResourceIDWithVersion" --location "westus2" --description "description" + text: az stack sub create --name StackName --delete-resource-groups --template-spec TemplateSpecResourceIDWithVersion --location westus2 --description description - name: Create a deployment stack using bicep file and delete all resources. - text: az stack sub create --name "StackName" --delete-all --template-file simple.bicep --location "westus2" --description "description" + text: az stack sub create --name StackName --delete-all --template-file simple.bicep --location westus2 --description description - name: Create a deployment stack at a different subscription. - text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus2" --description "description --subscription "subscriptionId" + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description --subscription subscriptionId - name: Create a deployment stack and deploy at the resource group scope. - text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --deployment-resource-group "ResourceGroup" --description "description" + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --deployment-resource-group ResourceGroup --description description - name: Create a deployment stack using parameters from key/value pairs - text: az stack sub create --name "StackName" --template-file simpleTemplate.json --location "westus" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location "westus" + text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus - name: Create a deployment stack from a local template, using deny settings. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" --location "westus" + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus - name: Create a deployment stack from a local template, apply deny settings to child scopes. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-apply-to-child-scopes --location "westus" + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus """ helps['stack sub list'] = """ @@ -2910,9 +2910,9 @@ short-summary: Get specified deployment stack from subscription scope examples: - name: Get stack by name. - text: az stack sub show --name "StackName" + text: az stack sub show --name StackName - name: Get stack by stack resource id. - text: az stack sub show --id "StackResourceID" + text: az stack sub show --id StackResourceID """ helps['stack sub export'] = """ @@ -2920,9 +2920,9 @@ short-summary: Exports the template used to create the deployment stack examples: - name: Export template by name. - text: az stack sub export --name "StackName" + text: az stack sub export --name StackName - name: Export template by stack resource id. - text: az stack sub export --id "StackResourceID" + text: az stack sub export --id StackResourceID """ helps['stack sub delete'] = """ @@ -2930,9 +2930,9 @@ short-summary: Delete specified deployment stack from subscription scope examples: - name: Delete stack by name. - text: az stack sub delete --name "StackName" + text: az stack sub delete --name StackName - name: Delete stack by stack resource id. - text: az stack sub delete --id "StackResourceID" + text: az stack sub delete --id StackResourceID """ helps['stack group create'] = """ @@ -2940,23 +2940,23 @@ short-summary: Create or update a deployment stack at resource group scope examples: - name: Create a deployment stack using template file and delete resources. - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resources --template-file simpleTemplate.json --description "description" + text: az stack group create --name StackName --resource-group ResourceGroup --delete-resources --template-file simpleTemplate.json --description description - name: Create a deployment stack with parameter file and delete resource groups. - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-resource-groups --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description "description" + text: az stack group create --name StackName --resource-group ResourceGroup --delete-resource-groups --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description description - name: Create a deployment stack with template spec and delete all resources - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --delete-all --template-spec "TemplateSpecResourceIDWithVersion" --description "description" + text: az stack group create --name StackName --resource-group ResourceGroup --delete-all --template-spec TemplateSpecResourceIDWithVersion --description description - name: Create a deployment stack using bicep file. - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --template-file simple.bicep --description "description" + text: az stack group create --name StackName --resource-group ResourceGroup --template-file simple.bicep --description description - name: Create a deployment stack at a different subscription - text: az stack group create --name "StackName" --resource-group "ResourceGroup" --template-file simpleTemplate.json --description "description --subscription "subscriptionId" + text: az stack group create --name StackName --resource-group ResourceGroup --template-file simpleTemplate.json --description description --subscription subscriptionId - name: Create a deployment stack using parameters from key/value pairs - text: az stack group create --name "StackName" --template-file simpleTemplate.json --resource-group "ResourceGroup" --description "description" --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack group create --name StackName --template-file simpleTemplate.json --resource-group ResourceGroup --description description --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group "ResourceGroup" + text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup - name: Create a deployment stack from a local template, using deny settings. - text: az stack group create --name rollout01 --resource-group "ResourceGroup" --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-excluded-principals "test1 test2" + text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 - name: Create a deployment stack from a local template, apply deny setting to child scopes. - text: az stack group create --name rollout01 --resource-group "ResourceGroup" --template-file azuredeploy.json --deny-settings-mode "denyDelete" --deny-settings-excluded-actions "Microsoft.Compute/virtualMachines/write" --deny-settings-apply-to-child-scopes + text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes """ helps['stack group list'] = """ @@ -2964,7 +2964,7 @@ short-summary: List all deployment stacks in resource group examples: - name: List all stacks in resource group - text: az stack group list --resource-group "ResourceGroup" + text: az stack group list --resource-group ResourceGroup """ helps['stack group show'] = """ @@ -2972,9 +2972,9 @@ short-summary: Get specified deployment stack from resource group scope examples: - name: Get stack by name. - text: az stack group show --name "StackName" --resource-group "ResourceGroup" + text: az stack group show --name StackName --resource-group ResourceGroup - name: Get stack by stack resource id. - text: az stack group show --id "StackResourceID" + text: az stack group show --id StackResourceID """ helps['stack group export'] = """ @@ -2982,9 +2982,9 @@ short-summary: Exports the template used to create the deployment stack from resource group scope examples: - name: Export template by name. - text: az stack group export --name "StackName" --resource-group "ResourceGroup" + text: az stack group export --name StackName --resource-group ResourceGroup - name: Export template by stack resource id. - text: az stack group export --id "StackResourceID" + text: az stack group export --id StackResourceID """ helps['stack group delete'] = """ @@ -2992,70 +2992,11 @@ short-summary: Delete specified deployment stack from resource group scope examples: - name: Delete stack by name. - text: az stack group delete --name "StackName" --resource-group "ResourceGroup" + text: az stack group delete --name StackName --resource-group ResourceGroup - name: Delete stack by stack resource id. - text: az stack group delete --id "StackResourceID" + text: az stack group delete --id StackResourceID """ -helps['stack snapshot sub list'] = """ -type: command -short-summary: List all snapshots in specified deployment stack at subscription scope -examples: - - name: List all snapshots using stack name - text: az stack snapshot sub list --stack-name "StackName" - - name: List all snapshots using stack id - text: az stack snapshot sub list --stack "StackResourceID" -""" - -helps['stack snapshot sub show'] = """ -type: command -short-summary: Get specified snapshot in deployment stack at subscription scope -examples: - - name: Get snapshot with stack name and snapshot name. - text: az stack snapshot sub show --name "SnapshotName" --stack-name "StackName" - - name: Get snapshot by snapshot resource id. - text: az stack snapshot sub show --id "SnapshotResourceID" -""" - -helps['stack snapshot sub delete'] = """ -type: command -short-summary: Delete specified snapshot in deployment stack at subscription scope -examples: - - name: Delete snapshot with stack name and snapshot name. - text: az stack snapshot sub delete --name "SnapshotName" --stack-name "StackName" - - name: Delete snapshot by snapshot resource id. - text: az stack snapshot sub delete --id "SnapshotResourceID" -""" - -helps['stack snapshot group list'] = """ -type: command -short-summary: List all snapshots in specified deployment stack at resource group scope -examples: - - name: List all snapshots using stack name - text: az stack snapshot group list --stack-name "StackName" --resource-group "ResourceGroup" - - name: List all snapshots using stack id - text: az stack snapshot group list --stack "StackResourceID" -""" - -helps['stack snapshot group show'] = """ -type: command -short-summary: Get specified snapshot in deployment stack at resource group scope -examples: - - name: Get snapshot with stack name and snapshot name. - text: az stack snapshot group show --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - - name: Get snapshot by snapshot resource id. - text: az stack snapshot group show --id "SnapshotResourceID" -""" - -helps['stack snapshot group delete'] = """ -type: command -short-summary: Delete specified snapshot in deployment stack at resource group scope -examples: - - name: Delete snapshot with stack name and snapshot name. - text: az stack snapshot group delete --name "SnapshotName" --stack-name "StackName" "StackName" --resource-group "ResourceGroup" - - name: Delete snapshot by snapshot resource id. - text: az stack snapshot group delete --id "SnapshotResourceID" -""" helps['bicep generate-params'] = """ type: command short-summary: Generate parameters file for a Bicep file. diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 57ee4f057c3..75300daf957 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -694,22 +694,21 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) - - with self.argument_context('stack mg show') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_stack_type) - c.argument('subscription', arg_type=subscription_type) + + for scope in ['stack mg show','stack mg export']: + with self.argument_context(scope) as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack mg delete') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) + c.argument('delete_resources', arg_type=stacks_delete_resources_type) + c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) + c.argument('delete_all', arg_type=stacks_delete_all_type) - with self.argument_context('stack mg export') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_stack_type) - c.argument('subscription', arg_type=subscription_type) - with self.argument_context('stack mg list') as c: c.argument('subscription', arg_type=subscription_type) @@ -732,20 +731,19 @@ def load_arguments(self, _): c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) - with self.argument_context('stack sub show') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_stack_type) - c.argument('subscription', arg_type=subscription_type) - + for scope in ['stack sub show','stack sub export']: + with self.argument_context(scope) as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) + with self.argument_context('stack sub delete') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - - with self.argument_context('stack sub export') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_stack_type) - c.argument('subscription', arg_type=subscription_type) + c.argument('delete_resources', arg_type=stacks_delete_resources_type) + c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) + c.argument('delete_all', arg_type=stacks_delete_all_type) with self.argument_context('stack group create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) @@ -765,12 +763,13 @@ def load_arguments(self, _): c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) - with self.argument_context('stack group show') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('id', arg_type=stacks_stack_type) - c.argument('subscription', arg_type=subscription_type) - + for scope in ['stack group show', 'stack group export']: + with self.argument_context(scope) as c: + c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('id', arg_type=stacks_stack_type) + c.argument('subscription', arg_type=subscription_type) + with self.argument_context('stack group list') as c: c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('subscription', arg_type=subscription_type) @@ -780,12 +779,9 @@ def load_arguments(self, _): c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - - with self.argument_context('stack group export') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('id', arg_type=stacks_stack_type) - c.argument('subscription', arg_type=subscription_type) + c.argument('delete_resources', arg_type=stacks_delete_resources_type) + c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) + c.argument('delete_all', arg_type=stacks_delete_all_type) with self.argument_context('stack snapshot sub show') as c: c.argument('name', arg_type=stacks_snapshot_name_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index cb87cdd4af2..bd33d0d2433 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -8,8 +8,6 @@ import argparse from azure.cli.core.azclierror import ArgumentUsageError -from azure.cli.core.azclierror import InvalidArgumentValueError -from azure.cli.core.commands import parameters from knack.util import CLIError try: from urllib.parse import urlparse, urlsplit @@ -45,6 +43,7 @@ def _validate_template_spec_out(namespace): def validate_deployment_stack_files(namespace): from azure.cli.core.commands.validators import validate_tags + from azure.cli.core.azclierror import InvalidArgumentValueError validate_tags(namespace) if namespace.template_file and not os.path.isfile(namespace.template_file): raise InvalidArgumentValueError('Please enter a valid template file path') From a0d33699eb23afa8b2c0d3e83ce041a05364a8b1 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 21 Mar 2023 10:23:02 -0400 Subject: [PATCH 089/139] Continued merge --- src/azure-cli/requirements.py3.Darwin.txt | 4 ---- src/azure-cli/requirements.py3.Linux.txt | 4 ---- src/azure-cli/setup.py | 4 ---- 3 files changed, 12 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 790f7a57a69..76dbea21e16 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -68,12 +68,8 @@ azure-mgmt-recoveryservicesbackup==5.1.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -<<<<<<< HEAD azure-mgmt-reservations==2.0.0 azure-mgmt-resource==21.2.0 -======= -azure-mgmt-resource==22.0.0 ->>>>>>> origin/dev azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 738c581674a..aa4b5c55a4e 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -68,12 +68,8 @@ azure-mgmt-recoveryservicesbackup==5.1.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -<<<<<<< HEAD azure-mgmt-reservations==2.0.0 azure-mgmt-resource==21.2.0 -======= -azure-mgmt-resource==22.0.0 ->>>>>>> origin/dev azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 64cfbd1180f..d92047376bc 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -112,12 +112,8 @@ 'azure-mgmt-redhatopenshift~=1.2.0', 'azure-mgmt-redis~=14.1.0', 'azure-mgmt-relay~=0.1.0', -<<<<<<< HEAD 'azure-mgmt-reservations==2.0.0', # TODO: Use requirements.txt instead of '==' #9781 'azure-mgmt-resource==21.2.0', -======= - 'azure-mgmt-resource==22.0.0', ->>>>>>> origin/dev 'azure-mgmt-search~=9.0', 'azure-mgmt-security==3.0.0', 'azure-mgmt-servicebus~=8.2.0', From 4ad4a54a360b79a4932069fe7678f9e7481fa1b6 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 23 Mar 2023 14:45:23 -0400 Subject: [PATCH 090/139] Bicep error fix --- src/azure-cli/azure/cli/command_modules/resource/custom.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index e4a2344bd5e..afc3dffc59d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2193,7 +2193,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: template_content = ( - run_bicep_command(["build", "--stdout", template_file]) + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) if is_bicep_file(template_file) else read_file_content(template_file) ) @@ -2371,7 +2371,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: template_content = ( - run_bicep_command(["build", "--stdout", template_file]) + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) if is_bicep_file(template_file) else read_file_content(template_file) ) @@ -2566,7 +2566,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: template_content = ( - run_bicep_command(["build", "--stdout", template_file]) + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) if is_bicep_file(template_file) else read_file_content(template_file) ) From bd6f921de857c7126561fa3df8573ae2c2353f8a Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 27 Mar 2023 17:57:36 -0400 Subject: [PATCH 091/139] Added requested changes in help file --- log.txt | 0 .../cli/command_modules/resource/_help.py | 21 ++++++++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 log.txt diff --git a/log.txt b/log.txt deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index cd190d20e95..86c3472333b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2812,7 +2812,8 @@ helps['stack'] = """ type: group -short-summary: A deployment stack is a native Azure resource type that enables you to perform operations on a resource collection as an atomic unit. Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 1.9) +short-summary: A deployment stack is a native Azure resource type that enables you to perform operations on a resource collection as an atomic unit. +long-summary: Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 1.9) """ helps['stack mg create'] = """ @@ -2828,9 +2829,9 @@ - name: Create a deployment stack using bicep file and delete all resources. text: az stack mg create --name StackName --management-group-id myMg --delete-all --template-file simple.bicep --location westus2 --description description - name: Create a deployment stack using parameters from key/value pairs - text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus - name: Create a deployment stack from a local template, using deny settings. text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus - name: Create a deployment stack from a local template, apply deny settings to child scope. @@ -2857,7 +2858,7 @@ helps['stack mg export'] = """ type: command -short-summary: Exports the template used to create the deployment stack +short-summary: Export the template used to create the deployment stack examples: - name: Export template by name. text: az stack mg export --name StackName --management-group-id myMg @@ -2890,11 +2891,11 @@ - name: Create a deployment stack at a different subscription. text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description --subscription subscriptionId - name: Create a deployment stack and deploy at the resource group scope. - text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --deployment-resource-group ResourceGroup --description description + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --deployment-resource-group ResourceGroup --description description - name: Create a deployment stack using parameters from key/value pairs - text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus + text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus - name: Create a deployment stack from a local template, using deny settings. text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus - name: Create a deployment stack from a local template, apply deny settings to child scopes. @@ -2921,7 +2922,7 @@ helps['stack sub export'] = """ type: command -short-summary: Exports the template used to create the deployment stack +short-summary: Export the template used to create the deployment stack examples: - name: Export template by name. text: az stack sub export --name StackName @@ -2954,9 +2955,9 @@ - name: Create a deployment stack at a different subscription text: az stack group create --name StackName --resource-group ResourceGroup --template-file simpleTemplate.json --description description --subscription subscriptionId - name: Create a deployment stack using parameters from key/value pairs - text: az stack group create --name StackName --template-file simpleTemplate.json --resource-group ResourceGroup --description description --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack group create --name StackName --template-file simpleTemplate.json --resource-group ResourceGroup --description description --parameters simpleTemplateParams.json value1=foo value2=bar - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup + text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup - name: Create a deployment stack from a local template, using deny settings. text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 - name: Create a deployment stack from a local template, apply deny setting to child scopes. From 52949b580e78e5eedf1f64d8fc6562c7631be081 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 28 Mar 2023 13:35:03 -0400 Subject: [PATCH 092/139] Missed commit --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 86c3472333b..db4886b3d01 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2984,7 +2984,7 @@ helps['stack group export'] = """ type: command -short-summary: Exports the template used to create the deployment stack from resource group scope +short-summary: Export the template used to create the deployment stack from resource group scope examples: - name: Export template by name. text: az stack group export --name StackName --resource-group ResourceGroup From 270dfab7404d6f27983965848cceb83eeac93868 Mon Sep 17 00:00:00 2001 From: necusjz Date: Mon, 3 Apr 2023 16:14:56 +0800 Subject: [PATCH 093/139] [Network] `az network nic update`: Add `--ip-configurations` to support shorthand syntax (#26009) * support shorthand syntax * add test case --- .../network/aaz/latest/network/nic/_create.py | 2 +- .../network/aaz/latest/network/nic/_update.py | 535 ++++- ...ultiple_ipconfigs_remove_by_shorthand.yaml | 2092 +++++++++++++++++ .../tests/latest/test_network_commands.py | 26 + 4 files changed, 2636 insertions(+), 19 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_multiple_ipconfigs_remove_by_shorthand.yaml diff --git a/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_create.py b/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_create.py index 0b5ba82824d..6502d62bb3c 100644 --- a/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_create.py +++ b/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_create.py @@ -124,7 +124,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.ip_configurations = AAZListArg( options=["--ip-configurations"], arg_group="Properties", - help="A list of IPConfigurations of the network interface.", + help="List of IP configurations of the network interface.", ) _args_schema.nsg = AAZObjectArg( options=["--nsg"], diff --git a/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_update.py b/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_update.py index 66aa4fc1b87..a0e4c768a3e 100644 --- a/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_update.py +++ b/src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/nic/_update.py @@ -93,6 +93,12 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "Properties" _args_schema = cls._args_schema + _args_schema.ip_configurations = AAZListArg( + options=["--ip-configurations"], + arg_group="Properties", + help="List of IP configurations of the network interface.", + nullable=True, + ) _args_schema.nsg = AAZObjectArg( options=["--nsg"], arg_group="Properties", @@ -100,6 +106,374 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, ) + ip_configurations = cls._args_schema.ip_configurations + ip_configurations.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element + _element.id = AAZResourceIdArg( + options=["id"], + help="Resource ID.", + nullable=True, + fmt=AAZResourceIdArgFormat( + template="/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/networkInterfaces/{}/ipConfigurations/{}", + ), + ) + _element.name = AAZStrArg( + options=["name"], + help="The name of the resource that is unique within a resource group. This name can be used to access the resource.", + nullable=True, + ) + _element.application_gateway_backend_address_pools = AAZListArg( + options=["application-gateway-backend-address-pools"], + help="The reference to ApplicationGatewayBackendAddressPool resource.", + nullable=True, + ) + _element.application_security_groups = AAZListArg( + options=["application-security-groups"], + help="Application security groups in which the IP configuration is included.", + nullable=True, + ) + _element.gateway_load_balancer = AAZObjectArg( + options=["gateway-load-balancer"], + help="The reference to gateway load balancer frontend IP.", + nullable=True, + ) + cls._build_args_sub_resource_update(_element.gateway_load_balancer) + _element.load_balancer_backend_address_pools = AAZListArg( + options=["load-balancer-backend-address-pools"], + help="The reference to LoadBalancerBackendAddressPool resource.", + nullable=True, + ) + _element.load_balancer_inbound_nat_rules = AAZListArg( + options=["load-balancer-inbound-nat-rules"], + help="A list of references of LoadBalancerInboundNatRules.", + nullable=True, + ) + _element.primary = AAZBoolArg( + options=["primary"], + help="Whether this is a primary customer address on the network interface.", + nullable=True, + ) + _element.private_ip_address = AAZStrArg( + options=["private-ip-address"], + help="Private IP address of the IP configuration.", + nullable=True, + ) + _element.private_ip_address_version = AAZStrArg( + options=["private-ip-address-version"], + help="Whether the specific IP configuration is IPv4 or IPv6. Default is IPv4.", + nullable=True, + enum={"IPv4": "IPv4", "IPv6": "IPv6"}, + ) + _element.private_ip_allocation_method = AAZStrArg( + options=["private-ip-allocation-method"], + help="The private IP address allocation method.", + nullable=True, + enum={"Dynamic": "Dynamic", "Static": "Static"}, + ) + _element.public_ip_address = AAZObjectArg( + options=["public-ip-address"], + help="Public IP address bound to the IP configuration.", + nullable=True, + ) + cls._build_args_public_ip_address_update(_element.public_ip_address) + _element.subnet = AAZObjectArg( + options=["subnet"], + help="Subnet bound to the IP configuration.", + nullable=True, + ) + cls._build_args_subnet_update(_element.subnet) + _element.virtual_network_taps = AAZListArg( + options=["virtual-network-taps"], + help="The reference to Virtual Network Taps.", + nullable=True, + ) + _element.type = AAZStrArg( + options=["type"], + help="Resource type.", + nullable=True, + ) + + application_gateway_backend_address_pools = cls._args_schema.ip_configurations.Element.application_gateway_backend_address_pools + application_gateway_backend_address_pools.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.application_gateway_backend_address_pools.Element + _element.id = AAZStrArg( + options=["id"], + help="Resource ID.", + nullable=True, + ) + _element.name = AAZStrArg( + options=["name"], + help="Name of the backend address pool that is unique within an Application Gateway.", + nullable=True, + ) + _element.backend_addresses = AAZListArg( + options=["backend-addresses"], + help="Backend addresses.", + nullable=True, + ) + + backend_addresses = cls._args_schema.ip_configurations.Element.application_gateway_backend_address_pools.Element.backend_addresses + backend_addresses.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.application_gateway_backend_address_pools.Element.backend_addresses.Element + _element.fqdn = AAZStrArg( + options=["fqdn"], + help="Fully qualified domain name (FQDN).", + nullable=True, + ) + _element.ip_address = AAZStrArg( + options=["ip-address"], + help="IP address.", + nullable=True, + ) + + application_security_groups = cls._args_schema.ip_configurations.Element.application_security_groups + application_security_groups.Element = AAZObjectArg( + nullable=True, + ) + cls._build_args_application_security_group_update(application_security_groups.Element) + + load_balancer_backend_address_pools = cls._args_schema.ip_configurations.Element.load_balancer_backend_address_pools + load_balancer_backend_address_pools.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.load_balancer_backend_address_pools.Element + _element.id = AAZResourceIdArg( + options=["id"], + help="Resource ID.", + nullable=True, + fmt=AAZResourceIdArgFormat( + template="/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/loadBalancers/{}/backendAddressPools/{}", + ), + ) + _element.name = AAZStrArg( + options=["name"], + help="The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.", + nullable=True, + ) + _element.drain_period_in_seconds = AAZIntArg( + options=["drain-period-in-seconds"], + help="Amount of seconds Load Balancer waits for before sending RESET to client and backend address.", + nullable=True, + ) + _element.load_balancer_backend_addresses = AAZListArg( + options=["load-balancer-backend-addresses"], + help="An array of backend addresses.", + nullable=True, + ) + _element.location = AAZStrArg( + options=["location"], + help="The location of the backend address pool.", + nullable=True, + ) + _element.tunnel_interfaces = AAZListArg( + options=["tunnel-interfaces"], + help="An array of gateway load balancer tunnel interfaces.", + nullable=True, + ) + + load_balancer_backend_addresses = cls._args_schema.ip_configurations.Element.load_balancer_backend_address_pools.Element.load_balancer_backend_addresses + load_balancer_backend_addresses.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.load_balancer_backend_address_pools.Element.load_balancer_backend_addresses.Element + _element.name = AAZStrArg( + options=["name"], + help="Name of the backend address.", + nullable=True, + ) + _element.admin_state = AAZStrArg( + options=["admin-state"], + help="A list of administrative states which once set can override health probe so that Load Balancer will always forward new connections to backend, or deny new connections and reset existing connections.", + nullable=True, + enum={"Down": "Down", "Drain": "Drain", "None": "None", "Up": "Up"}, + ) + _element.ip_address = AAZStrArg( + options=["ip-address"], + help="IP Address belonging to the referenced virtual network.", + nullable=True, + ) + _element.load_balancer_frontend_ip_configuration = AAZObjectArg( + options=["load-balancer-frontend-ip-configuration"], + help="Reference to the frontend ip address configuration defined in regional loadbalancer.", + nullable=True, + ) + cls._build_args_sub_resource_update(_element.load_balancer_frontend_ip_configuration) + _element.subnet = AAZObjectArg( + options=["subnet"], + help="Reference to an existing subnet.", + nullable=True, + ) + cls._build_args_sub_resource_update(_element.subnet) + _element.virtual_network = AAZObjectArg( + options=["virtual-network"], + help="Reference to an existing virtual network.", + nullable=True, + ) + cls._build_args_sub_resource_update(_element.virtual_network) + + tunnel_interfaces = cls._args_schema.ip_configurations.Element.load_balancer_backend_address_pools.Element.tunnel_interfaces + tunnel_interfaces.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.load_balancer_backend_address_pools.Element.tunnel_interfaces.Element + _element.identifier = AAZIntArg( + options=["identifier"], + help="Identifier of gateway load balancer tunnel interface.", + nullable=True, + ) + _element.port = AAZIntArg( + options=["port"], + help="Port of gateway load balancer tunnel interface.", + nullable=True, + ) + _element.protocol = AAZStrArg( + options=["protocol"], + help="Protocol of gateway load balancer tunnel interface.", + nullable=True, + enum={"Native": "Native", "None": "None", "VXLAN": "VXLAN"}, + ) + _element.type = AAZStrArg( + options=["type"], + help="Traffic type of gateway load balancer tunnel interface.", + nullable=True, + enum={"External": "External", "Internal": "Internal", "None": "None"}, + ) + + load_balancer_inbound_nat_rules = cls._args_schema.ip_configurations.Element.load_balancer_inbound_nat_rules + load_balancer_inbound_nat_rules.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.load_balancer_inbound_nat_rules.Element + _element.id = AAZResourceIdArg( + options=["id"], + help="Resource ID.", + nullable=True, + fmt=AAZResourceIdArgFormat( + template="/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/loadBalancers/{}/inboundNatRules/{}", + ), + ) + _element.name = AAZStrArg( + options=["name"], + help="The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.", + nullable=True, + ) + _element.backend_address_pool = AAZObjectArg( + options=["backend-address-pool"], + help="A reference to backendAddressPool resource.", + nullable=True, + ) + cls._build_args_sub_resource_update(_element.backend_address_pool) + _element.backend_port = AAZIntArg( + options=["backend-port"], + help="The port used for the internal endpoint. Acceptable values range from 1 to 65535.", + nullable=True, + ) + _element.enable_floating_ip = AAZBoolArg( + options=["enable-floating-ip"], + help="Configures a virtual machine's endpoint for the floating IP capability required to configure a SQL AlwaysOn Availability Group. This setting is required when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed after you create the endpoint.", + nullable=True, + ) + _element.enable_tcp_reset = AAZBoolArg( + options=["enable-tcp-reset"], + help="Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.", + nullable=True, + ) + _element.frontend_ip_configuration = AAZObjectArg( + options=["frontend-ip-configuration"], + help="A reference to frontend IP addresses.", + nullable=True, + ) + cls._build_args_sub_resource_update(_element.frontend_ip_configuration) + _element.frontend_port = AAZIntArg( + options=["frontend-port"], + help="The port for the external endpoint. Port numbers for each rule must be unique within the Load Balancer. Acceptable values range from 1 to 65534.", + nullable=True, + ) + _element.frontend_port_range_end = AAZIntArg( + options=["frontend-port-range-end"], + help="The port range end for the external endpoint. This property is used together with BackendAddressPool and FrontendPortRangeStart. Individual inbound NAT rule port mappings will be created for each backend address from BackendAddressPool. Acceptable values range from 1 to 65534.", + nullable=True, + ) + _element.frontend_port_range_start = AAZIntArg( + options=["frontend-port-range-start"], + help="The port range start for the external endpoint. This property is used together with BackendAddressPool and FrontendPortRangeEnd. Individual inbound NAT rule port mappings will be created for each backend address from BackendAddressPool. Acceptable values range from 1 to 65534.", + nullable=True, + ) + _element.idle_timeout_in_minutes = AAZIntArg( + options=["idle-timeout-in-minutes"], + help="The timeout for the TCP idle connection. The value can be set between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the protocol is set to TCP.", + nullable=True, + ) + _element.protocol = AAZStrArg( + options=["protocol"], + help="The reference to the transport protocol used by the load balancing rule.", + nullable=True, + enum={"All": "All", "Tcp": "Tcp", "Udp": "Udp"}, + ) + + virtual_network_taps = cls._args_schema.ip_configurations.Element.virtual_network_taps + virtual_network_taps.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_configurations.Element.virtual_network_taps.Element + _element.id = AAZResourceIdArg( + options=["id"], + help="Resource ID.", + nullable=True, + fmt=AAZResourceIdArgFormat( + template="/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworkTaps/{}", + ), + ) + _element.location = AAZResourceLocationArg( + options=["l", "location"], + help="Resource location.", + nullable=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _element.destination_load_balancer_front_end_ip_configuration = AAZObjectArg( + options=["destination-load-balancer-front-end-ip-configuration"], + help="The reference to the private IP address on the internal Load Balancer that will receive the tap.", + nullable=True, + ) + cls._build_args_frontend_ip_configuration_update(_element.destination_load_balancer_front_end_ip_configuration) + _element.destination_network_interface_ip_configuration = AAZObjectArg( + options=["destination-network-interface-ip-configuration"], + help="The reference to the private IP Address of the collector nic that will receive the tap.", + nullable=True, + ) + cls._build_args_network_interface_ip_configuration_update(_element.destination_network_interface_ip_configuration) + _element.destination_port = AAZIntArg( + options=["destination-port"], + help="The VXLAN destination port that will receive the tapped traffic.", + nullable=True, + ) + _element.tags = AAZDictArg( + options=["tags"], + help="Resource tags.", + nullable=True, + ) + + tags = cls._args_schema.ip_configurations.Element.virtual_network_taps.Element.tags + tags.Element = AAZStrArg( + nullable=True, + ) + nsg = cls._args_schema.nsg nsg.id = AAZResourceIdArg( options=["id"], @@ -863,13 +1237,11 @@ def _build_args_public_ip_address_update(cls, _schema): _schema.idle_timeout_in_minutes = cls._args_public_ip_address_update.idle_timeout_in_minutes _schema.ip_address = cls._args_public_ip_address_update.ip_address _schema.ip_tags = cls._args_public_ip_address_update.ip_tags - _schema.linked_public_ip_address = cls._args_public_ip_address_update.linked_public_ip_address _schema.location = cls._args_public_ip_address_update.location _schema.nat_gateway = cls._args_public_ip_address_update.nat_gateway _schema.public_ip_address_version = cls._args_public_ip_address_update.public_ip_address_version _schema.public_ip_allocation_method = cls._args_public_ip_address_update.public_ip_allocation_method _schema.public_ip_prefix = cls._args_public_ip_address_update.public_ip_prefix - _schema.service_public_ip_address = cls._args_public_ip_address_update.service_public_ip_address _schema.sku = cls._args_public_ip_address_update.sku _schema.tags = cls._args_public_ip_address_update.tags _schema.zones = cls._args_public_ip_address_update.zones @@ -933,12 +1305,6 @@ def _build_args_public_ip_address_update(cls, _schema): help="The list of tags associated with the public IP address.", nullable=True, ) - public_ip_address_update.linked_public_ip_address = AAZObjectArg( - options=["linked-public-ip-address"], - help="The linked public IP address of the public IP address resource.", - nullable=True, - ) - cls._build_args_public_ip_address_update(public_ip_address_update.linked_public_ip_address) public_ip_address_update.nat_gateway = AAZObjectArg( options=["nat-gateway"], help="The NatGateway for the Public IP address.", @@ -962,12 +1328,6 @@ def _build_args_public_ip_address_update(cls, _schema): nullable=True, ) cls._build_args_sub_resource_update(public_ip_address_update.public_ip_prefix) - public_ip_address_update.service_public_ip_address = AAZObjectArg( - options=["service-public-ip-address"], - help="The service public IP address of the public IP address resource.", - nullable=True, - ) - cls._build_args_public_ip_address_update(public_ip_address_update.service_public_ip_address) public_ip_address_update.sku = AAZObjectArg( options=["sku"], help="The public IP address SKU.", @@ -1147,13 +1507,11 @@ def _build_args_public_ip_address_update(cls, _schema): _schema.idle_timeout_in_minutes = cls._args_public_ip_address_update.idle_timeout_in_minutes _schema.ip_address = cls._args_public_ip_address_update.ip_address _schema.ip_tags = cls._args_public_ip_address_update.ip_tags - _schema.linked_public_ip_address = cls._args_public_ip_address_update.linked_public_ip_address _schema.location = cls._args_public_ip_address_update.location _schema.nat_gateway = cls._args_public_ip_address_update.nat_gateway _schema.public_ip_address_version = cls._args_public_ip_address_update.public_ip_address_version _schema.public_ip_allocation_method = cls._args_public_ip_address_update.public_ip_allocation_method _schema.public_ip_prefix = cls._args_public_ip_address_update.public_ip_prefix - _schema.service_public_ip_address = cls._args_public_ip_address_update.service_public_ip_address _schema.sku = cls._args_public_ip_address_update.sku _schema.tags = cls._args_public_ip_address_update.tags _schema.zones = cls._args_public_ip_address_update.zones @@ -1811,6 +2169,7 @@ def _update_instance(self, instance): properties.set_prop("dnsSettings", AAZObjectType) properties.set_prop("enableAcceleratedNetworking", AAZBoolType, ".accelerated_networking") properties.set_prop("enableIPForwarding", AAZBoolType, ".ip_forwarding") + properties.set_prop("ipConfigurations", AAZListType, ".ip_configurations") properties.set_prop("networkSecurityGroup", AAZObjectType, ".nsg") dns_settings = _builder.get(".properties.dnsSettings") @@ -1822,6 +2181,148 @@ def _update_instance(self, instance): if dns_servers is not None: dns_servers.set_elements(AAZStrType, ".") + ip_configurations = _builder.get(".properties.ipConfigurations") + if ip_configurations is not None: + ip_configurations.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[]") + if _elements is not None: + _elements.set_prop("id", AAZStrType, ".id") + _elements.set_prop("name", AAZStrType, ".name") + _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _elements.set_prop("type", AAZStrType, ".type") + + properties = _builder.get(".properties.ipConfigurations[].properties") + if properties is not None: + properties.set_prop("applicationGatewayBackendAddressPools", AAZListType, ".application_gateway_backend_address_pools") + properties.set_prop("applicationSecurityGroups", AAZListType, ".application_security_groups") + _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("gatewayLoadBalancer", AAZObjectType, ".gateway_load_balancer")) + properties.set_prop("loadBalancerBackendAddressPools", AAZListType, ".load_balancer_backend_address_pools") + properties.set_prop("loadBalancerInboundNatRules", AAZListType, ".load_balancer_inbound_nat_rules") + properties.set_prop("primary", AAZBoolType, ".primary") + properties.set_prop("privateIPAddress", AAZStrType, ".private_ip_address") + properties.set_prop("privateIPAddressVersion", AAZStrType, ".private_ip_address_version") + properties.set_prop("privateIPAllocationMethod", AAZStrType, ".private_ip_allocation_method") + _UpdateHelper._build_schema_public_ip_address_update(properties.set_prop("publicIPAddress", AAZObjectType, ".public_ip_address")) + _UpdateHelper._build_schema_subnet_update(properties.set_prop("subnet", AAZObjectType, ".subnet")) + properties.set_prop("virtualNetworkTaps", AAZListType, ".virtual_network_taps") + + application_gateway_backend_address_pools = _builder.get(".properties.ipConfigurations[].properties.applicationGatewayBackendAddressPools") + if application_gateway_backend_address_pools is not None: + application_gateway_backend_address_pools.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.applicationGatewayBackendAddressPools[]") + if _elements is not None: + _elements.set_prop("id", AAZStrType, ".id") + _elements.set_prop("name", AAZStrType, ".name") + _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties.ipConfigurations[].properties.applicationGatewayBackendAddressPools[].properties") + if properties is not None: + properties.set_prop("backendAddresses", AAZListType, ".backend_addresses") + + backend_addresses = _builder.get(".properties.ipConfigurations[].properties.applicationGatewayBackendAddressPools[].properties.backendAddresses") + if backend_addresses is not None: + backend_addresses.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.applicationGatewayBackendAddressPools[].properties.backendAddresses[]") + if _elements is not None: + _elements.set_prop("fqdn", AAZStrType, ".fqdn") + _elements.set_prop("ipAddress", AAZStrType, ".ip_address") + + application_security_groups = _builder.get(".properties.ipConfigurations[].properties.applicationSecurityGroups") + if application_security_groups is not None: + _UpdateHelper._build_schema_application_security_group_update(application_security_groups.set_elements(AAZObjectType, ".")) + + load_balancer_backend_address_pools = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools") + if load_balancer_backend_address_pools is not None: + load_balancer_backend_address_pools.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[]") + if _elements is not None: + _elements.set_prop("id", AAZStrType, ".id") + _elements.set_prop("name", AAZStrType, ".name") + _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[].properties") + if properties is not None: + properties.set_prop("drainPeriodInSeconds", AAZIntType, ".drain_period_in_seconds") + properties.set_prop("loadBalancerBackendAddresses", AAZListType, ".load_balancer_backend_addresses") + properties.set_prop("location", AAZStrType, ".location") + properties.set_prop("tunnelInterfaces", AAZListType, ".tunnel_interfaces") + + load_balancer_backend_addresses = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[].properties.loadBalancerBackendAddresses") + if load_balancer_backend_addresses is not None: + load_balancer_backend_addresses.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[].properties.loadBalancerBackendAddresses[]") + if _elements is not None: + _elements.set_prop("name", AAZStrType, ".name") + _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[].properties.loadBalancerBackendAddresses[].properties") + if properties is not None: + properties.set_prop("adminState", AAZStrType, ".admin_state") + properties.set_prop("ipAddress", AAZStrType, ".ip_address") + _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("loadBalancerFrontendIPConfiguration", AAZObjectType, ".load_balancer_frontend_ip_configuration")) + _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("subnet", AAZObjectType, ".subnet")) + _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("virtualNetwork", AAZObjectType, ".virtual_network")) + + tunnel_interfaces = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[].properties.tunnelInterfaces") + if tunnel_interfaces is not None: + tunnel_interfaces.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.loadBalancerBackendAddressPools[].properties.tunnelInterfaces[]") + if _elements is not None: + _elements.set_prop("identifier", AAZIntType, ".identifier") + _elements.set_prop("port", AAZIntType, ".port") + _elements.set_prop("protocol", AAZStrType, ".protocol") + _elements.set_prop("type", AAZStrType, ".type") + + load_balancer_inbound_nat_rules = _builder.get(".properties.ipConfigurations[].properties.loadBalancerInboundNatRules") + if load_balancer_inbound_nat_rules is not None: + load_balancer_inbound_nat_rules.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.loadBalancerInboundNatRules[]") + if _elements is not None: + _elements.set_prop("id", AAZStrType, ".id") + _elements.set_prop("name", AAZStrType, ".name") + _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties.ipConfigurations[].properties.loadBalancerInboundNatRules[].properties") + if properties is not None: + _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("backendAddressPool", AAZObjectType, ".backend_address_pool")) + properties.set_prop("backendPort", AAZIntType, ".backend_port") + properties.set_prop("enableFloatingIP", AAZBoolType, ".enable_floating_ip") + properties.set_prop("enableTcpReset", AAZBoolType, ".enable_tcp_reset") + _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("frontendIPConfiguration", AAZObjectType, ".frontend_ip_configuration")) + properties.set_prop("frontendPort", AAZIntType, ".frontend_port") + properties.set_prop("frontendPortRangeEnd", AAZIntType, ".frontend_port_range_end") + properties.set_prop("frontendPortRangeStart", AAZIntType, ".frontend_port_range_start") + properties.set_prop("idleTimeoutInMinutes", AAZIntType, ".idle_timeout_in_minutes") + properties.set_prop("protocol", AAZStrType, ".protocol") + + virtual_network_taps = _builder.get(".properties.ipConfigurations[].properties.virtualNetworkTaps") + if virtual_network_taps is not None: + virtual_network_taps.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.ipConfigurations[].properties.virtualNetworkTaps[]") + if _elements is not None: + _elements.set_prop("id", AAZStrType, ".id") + _elements.set_prop("location", AAZStrType, ".location") + _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _elements.set_prop("tags", AAZDictType, ".tags") + + properties = _builder.get(".properties.ipConfigurations[].properties.virtualNetworkTaps[].properties") + if properties is not None: + _UpdateHelper._build_schema_frontend_ip_configuration_update(properties.set_prop("destinationLoadBalancerFrontEndIPConfiguration", AAZObjectType, ".destination_load_balancer_front_end_ip_configuration")) + _UpdateHelper._build_schema_network_interface_ip_configuration_update(properties.set_prop("destinationNetworkInterfaceIPConfiguration", AAZObjectType, ".destination_network_interface_ip_configuration")) + properties.set_prop("destinationPort", AAZIntType, ".destination_port") + + tags = _builder.get(".properties.ipConfigurations[].properties.virtualNetworkTaps[].tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + network_security_group = _builder.get(".properties.networkSecurityGroup") if network_security_group is not None: network_security_group.set_prop("id", AAZStrType, ".id") @@ -2112,12 +2613,10 @@ def _build_schema_public_ip_address_update(cls, _builder): properties.set_prop("idleTimeoutInMinutes", AAZIntType, ".idle_timeout_in_minutes") properties.set_prop("ipAddress", AAZStrType, ".ip_address") properties.set_prop("ipTags", AAZListType, ".ip_tags") - cls._build_schema_public_ip_address_update(properties.set_prop("linkedPublicIPAddress", AAZObjectType, ".linked_public_ip_address")) properties.set_prop("natGateway", AAZObjectType, ".nat_gateway") properties.set_prop("publicIPAddressVersion", AAZStrType, ".public_ip_address_version") properties.set_prop("publicIPAllocationMethod", AAZStrType, ".public_ip_allocation_method") cls._build_schema_sub_resource_update(properties.set_prop("publicIPPrefix", AAZObjectType, ".public_ip_prefix")) - cls._build_schema_public_ip_address_update(properties.set_prop("servicePublicIPAddress", AAZObjectType, ".service_public_ip_address")) ddos_settings = _builder.get(".properties.ddosSettings") if ddos_settings is not None: diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_multiple_ipconfigs_remove_by_shorthand.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_multiple_ipconfigs_remove_by_shorthand.yaml new file mode 100644 index 00000000000..c5f72a6bb58 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_multiple_ipconfigs_remove_by_shorthand.yaml @@ -0,0 +1,2092 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001","name":"cli_test_multiple_ipconfigs_update_with_shorthand_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-31T06:44:33Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '390' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:44:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, + "subnets": [{"name": "subnet-000004", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '240' + Content-Type: + - application/json + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003\",\r\n + \ \"etag\": \"W/\\\"a8d857a7-5fac-4e9b-aeec-fddc0e39a9e8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"78a10bed-c276-4733-adcb-961fb4192fa6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\",\r\n + \ \"etag\": \"W/\\\"a8d857a7-5fac-4e9b-aeec-fddc0e39a9e8\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f61b951-caf7-4bb5-b325-21f77922049e?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '1327' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:44:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3312e009-5b4a-4554-a79a-d5d8739402b3 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f61b951-caf7-4bb5-b325-21f77922049e?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:44:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b5f84ed6-3f83-4d6d-9c80-acf594a42228 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003\",\r\n + \ \"etag\": \"W/\\\"63e9e5fc-0abf-4477-b753-6bd18dcf72e2\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"78a10bed-c276-4733-adcb-961fb4192fa6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\",\r\n + \ \"etag\": \"W/\\\"63e9e5fc-0abf-4477-b753-6bd18dcf72e2\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1329' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:44:47 GMT + etag: + - W/"63e9e5fc-0abf-4477-b753-6bd18dcf72e2" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 310109be-c889-4934-afd8-c351265f6dff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --subnet + User-Agent: + - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001","name":"cli_test_multiple_ipconfigs_update_with_shorthand_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-31T06:44:33Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '390' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:44:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"ipConfigurations": [{"name": "ipconfig1", + "properties": {"privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic create + Connection: + - keep-alive + Content-Length: + - '397' + Content-Type: + - application/json + ParameterSetName: + - -n -g --vnet-name --subnet + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"51d130f2-baee-4955-9661-5663a8a2860c\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"51d130f2-baee-4955-9661-5663a8a2860c\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2e2aa3f4-14ab-4845-a589-5ba11833bb68?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '1816' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9273f67d-0f16-4786-b8e5-d420c89e9968 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --subnet + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2e2aa3f4-14ab-4845-a589-5ba11833bb68?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:45:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0d422ca9-7006-4730-8317-aba52b88887b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --subnet + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"51d130f2-baee-4955-9661-5663a8a2860c\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"51d130f2-baee-4955-9661-5663a8a2860c\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1816' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:45:23 GMT + etag: + - W/"51d130f2-baee-4955-9661-5663a8a2860c" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 560e7805-cee0-4df9-9be2-40cb106bc0ae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"51d130f2-baee-4955-9661-5663a8a2860c\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"51d130f2-baee-4955-9661-5663a8a2860c\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1816' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:45:24 GMT + etag: + - W/"51d130f2-baee-4955-9661-5663a8a2860c" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 60670009-b3d1-4bef-a3fd-878e772655b1 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002", + "location": "westus", "properties": {"dnsSettings": {"dnsServers": []}, "enableIPForwarding": + false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1", + "name": "ipconfig1", "properties": {"primary": true, "privateIPAddress": "10.0.0.4", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"name": "ipconfig2", + "properties": {"primary": false, "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}}], + "nicType": "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + Content-Length: + - '1359' + Content-Type: + - application/json + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/567f32d6-73a7-4cd5-a29f-4d125ebed8e4?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:45:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5e0b2f96-61d8-4752-9074-04774d5a6eb1 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/567f32d6-73a7-4cd5-a29f-4d125ebed8e4?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:45:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fadd464e-dce0-4ea7-ba78-87ab6c0b1897 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:45:59 GMT + etag: + - W/"4da8b16e-0c63-4e04-9f81-13a3e0f64d65" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d6eacf61-a045-4af7-90ae-e33be74816d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"4da8b16e-0c63-4e04-9f81-13a3e0f64d65\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:46:00 GMT + etag: + - W/"4da8b16e-0c63-4e04-9f81-13a3e0f64d65" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cb10d82b-896b-470b-813f-82a7dc3d5be4 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002", + "location": "westus", "properties": {"dnsSettings": {"dnsServers": []}, "enableIPForwarding": + false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1", + "name": "ipconfig1", "properties": {"primary": true, "privateIPAddress": "10.0.0.4", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2", + "name": "ipconfig2", "properties": {"primary": false, "privateIPAddress": "10.0.0.5", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"name": "ipconfig3", + "properties": {"primary": false, "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}}], + "nicType": "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + Content-Length: + - '2027' + Content-Type: + - application/json + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6904295b-44c4-4cb8-bf6e-2346d23b7f39?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '3656' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:46:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d92ce0bf-8d1f-4997-8314-1f0170029ca7 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6904295b-44c4-4cb8-bf6e-2346d23b7f39?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 23e58bf1-5f21-4eb8-9fdc-15ec85487930 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3656' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:46:33 GMT + etag: + - W/"464c5459-3930-4beb-9ce8-0fde75b10da8" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 30fe76cc-0e51-4838-b90c-9de788cb490f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"464c5459-3930-4beb-9ce8-0fde75b10da8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3656' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:46:36 GMT + etag: + - W/"464c5459-3930-4beb-9ce8-0fde75b10da8" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dd3e8d1d-0801-41fe-ae60-86687bc54074 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002", + "location": "westus", "properties": {"dnsSettings": {"dnsServers": []}, "enableIPForwarding": + false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1", + "name": "ipconfig1", "properties": {"primary": true, "privateIPAddress": "10.0.0.4", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2", + "name": "ipconfig2", "properties": {"primary": false, "privateIPAddress": "10.0.0.5", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3", + "name": "ipconfig3", "properties": {"primary": false, "privateIPAddress": "10.0.0.6", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"name": "ipconfig4", + "properties": {"primary": false, "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}}], + "nicType": "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + Content-Length: + - '2695' + Content-Type: + - application/json + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f617c6f-2ca0-4814-aed1-1bef07490eea?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '4576' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:46:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e460b312-17aa-4ebb-8e1d-88d921a5d7cc + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f617c6f-2ca0-4814-aed1-1bef07490eea?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d40c7c81-2a52-4d53-a4aa-5ae51014e3b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4576' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:09 GMT + etag: + - W/"143690f4-775e-4b9b-b71f-ca7e5a8f89b8" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5209905-f114-437f-a420-f95a7211bcec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"143690f4-775e-4b9b-b71f-ca7e5a8f89b8\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4576' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:11 GMT + etag: + - W/"143690f4-775e-4b9b-b71f-ca7e5a8f89b8" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 717cdea6-1cd8-4216-825f-8a997ce2999d + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002", + "location": "westus", "properties": {"dnsSettings": {"dnsServers": []}, "enableIPForwarding": + false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1", + "name": "ipconfig1", "properties": {"primary": true, "privateIPAddress": "10.0.0.4", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2", + "name": "ipconfig2", "properties": {"primary": false, "privateIPAddress": "10.0.0.5", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3", + "name": "ipconfig3", "properties": {"primary": false, "privateIPAddress": "10.0.0.6", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4", + "name": "ipconfig4", "properties": {"primary": false, "privateIPAddress": "10.0.0.7", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"name": "ipconfig5", + "properties": {"primary": false, "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}}], + "nicType": "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + Content-Length: + - '3363' + Content-Type: + - application/json + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig5\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig5\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.8\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40f2fde2-e556-434e-8321-888182eeb83f?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '5496' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3ee67c3c-6f8c-417f-a7c2-7a85e5f3c33e + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40f2fde2-e556-434e-8321-888182eeb83f?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - eea9d5aa-3a91-462f-96e2-ab43e84f671e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic ip-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --nic-name + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig5\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig5\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.8\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '5496' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:45 GMT + etag: + - W/"4a778a64-ec5e-4bf4-80b8-d6940874dddd" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 270a0d02-24c3-4896-ba21-0548ace413f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic update + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-configurations + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig2\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig3\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig5\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig5\",\r\n + \ \"etag\": \"W/\\\"4a778a64-ec5e-4bf4-80b8-d6940874dddd\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.8\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '5496' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:46 GMT + etag: + - W/"4a778a64-ec5e-4bf4-80b8-d6940874dddd" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 322b2bf3-116a-4e1e-9871-213f5e6face2 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002", + "location": "westus", "properties": {"dnsSettings": {"dnsServers": []}, "enableIPForwarding": + false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1", + "name": "ipconfig1", "properties": {"primary": true, "privateIPAddress": "10.0.0.4", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4", + "name": "ipconfig4", "properties": {"primary": false, "privateIPAddress": "10.0.0.7", + "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004"}}, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations"}], "nicType": + "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic update + Connection: + - keep-alive + Content-Length: + - '1672' + Content-Type: + - application/json + ParameterSetName: + - -n -g --ip-configurations + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1afa570c-9fd2-4b9d-8e89-3d1205e65482?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:47:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 94257f5f-43cb-4de9-931f-57279136de5a + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic update + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-configurations + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1afa570c-9fd2-4b9d-8e89-3d1205e65482?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:48:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ce7cfc18-1147-4cde-8a88-891e2018c0ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network nic update + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-configurations + User-Agent: + - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"nic-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002\",\r\n + \ \"etag\": \"W/\\\"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbee0d0-f173-4b69-8b12-b18dfd002a99\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig4\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/networkInterfaces/nic-000002/ipConfigurations/ipconfig4\",\r\n + \ \"etag\": \"W/\\\"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_multiple_ipconfigs_update_with_shorthand_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/subnet-000004\"\r\n + \ },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"3uf0c4dwyizuplolsyp1igjpug.dx.internal.cloudapp.net\"\r\n },\r\n \"vnetEncryptionSupported\": + false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n + \ \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": + true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": + \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Mar 2023 06:48:20 GMT + etag: + - W/"319b822c-e81d-44d6-bc4b-ddbfd9cb5dc0" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 248c712f-b440-4c50-b8a2-4f66c004d13d + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py index 9bdb595fbb6..99f137fccea 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py @@ -4258,6 +4258,32 @@ def test_multiple_ipconfigs_update_with_asg(self): ] ) + @ResourceGroupPreparer(name_prefix="cli_test_multiple_ipconfigs_update_with_shorthand_", location="westus") + def test_multiple_ipconfigs_remove_by_shorthand(self): + self.kwargs.update({ + "nic": self.create_random_name("nic-", 8), + "vnet": self.create_random_name("vnet-", 12), + "subnet": self.create_random_name("subnet-", 12), + }) + + self.cmd("network vnet create -n {vnet} -g {rg} --subnet-name {subnet}") + self.cmd("network nic create -n {nic} -g {rg} --vnet-name {vnet} --subnet {subnet}") + + # `ipconfg1` implicitly created + self.cmd("network nic ip-config create -n ipconfig2 -g {rg} --nic-name {nic}") + self.cmd("network nic ip-config create -n ipconfig3 -g {rg} --nic-name {nic}") + self.cmd("network nic ip-config create -n ipconfig4 -g {rg} --nic-name {nic}") + self.cmd("network nic ip-config create -n ipconfig5 -g {rg} --nic-name {nic}") + + self.cmd( + "network nic update -n {nic} -g {rg} --ip-configurations [1]=null [2]=null [4]=null", + checks=[ + self.check("ipConfigurations | length(@)", 2), + self.check("ipConfigurations[0].name", "ipconfig1"), + self.check("ipConfigurations[1].name", "ipconfig4"), + ] + ) + @ResourceGroupPreparer(name_prefix='cli_test_nic_lb_address_pools', location='eastus2') def test_network_nic_lb_address_pools(self, resource_group): From 91a3cdf6b09d8a6220cbdafb6a969cb41ea9f25f Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 3 Apr 2023 15:09:28 -0400 Subject: [PATCH 094/139] Caught up with dev & manually bumped resource version & removed reservations --- src/azure-cli/requirements.py3.Darwin.txt | 3 +-- src/azure-cli/requirements.py3.Linux.txt | 3 +-- src/azure-cli/requirements.py3.windows.txt | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 6db56033b1b..31caf5281d7 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -69,8 +69,7 @@ azure-mgmt-recoveryservicesbackup==5.1.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.2.0 +azure-mgmt-resource==22.0.0 azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index aa43f28f46a..f7b2277a08a 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -69,8 +69,7 @@ azure-mgmt-recoveryservicesbackup==5.1.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.2.0 +azure-mgmt-resource==22.0.0 azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index f33689ca7c4..e1823d419c9 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -69,8 +69,7 @@ azure-mgmt-recoveryservicesbackup==5.1.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -azure-mgmt-reservations==2.0.0 -azure-mgmt-resource==21.2.0 +azure-mgmt-resource==22.0.0 azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 From da43682b3deb1a0b9c8cb8cc6f2215d703ecf77b Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 3 Apr 2023 16:40:47 -0400 Subject: [PATCH 095/139] Removed optional text from param.py & remove snapshot references --- .../cli/command_modules/resource/_params.py | 37 +-- .../cli/command_modules/resource/custom.py | 80 ------- .../resource/tests/latest/test_resource.py | 224 ------------------ 3 files changed, 2 insertions(+), 339 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 5e0874ef5e0..40f8ba26922 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -101,8 +101,8 @@ def load_arguments(self, _): stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') - stacks_stack_deployment_resource_group = CLIArgumentType(help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_stack_deployment_subscription = CLIArgumentType(help='[Optional] The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_resource_group = CLIArgumentType(help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_subscription = CLIArgumentType(help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') @@ -110,8 +110,6 @@ def load_arguments(self, _): stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') - stacks_snapshot_type = CLIArgumentType(options_list=['--id'], help='The deployment stack snapshot resource id.') - stacks_snapshot_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The deployment stack snapshot name.') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') @@ -789,37 +787,6 @@ def load_arguments(self, _): c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) - with self.argument_context('stack snapshot sub show') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_snapshot_type) - - with self.argument_context('stack snapshot sub list') as c: - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('stack', arg_type=stacks_stack_type) - - with self.argument_context('stack snapshot sub delete') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_snapshot_type) - - with self.argument_context('stack snapshot group show') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_snapshot_type) - - with self.argument_context('stack snapshot group list') as c: - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('stack', arg_type=stacks_stack_type) - - with self.argument_context('stack snapshot group delete') as c: - c.argument('name', arg_type=stacks_snapshot_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') - c.argument('stack_name', arg_type=stacks_stack_name_type) - c.argument('id', arg_type=stacks_snapshot_type) - with self.argument_context('bicep build') as c: c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to build in the file system.") c.argument('outdir', arg_type=bicep_outdir_type) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 26587ad0bd1..29ca306235a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2678,86 +2678,6 @@ def export_template_deployment_stack_at_management_group(cmd, management_group_i return rcf.deployment_stacks.export_template_at_management_group(management_group_id, id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def show_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if id: - snapshot_arr = id.split('/') - if len(snapshot_arr) < 3: - raise InvalidArgumentValueError("Please enter a valid id") - return rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name: - return rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) - raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") - - -def show_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, id=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if id: - snapshot_arr = id.split('/') - if len(snapshot_arr) < 5: - raise InvalidArgumentValueError("Please enter a valid id") - return rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name and resource_group: - return rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) - raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") - - -def list_deployment_stack_snapshot_at_subscription(cmd, stack_name=None, stack=None): - if not stack_name and not stack: - raise InvalidArgumentValueError("Please enter the stack name or stack resource id") - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if stack_name: - return rcf.deployment_stack_snapshots.list_at_subscription(stack_name) - return rcf.deployment_stack_snapshots.list_at_subscription(stack.split('/')[-1]) - - -def list_deployment_stack_snapshot_at_resource_group(cmd, stack_name=None, resource_group=None, stack=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if stack: - stack_arr = stack.split('/') - if len(stack_arr) < 5: - raise InvalidArgumentValueError("Please enter a valid id") - return rcf.deployment_stack_snapshots.list_at_resource_group(stack_arr[4], stack_arr[-1]) - if stack_name and resource_group: - return rcf.deployment_stack_snapshots.list_at_resource_group(resource_group, stack_name) - raise InvalidArgumentValueError("Please enter the stack name or stack resource id") - - -def delete_deployment_stack_snapshot_at_subscription(cmd, name=None, stack_name=None, id=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if id: - snapshot_arr = id.split('/') - try: - rcf.deployment_stack_snapshots.get_at_subscription(snapshot_arr[-3], snapshot_arr[-1]) - except: - raise ResourceNotFoundError("DeploymentStack Snapshot " + snapshot_arr[-1] + " not found in the subscription scope.") - return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name: - try: - rcf.deployment_stack_snapshots.get_at_subscription(stack_name, name) - except: - raise ResourceNotFoundError("DeploymentStack Snapshot " + name + " not found in the subscription scope.") - return sdk_no_wait(False, rcf.deployment_stack_snapshots.delete_at_subscription, stack_name, name) - raise InvalidArgumentValueError("Please enter the (snapshot name and stack name) or snapshot resource id") - - -def delete_deployment_stack_snapshot_at_resource_group(cmd, name=None, stack_name=None, resource_group=None, id=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if id: - snapshot_arr = id.split('/') - try: - rcf.deployment_stack_snapshots.get_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - except: - raise ResourceNotFoundError("Snapshot " + snapshot_arr[-1] + " not found in the stack.") - return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(snapshot_arr[4], snapshot_arr[-3], snapshot_arr[-1]) - if name and stack_name and resource_group: - try: - rcf.deployment_stack_snapshots.get_at_resource_group(resource_group, stack_name, name) - except: - raise ResourceNotFoundError("Snapshot " + name + " not found in the stack") - return rcf.deployment_stack_snapshots.begin_delete_at_resource_group(resource_group, stack_name, name) - raise InvalidArgumentValueError("Please enter the (snapshot name, stack name and resource group) or snapshot resource id") - def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) return rcf.deployment_operations.list_at_subscription_scope(deployment_name) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 913f5851b82..e0ee27b4826 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -3175,230 +3175,6 @@ def test_export_template_deployment_management_group(self): # cleanup - delete resource group two self.cmd('group delete --name {resource-group-two} --yes') -class DeploymentStacksSnapshotTest(ScenarioTest): - global location - location = "westus2" - def test_show_deployment_stack_snapshot_subscription(self): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) - self.kwargs.update({ - 'name': deployment_stack_name, - 'update-behavior': "detachResources", - 'location': location, - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - - }) - - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] - #double check this - deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] - - self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id, - 'snapshot-name': deployment_stack_snapshot_name}) - - # show snapshot with stack name and snapshot name - self.cmd('stack snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) - - # show stack with stack id - self.cmd('stack snapshot sub show --id {snapshot-id}', checks=self.check('name', '{snapshot-name}')) - - # will this need snapshot delete - # cleanup - self.cmd('stack sub delete --name {name} --yes') - - def test_list_deployment_stack_snapshot_subscription(self): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-list-deployment-stack-snapshot-subscription', 60) - - self.kwargs.update({ - 'name': deployment_stack_name, - 'location': location, - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", - }) - - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_id = created_deployment_stack['id'] - - self.kwargs.update({'id': deployment_stack_id}) - - # list snapshots using stack name - list_with_stack_name = self.cmd('stack snapshot sub list --stack-name {name}').get_output_in_json() - - self.assertTrue(len(list_with_stack_name) > 0) - self.assertTrue(list_with_stack_name[0]['name'], '{name}') - - #list snapshots using stack id - list_with_stack_id = self.cmd('stack snapshot sub list --stack {id}').get_output_in_json() - - self.assertTrue(len(list_with_stack_id) > 0) - self.assertTrue(list_with_stack_id[0]['name'], '{name}') - - # cleanup - self.cmd('stack sub delete --name {name} --yes') - - def test_delete_deployment_stack_snapshot_subscription(self): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-snapshot-subscription', 60) - - self.kwargs.update({ - 'name': deployment_stack_name, - 'location': location, - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", - }) - - # create stack - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - - #create stack again to make another snapshot - self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - - snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] - - self.kwargs.update({'snapshot-name': snapshot_name}) - - self.cmd('stack snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) - - # delete stack with snapshot name and stack name - self.cmd('stack snapshot sub delete --name {snapshot-name} --stack-name {name} --yes') - - #confirm stack is deleted - self.cmd('stack snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) - - # create stack - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - - snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] - - self.kwargs.update({'snapshot-name': snapshot_name}) - - #create stack again - self.cmd('stack sub create --name {name} --location {location} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - - snapshot_id = created_deployment_stack['snapshotId'] - - self.kwargs.update({'snapshot-id': snapshot_id}) - - self.cmd('stack snapshot sub show --name {snapshot-name} --stack-name {name}', checks=self.check('name', '{snapshot-name}')) - - # delete stack with snapshot id - self.cmd('stack snapshot sub delete --id {snapshot-id} --yes') - - #confirm stack is deleted - self.cmd('stack snapshot sub list --stack-name {name}', checks=self.check("length([?name=='{name}'])", 0)) - - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) - def test_show_deployment_stack_snapshot_resource_group(self, resource_group): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-deployment-stack-resource-group', 60) - self.kwargs.update({ - 'name': deployment_stack_name, - 'update-behavior': "detachResources", - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'resource-group': resource_group - }) - - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_snapshot_id = created_deployment_stack['snapshotId'] - #double check this - deployment_stack_snapshot_name = deployment_stack_snapshot_id.split('/')[-1] - - self.kwargs.update({'snapshot-id': deployment_stack_snapshot_id, - 'snapshot-name': deployment_stack_snapshot_name}) - - # show snapshot with stack name and snapshot name - self.cmd('stack snapshot group show --stack-name {name} --name {snapshot-name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) - - # show stack with stack id - self.cmd('stack snapshot group show --id {snapshot-id}', checks=self.check('name', '{snapshot-name}')) - - # will this need snapshot delete - # cleanup - self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stack', location=location) - def test_list_deployment_stack_snapshot_resource_group(self, resource_group): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-deployment-stack-snapshot-resource-group', 60) - - self.kwargs.update({ - 'name': deployment_stack_name, - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", - 'resource-group': resource_group - }) - - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - deployment_stack_id = created_deployment_stack['id'] - - self.kwargs.update({'id': deployment_stack_id}) - - # list snapshots using stack name - list_with_stack_name = self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}').get_output_in_json() - - self.assertTrue(len(list_with_stack_name) > 0) - self.assertTrue(list_with_stack_name[0]['name'], '{name}') - - #list snapshots using stack id - list_with_stack_id = self.cmd('stack snapshot group list --stack {id}').get_output_in_json() - - self.assertTrue(len(list_with_stack_id) > 0) - self.assertTrue(list_with_stack_id[0]['name'], '{name}') - - # cleanup - self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - - @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) - def test_delete_deployment_stack_snapshot_resource_group(self, resource_group): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-snapshot-resource-group', 60) - - self.kwargs.update({ - 'name': deployment_stack_name, - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'update-behavior': "detachResources", - 'resource-group': resource_group - }) - - # create stack - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - created_deployment_stack_second = self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - - snapshot_name = created_deployment_stack['snapshotId'].split('/')[-1] - - self.kwargs.update({'snapshot-name': snapshot_name}) - - self.cmd('stack snapshot group show --name {snapshot-name} --stack-name {name} --resource-group {resource-group}', checks=self.check('name', '{snapshot-name}')) - - # delete stack with snapshot name and stack name - self.cmd('stack snapshot group delete --name {snapshot-name} --stack-name {name} --resource-group {resource-group} --yes') - - #confirm stack is deleted - self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) - - # create stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --update-behavior {update-behavior} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - snapshot_id = created_deployment_stack_second['snapshotId'] - - self.kwargs.update({'snapshot-id': snapshot_id}) - - self.cmd('stack snapshot group show --id {snapshot-id}', checks=self.check('id', '{snapshot-id}')) - - # delete stack with snapshot id - self.cmd('stack snapshot group delete --id {snapshot-id} --yes') - - #confirm stack is deleted - self.cmd('stack snapshot group list --stack-name {name} --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) - - class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): @AllowLargeResponse(4096) From 918373a07297ad5055555afd1bd49c991b1ad6d8 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 7 Apr 2023 10:28:13 -0400 Subject: [PATCH 096/139] Addresses comments + denySettings are now required + fixed shared error --- .../cli/command_modules/resource/commands.py | 6 +- .../cli/command_modules/resource/custom.py | 61 ++--- ...st_show_deployment_stack_subscription.yaml | 221 +++++++++-------- .../resource/tests/latest/test_resource.py | 231 ++++-------------- 4 files changed, 195 insertions(+), 324 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 195e87fd540..3c4f0121411 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -400,21 +400,21 @@ def load_command_table(self, _): with self.command_group('stack mg', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_management_group') + g.custom_command('delete', 'delete_deployment_stack_at_management_group', confirmation='Are you sure you want to delete this stack?') g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_subscription') + g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation='Are you sure you want to delete this stack?') g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_subscription', table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_resource_group') + g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation='Are you sure you want to delete this stack?') g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_resource_group', table_transformer=transform_stacks_export) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 29ca306235a..41eb99b4bc0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1395,7 +1395,6 @@ def export_group_as_template( return result.template - def create_application(cmd, resource_group_name, application_name, managedby_resource_group_id, kind, managedapp_definition_id=None, location=None, @@ -2116,7 +2115,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, tags=None, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2133,6 +2132,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource if delete_resources: delete_resources_enum = delete_model + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: if deny_settings_mode.lower().replace(' ', '') == "denydelete": @@ -2200,7 +2200,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, delete_resource else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model, tags=tags) @@ -2248,9 +2248,9 @@ def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you sure you want to delete this stack" + confirmation = "Are you also sure you want to delete the specified resources: " delete_list = [] delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2272,14 +2272,9 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_reso #build confirmation string from knack.prompting import prompt_y_n - if not yes: - if not delete_list: - response = prompt_y_n(confirmation + "?") - if not response: return None - else: - confirmation += " and the specified resources: " - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if delete_list: + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2305,7 +2300,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2322,6 +2317,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ if delete_resources: delete_resources_enum = delete_model + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: if deny_settings_mode.lower().replace(' ', '') == "denydelete": @@ -2377,7 +2373,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, delete_ else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) #removed the following code because it is not in service yet, need to add this back eventually apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) @@ -2431,9 +2427,9 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): return rcf.deployment_stacks.list_at_resource_group(resource_group) raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you sure you want to delete this stack" + confirmation = "Are you also sure you want to delete the specified resources: " delete_list = [] delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2455,14 +2451,9 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=Non #build confirmation string from knack.prompting import prompt_y_n - if not yes: - if not delete_list: - response = prompt_y_n(confirmation + "?") - if not response: return None - else: - confirmation += " and the specified resources: " - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if delete_list: + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name and resource_group: try: @@ -2494,7 +2485,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_mode = None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deny_settings_mode, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2511,6 +2502,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, if delete_resources: delete_resources_enum = delete_model + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: if deny_settings_mode.lower().replace(' ', '') == "denydelete": @@ -2573,7 +2565,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, else: raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesSharedActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model, tags=tags) @@ -2621,9 +2613,9 @@ def list_deployment_stack_at_management_group(cmd, management_group_id): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_management_group(management_group_id) -def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): +def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you sure you want to delete this stack" + confirmation = "Are you also sure you want to delete the specified resources: " delete_list = [] delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2645,14 +2637,9 @@ def delete_deployment_stack_at_management_group(cmd, management_group_id, name=N #build confirmation string from knack.prompting import prompt_y_n - if not yes: - if not delete_list: - response = prompt_y_n(confirmation + "?") - if not response: return None - else: - confirmation += " and the specified resources: " - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if delete_list: + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index d10bc042abc..e05d75909d6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -28,26 +29,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:55:38 GMT + - Wed, 05 Apr 2023 17:02: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 87928FBE338F465785DE35A950665CDB Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:38Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -66,20 +64,21 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -88,35 +87,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:55:39.0390046Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n + \"2023-04-05T17:02:09.9807844Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/10a4e571-01f5-4edd-8255-2fa6d6d13311?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/34bd022a-95d5-446f-af9e-6c421efabc58?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1201' + - '1216' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:55:38 GMT + - Wed, 05 Apr 2023 17:02:10 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: BF349B7CB3E1425B84EF8F5338FC39AE Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:38Z' + - '1199' status: code: 201 message: Created @@ -132,36 +129,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/10a4e571-01f5-4edd-8255-2fa6d6d13311?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/34bd022a-95d5-446f-af9e-6c421efabc58?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/10a4e571-01f5-4edd-8255-2fa6d6d13311\",\r\n - \ \"name\": \"10a4e571-01f5-4edd-8255-2fa6d6d13311\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/34bd022a-95d5-446f-af9e-6c421efabc58\",\r\n + \ \"name\": \"34bd022a-95d5-446f-af9e-6c421efabc58\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:55:56 GMT + - Wed, 05 Apr 2023 17:02:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0455E7060DD44CA48B62010770470D85 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:56Z' status: code: 200 message: OK @@ -177,19 +177,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,32 +200,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1607' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:55:56 GMT + - Wed, 05 Apr 2023 17:02:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: ED32A3CE09034224A4CF76181075BF47 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:55:56Z' status: code: 200 message: OK @@ -242,17 +245,18 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -262,32 +266,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1607' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:55:57 GMT + - Wed, 05 Apr 2023 17:02:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5D12EE610906446984ACAC9258DC1FD2 Ref B: BL2AA2030108039 Ref C: 2023-01-09T17:55:57Z' status: code: 200 message: OK @@ -305,17 +311,18 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -325,32 +332,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1607' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:55:58 GMT + - Wed, 05 Apr 2023 17:02:29 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 57BF82CAC2E241999F9BBC64952B3000 Ref B: BL2AA2030109051 Ref C: 2023-01-09T17:55:58Z' status: code: 200 message: OK @@ -368,17 +377,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-17-55-39-3a0ee\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.3260033S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -388,32 +398,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:55:39.0390046Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:55:39.0390046Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1607' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:00 GMT + - Wed, 05 Apr 2023 17:02:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: ABDD1E475BB34E7B95F53617D562ACE4 Ref B: BL2AA2030109023 Ref C: 2023-01-09T17:55:59Z' status: code: 200 message: OK @@ -433,9 +445,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -445,21 +458,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:56:01 GMT + - Wed, 05 Apr 2023 17:02:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-msedge-ref: - - 'Ref A: A04752489A774433AC6FE08AFA33962D Ref B: BL2AA2030109023 Ref C: 2023-01-09T17:56:00Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index e0ee27b4826..76f74696118 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2172,25 +2172,25 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # deploy to rg - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deployment-resource-group {resource-group} --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deployment-resource-group {resource-group} --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') # create deployment stack with bicep file and rg scope - self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --deployment-resource-group {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --deny-settings-mode "none" --deployment-resource-group {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2199,10 +2199,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('az group create --location {location} --name {resource-group-two}') # create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --deny-settings-mode "none" --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --deny-settings-mode "none" --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2211,7 +2211,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group-two} --resource-type {resource-type-specs}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2229,10 +2229,10 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub delete --name {name} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2241,7 +2241,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-two}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --deny-settings-mode "none" --delete-resources --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2260,7 +2260,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{track-rg-file}" --deny-settings-mode "none" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2269,7 +2269,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) @@ -2294,7 +2294,7 @@ def test_show_deployment_stack_subscription(self): }) - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2322,7 +2322,7 @@ def test_list_deployment_stack_subscription(self): }) - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() @@ -2363,7 +2363,7 @@ def test_delete_deployment_stack_subscription(self): }) # create stack - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) @@ -2375,7 +2375,7 @@ def test_delete_deployment_stack_subscription(self): #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) #add delete with stack id - created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) @@ -2390,7 +2390,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('group create --location {location} --name {resource-group-two}') # create stack with resource1 to check if resources are being detached on delete - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack set to (default) detach self.cmd('stack sub delete --name {name} --yes') @@ -2399,7 +2399,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') # create stack with resource2 to check if resources are being purged on delete - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource2 set to delete self.cmd('stack sub delete --name {name} --delete-resources --yes') @@ -2411,7 +2411,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('az group delete --name {resource-group-two} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource1 set to detach self.cmd('stack sub delete --name {name} --yes') @@ -2420,7 +2420,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('group show -n {resource-one}') # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --deny-settings-mode "none" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource1 set to detach self.cmd('stack sub delete --name {name} --delete-resources --delete-resource-groups --yes') @@ -2439,7 +2439,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{track-rg-file}" --deny-settings-mode "none" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') @@ -2470,7 +2470,7 @@ def test_export_template_deployment_stack_subscription(self): }) - created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2525,28 +2525,28 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') #create deployment stack with template spec and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # create deployment stack with bicep file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # test flag: delete--resources, create deployment stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # update stack, default actionOnUnmanage settings should be detached - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # check that resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group} --resource-type {resource-type-specs}') @@ -2555,7 +2555,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('resource show -n {resource-two} -g {resource-group} --resource-type {resource-type-specs}') # update stack with resource3 with delete-resources flag - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-three}" --delete-resources --yes', checks=self.check('provisioningState', 'succeeded')) # check that resource3 exists in Azure self.cmd('resource show -n {resource-three} -g {resource-group} --resource-type {resource-type-specs}') @@ -2570,7 +2570,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --deny-settings-mode "none" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 1)) @@ -2579,7 +2579,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) @@ -2598,13 +2598,13 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --deny-settings-mode "none" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') # create stack with delete-all set - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) #confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) @@ -2627,7 +2627,7 @@ def test_show_deployment_stack_resource_group(self, resource_group): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2654,7 +2654,7 @@ def test_list_deployment_stack_resource_group(self, resource_group): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks in rg list_deployment_stacks_rg = self.cmd('stack group list --resource-group {resource-group}').get_output_in_json() @@ -2692,7 +2692,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): }) # create stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2703,7 +2703,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack - created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id':stack_id}) @@ -2720,7 +2720,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack with resource1 to check if resources are being detached on delete - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack set to (default) detach self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') @@ -2729,7 +2729,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') # create stack with resource2 to check if resources are being detached on delete - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource2 set to delete self.cmd('stack group delete -g {resource-group-two} --name {name} --delete-resources --yes') @@ -2744,7 +2744,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file}" --deny-settings-mode "none" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) # check template spec exists in Azure self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 1)) @@ -2769,7 +2769,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('group create --location {location} --name {resource-group-two}') # create stack - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{track-rg-file-only}" --deny-settings-mode "none" --parameters "rgname={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') @@ -2795,7 +2795,7 @@ def test_export_template_deployment_stack_resource_group(self, resource_group): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), }) - created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2852,7 +2852,7 @@ def test_create_deployment_stack_management_group(self, resource_group): #self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') @@ -2864,10 +2864,10 @@ def test_create_deployment_stack_management_group(self, resource_group): #self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2876,7 +2876,7 @@ def test_create_deployment_stack_management_group(self, resource_group): self.cmd('group show -n {resource-two}') # update stack with resource3 set to delete - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-three}" --delete-resources --delete-resources', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-three}" --delete-resources --delete-resources', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') @@ -2904,7 +2904,7 @@ def test_show_deployment_stack_management_group(self): #self.cmd('account management-group create --name {mg}', checks=[]) - created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -2951,7 +2951,7 @@ def test_delete_deployment_stack_management_group(self): #self.cmd('account management-group create --name {mg}', checks=[]) # create stack - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # check stack to make sure it exists self.cmd('stack mg show --name {name} --management-group-id {mg}', checks=self.check('name', '{name}')) @@ -2960,7 +2960,7 @@ def test_delete_deployment_stack_management_group(self): self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') #add delete with stack id - created_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] self.kwargs.update({'id': stack_id}) @@ -2969,7 +2969,7 @@ def test_delete_deployment_stack_management_group(self): self.cmd('stack mg delete --id {id} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource1 set to detach self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') @@ -2978,7 +2978,7 @@ def test_delete_deployment_stack_management_group(self): self.cmd('group show -n {resource-one}') # update stack with resource3 set to delete - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) # delete stack with resource1 set to detach self.cmd('stack mg delete --name {name} --management-group-id {mg} --delete-resources --delete-resource-groups --yes') @@ -3006,7 +3006,7 @@ def test_export_template_deployment_stack_management_group(self): #self.cmd('account management-group create --name {mg}', checks=[]) - created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] self.kwargs.update({'deployment-stack-id': deployment_stack_id}) @@ -3037,7 +3037,7 @@ def test_list_deployment_stack_management_group(self): 'actual-mg':self.create_random_name('azure-cli-management', 30) }) - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() # list stacks list_deployment_stacks = self.cmd('stack mg list --management-group-id {mg}').get_output_in_json() @@ -3048,133 +3048,6 @@ def test_list_deployment_stack_management_group(self): # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - - @AllowLargeResponse(4096) - def test_export_template_deployment_management_group(self): - curr_dir = os.path.dirname(os.path.realpath(__file__)) - deployment_stack_name = self.create_random_name('cli-test-delete-deployment-stack-subscription', 60) - resource_one = self.create_random_name('cli-test-resource-one', 60) - resource_two = self.create_random_name('cli-test-resource-two', 60) - resource_three = self.create_random_name('cli-test-resource-three', 60) - template_spec_name = self.create_random_name('cli-test-template-spec', 60) - resource_group_two = self.create_random_name('cli-test-cli_test_deployment_stacks-two', 60) - - self.kwargs.update({ - 'name': deployment_stack_name, - 'location': location, - 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), - 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), - 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), - 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), - 'template-spec-name': template_spec_name, - 'template-spec-version': "v1", - 'resource-one': resource_one, - 'resource-two': resource_two, - 'resource-three': resource_three, - 'resource-group-two': resource_group_two, - 'resource-type-specs': "Microsoft.Resources/templateSpecs" - }) - - # create stack - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - - # check stack to make sure it exists - self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) - - # delete stack with stack name - self.cmd('stack sub delete --name {name} --yes') - - #confirm stack is deleted - #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) - - #add delete with stack id - created_stack = self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - stack_id = created_stack['id'] - - self.kwargs.update({'id': stack_id}) - - # delete stack with id - self.cmd('stack sub delete --id {id} --yes') - - #confirm stack is deleted - #self.cmd('stack sub list', checks=self.check("length([?name=='{name}'])", 0)) - - # create new resource group - delete flag --delete-resources - self.cmd('group create --location {location} --name {resource-group-two}') - - # create stack with resource1 to check if resources are being detached on delete - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) - - # delete stack set to (default) detach - self.cmd('stack sub delete --name {name} --yes') - - # check resource1 still exists in Azure - self.cmd('resource show -n {resource-one} -g {resource-group-two} --resource-type {resource-type-specs}') - - # create stack with resource2 to check if resources are being purged on delete - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{template-file-spec}" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) - - # delete stack with resource2 set to delete - self.cmd('stack sub delete --name {name} --delete-resources --yes') - - #confirm resource2 has been removed from Azure - self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) - - # cleanup - delete resource group two - self.cmd('az group delete --name {resource-group-two} --yes') - - # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) - - # delete stack with resource1 set to detach - self.cmd('stack sub delete --name {name} --yes') - - # check resource1 still exists in Azure - self.cmd('group show -n {resource-one}') - - # update stack with resource3 set to delete - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-two}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')) - - # delete stack with resource1 set to detach - self.cmd('stack sub delete --name {name} --delete-resources --delete-resource-groups --yes') - - # check resource1 still exists in Azure - self.cmd('group show -n {resource-one}') - - #confirm resource2 has been removed from Azure - self.cmd('group list', checks=self.check("length([?name=='{resource-two}'])", 0)) - - # cleanup - self.cmd('group delete --name {resource-one} --yes') - - #new code - # create new resource group - testing delete-all flag - self.cmd('group create --location {location} --name {resource-group-two}') - - # create stack - self.cmd('stack sub create --name {name} --location {location} -g {resource-group-two} --template-file "{track-rg-file}" --parameters "rgname={resource-one}" "tsname={template-spec-name}" --yes', checks=self.check('provisioningState', 'succeeded')) - - # check template spec exists in Azure - self.cmd('resource show -n {template-spec-name} -g {resource-group-two} --resource-type {resource-type-specs}') - - # check rg resource1 exists in Azure - self.cmd('group show -n {resource-one}') - - # create stack with delete-all set - self.cmd('stack sub delete --name {name} --delete-all --yes') - - # confirm template spec has been removed from azure - self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{template-spec-name}'])", 0)) - - #confirm rg resource1 has been removed from azure - self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) - - # cleanup - delete resource group two - self.cmd('group delete --name {resource-group-two} --yes') - class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): @AllowLargeResponse(4096) From c583d27dca5ef3994b7b8ea6d012afb0119408dc Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 10 Apr 2023 17:12:01 -0400 Subject: [PATCH 097/139] retrigger checks From db79d450ba2be01fae6c19936a56f319ccc5a50e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 11 Apr 2023 10:48:36 -0400 Subject: [PATCH 098/139] removed reservations and bumped resources version to 22 --- src/azure-cli/setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 2c9d94bb6d2..d82bdd8435c 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -113,8 +113,7 @@ 'azure-mgmt-redhatopenshift~=1.2.0', 'azure-mgmt-redis~=14.1.0', 'azure-mgmt-relay~=0.1.0', - 'azure-mgmt-reservations==2.0.0', # TODO: Use requirements.txt instead of '==' #9781 - 'azure-mgmt-resource==21.2.0', + 'azure-mgmt-resource==22.0.0', 'azure-mgmt-search~=9.0', 'azure-mgmt-security==3.0.0', 'azure-mgmt-servicebus~=8.2.0', From 60971008f110c8a277020c227314219823bb8eed Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 17 Apr 2023 14:46:24 -0400 Subject: [PATCH 099/139] Added bicep param support & reverted yes confirmation [tested] --- .../cli/command_modules/resource/_help.py | 2 +- .../cli/command_modules/resource/commands.py | 6 +- .../cli/command_modules/resource/custom.py | 161 +- ...ate_deployment_stack_management_group.yaml | 1438 ++---- ...reate_deployment_stack_resource_group.yaml | 3555 +++++++++----- ..._create_deployment_stack_subscription.yaml | 4228 ++++++++++------- ...ete_deployment_stack_management_group.yaml | 881 ++-- ...elete_deployment_stack_resource_group.yaml | 2019 ++++---- ..._delete_deployment_stack_subscription.yaml | 2572 +++++----- ...ate_deployment_stack_management_group.yaml | 207 +- ...plate_deployment_stack_resource_group.yaml | 199 +- ...emplate_deployment_stack_subscription.yaml | 224 +- ...ist_deployment_stack_management_group.yaml | 303 +- ..._list_deployment_stack_resource_group.yaml | 159 +- ...st_list_deployment_stack_subscription.yaml | 1191 ++++- ...how_deployment_stack_management_group.yaml | 198 +- ..._show_deployment_stack_resource_group.yaml | 204 +- ...st_show_deployment_stack_subscription.yaml | 70 +- .../resource/tests/latest/test_resource.py | 31 +- 19 files changed, 9966 insertions(+), 7682 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index b139ba08cf0..b785d519366 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2837,7 +2837,7 @@ helps['stack'] = """ type: group short-summary: A deployment stack is a native Azure resource type that enables you to perform operations on a resource collection as an atomic unit. -long-summary: Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 1.9) +long-summary: Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 2.0) """ helps['stack mg create'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 3c4f0121411..195e87fd540 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -400,21 +400,21 @@ def load_command_table(self, _): with self.command_group('stack mg', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_management_group', confirmation='Are you sure you want to delete this stack?') + g.custom_command('delete', 'delete_deployment_stack_at_management_group') g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_subscription', confirmation='Are you sure you want to delete this stack?') + g.custom_command('delete', 'delete_deployment_stack_at_subscription') g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_subscription', table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) - g.custom_command('delete', 'delete_deployment_stack_at_resource_group', confirmation='Are you sure you want to delete this stack?') + g.custom_command('delete', 'delete_deployment_stack_at_resource_group') g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) g.custom_command('export', 'export_template_deployment_stack_at_resource_group', table_transformer=transform_stacks_export) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 41eb99b4bc0..2a415f66d3c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2216,11 +2216,29 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m deployment_stack_model.template_link = deployment_stacks_template_link template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: - template_content = ( - run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) - if is_bicep_file(template_file) - else read_file_content(template_file) - ) + if _is_bicepparam_file_provided(parameters): + ensure_bicep_installation(cmd.cli_ctx) + + minimum_supported_version = "0.14.85" + if not bicep_version_greater_than_or_equal_to(minimum_supported_version): + raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + if len(parameters) > 1: + raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + bicepparam_file = parameters[0][0] + if not is_bicep_file(template_file): + raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") + + build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output_json = json.loads(build_bicepparam_output) + template_content = build_bicepparam_output_json["templateJson"] + bicepparam_json_content = build_bicepparam_output_json["parametersJson"] + else: + template_content = ( + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) + template_obj = _remove_comments_from_json(template_content, file_path=template_file) if is_bicep_file(template_file): deployment_stack_model.template = json.loads(json.dumps(template_obj)) @@ -2229,9 +2247,14 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m template_param_defs = template_obj.get('parameters', {}) template_obj['resources'] = template_obj.get('resources', []) - parameters = _process_parameters(template_param_defs, parameters) or {} - parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters) - parameters = json.loads(json.dumps(parameters)) + + if _is_bicepparam_file_provided(parameters): + parameters = json.loads(bicepparam_json_content).get('parameters', {}) + else: + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) + parameters = json.loads(json.dumps(parameters)) + deployment_stack_model.parameters = parameters return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) @@ -2248,9 +2271,9 @@ def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you also sure you want to delete the specified resources: " + confirmation = "Are you sure you want to delete this stack" delete_list = [] delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2272,9 +2295,14 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_reso #build confirmation string from knack.prompting import prompt_y_n - if delete_list: - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: return None + else: + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2390,11 +2418,28 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se deployment_stack_model.template_link = deployment_stacks_template_link template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: - template_content = ( - run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) - if is_bicep_file(template_file) - else read_file_content(template_file) - ) + if _is_bicepparam_file_provided(parameters): + ensure_bicep_installation(cmd.cli_ctx) + + minimum_supported_version = "0.14.85" + if not bicep_version_greater_than_or_equal_to(minimum_supported_version): + raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + if len(parameters) > 1: + raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + bicepparam_file = parameters[0][0] + if not is_bicep_file(template_file): + raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") + + build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output_json = json.loads(build_bicepparam_output) + template_content = build_bicepparam_output_json["templateJson"] + bicepparam_json_content = build_bicepparam_output_json["parametersJson"] + else: + template_content = ( + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) template_obj = _remove_comments_from_json(template_content, file_path=template_file) if is_bicep_file(template_file): deployment_stack_model.template = json.loads(json.dumps(template_obj)) @@ -2403,9 +2448,14 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se template_param_defs = template_obj.get('parameters', {}) template_obj['resources'] = template_obj.get('resources', []) - parameters = _process_parameters(template_param_defs, parameters) or {} - parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters) - parameters = json.loads(json.dumps(parameters)) + + if _is_bicepparam_file_provided(parameters): + parameters = json.loads(bicepparam_json_content).get('parameters', {}) + else: + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) + parameters = json.loads(json.dumps(parameters)) + deployment_stack_model.parameters = parameters return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) @@ -2427,9 +2477,9 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): return rcf.deployment_stacks.list_at_resource_group(resource_group) raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you also sure you want to delete the specified resources: " + confirmation = "Are you sure you want to delete this stack" delete_list = [] delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2451,9 +2501,14 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=Non #build confirmation string from knack.prompting import prompt_y_n - if delete_list: - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: return None + else: + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name and resource_group: try: @@ -2581,11 +2636,29 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, deployment_stack_model.template_link = deployment_stacks_template_link template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) else: - template_content = ( - run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) - if is_bicep_file(template_file) - else read_file_content(template_file) - ) + if _is_bicepparam_file_provided(parameters): + ensure_bicep_installation(cmd.cli_ctx) + + minimum_supported_version = "0.14.85" + if not bicep_version_greater_than_or_equal_to(minimum_supported_version): + raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + if len(parameters) > 1: + raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + bicepparam_file = parameters[0][0] + if not is_bicep_file(template_file): + raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") + + build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output_json = json.loads(build_bicepparam_output) + template_content = build_bicepparam_output_json["templateJson"] + bicepparam_json_content = build_bicepparam_output_json["parametersJson"] + else: + template_content = ( + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) + template_obj = _remove_comments_from_json(template_content, file_path=template_file) if is_bicep_file(template_file): deployment_stack_model.template = json.loads(json.dumps(template_obj)) @@ -2594,9 +2667,14 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, template_param_defs = template_obj.get('parameters', {}) template_obj['resources'] = template_obj.get('resources', []) - parameters = _process_parameters(template_param_defs, parameters) or {} - parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters) - parameters = json.loads(json.dumps(parameters)) + + if _is_bicepparam_file_provided(parameters): + parameters = json.loads(bicepparam_json_content).get('parameters', {}) + else: + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) + parameters = json.loads(json.dumps(parameters)) + deployment_stack_model.parameters = parameters return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_management_group, management_group_id, name, deployment_stack_model) @@ -2613,9 +2691,9 @@ def list_deployment_stack_at_management_group(cmd, management_group_id): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_management_group(management_group_id) -def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False): +def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you also sure you want to delete the specified resources: " + confirmation = "Are you sure you want to delete this stack" delete_list = [] delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach @@ -2637,9 +2715,14 @@ def delete_deployment_stack_at_management_group(cmd, management_group_id, name=N #build confirmation string from knack.prompting import prompt_y_n - if delete_list: - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: return None + else: + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml index 27a00ce300d..74064bba2fb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml @@ -1,568 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ts create - Connection: - - keep-alive - ParameterSetName: - - --name --version --location --template-file --resource-group - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' - under resource group ''cli_test_deployment_stacks000001'' was not found. For - more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '278' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:13: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-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 1EBEC6FBB6E24458817D2772F0158B1A Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:13:57Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ts create - Connection: - - keep-alive - ParameterSetName: - - --name --version --location --template-file --resource-group - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' - under resource group ''cli_test_deployment_stacks000001'' was not found. For - more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:13: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-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: BFFCAA01573E45DCA14D5875524AFBB1 Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:13:57Z' - status: - code: 404 - message: Not Found -- request: - body: '{"location": "westus2", "tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ts create - Connection: - - keep-alive - Content-Length: - - '35' - Content-Type: - - application/json - ParameterSetName: - - --name --version --location --template-file --resource-group - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:00.2905459Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:00.2905459Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '632' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14: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-ratelimit-remaining-subscription-writes: - - '1193' - x-msedge-ref: - - 'Ref A: A1CEE96130CC48FEBF5D714058A72EF6 Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:13:58Z' - status: - code: 201 - message: Created -- request: - body: '{"location": "westus2", "tags": {}, "properties": {"linkedTemplates": [], - "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": - "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", - "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": - [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", - "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ts create - Connection: - - keep-alive - Content-Length: - - '601' - Content-Type: - - application/json - ParameterSetName: - - --name --version --location --template-file --resource-group - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:03.6038462Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:03.6038462Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": - \"v1\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1478' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14: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-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: 2C0C4D89598C4F6A9A2EEBA2BBC7AE42 Ref B: BL2AA2030108045 Ref C: 2023-01-09T20:14:01Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '199' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14: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-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 7A33842B5C194305B34B11748DDEC16A Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:05Z' - status: - code: 404 - message: Not Found -- request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": - "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", - "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": - [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", - "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {"applyToChildScopes": false}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - Content-Length: - - '822' - Content-Type: - - application/json - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T20:14:07.2396314Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:07.2396314Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4?api-version=2022-08-01-preview - cache-control: - - no-cache - content-length: - - '1219' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14: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-ratelimit-remaining-tenant-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 09DBC3D2B9574609A84301F229EFCCAC Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:05Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4\",\r\n - \ \"name\": \"1b1cf555-0f42-4875-b4f0-1bdfd2bdcdc4\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '215' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C86E94C73538446A88BBCDCBCB798D94 Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-07-6d0c0\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.5668858S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:07.2396314Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:07.2396314Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1612' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E2EBA2AF669B44E8B5E009B61096C26F Ref B: BL2AA2030110017 Ref C: 2023-01-09T20:14:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg delete - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-07-6d0c0\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.5668858S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:07.2396314Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:07.2396314Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1612' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2A781F84D7504A9BB19FFCCD8150327A Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:14:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --management-group-id --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 09 Jan 2023 20:14:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: E53E92A6CF85435EA5F5FBA72D6FF2C2 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:14:29Z' - status: - code: 200 - message: OK - request: body: null headers: @@ -575,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -592,88 +30,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:30 GMT + - Mon, 17 Apr 2023 17:34: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: AE2C3382BF0045F9830B964664C1C665 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:31Z' status: code: 404 message: Not Found - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-spec --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n - \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": - {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n - \ \"metadata\": {\r\n \"description\": \"description\"\r\n - \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n - \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": - \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": - [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": - \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": - \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n - \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:03.6038462Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:03.6038462Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": - \"v1\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1478' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:14:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 985838BAD2F3480EBC14AEFB7E5B85EB Ref B: BL2AA2030110029 Ref C: 2023-01-09T20:14:31Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, + body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": false}}}' @@ -687,15 +64,17 @@ interactions: Connection: - keep-alive Content-Length: - - '511' + - '822' Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-spec --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -705,40 +84,37 @@ interactions: {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:34.4801965Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:34.4801965Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-04-17T17:34:39.7844873Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:34:39.7844873Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/37e7ee1a-0bc6-4cad-b00d-21494efb8aed?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab1b41f8-7c99-4593-b14a-658ac1125129?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1450' + - '1226' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:36 GMT + - Mon, 17 Apr 2023 17:34:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - '1199' - x-msedge-ref: - - 'Ref A: 667DF5A212EE45E8A953910CDF78EF53 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:32Z' status: code: 201 message: Created @@ -754,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/37e7ee1a-0bc6-4cad-b00d-21494efb8aed?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab1b41f8-7c99-4593-b14a-658ac1125129?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/37e7ee1a-0bc6-4cad-b00d-21494efb8aed\",\r\n - \ \"name\": \"37e7ee1a-0bc6-4cad-b00d-21494efb8aed\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab1b41f8-7c99-4593-b14a-658ac1125129\",\r\n + \ \"name\": \"ab1b41f8-7c99-4593-b14a-658ac1125129\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:53 GMT + - Mon, 17 Apr 2023 17:34:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D546BEDB6AF148EFB5B892FAA3B3B07D Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:53Z' status: code: 200 message: OK @@ -799,55 +179,58 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-spec --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-34-720a2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-34-40-04a93\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.529327S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.2430842S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:34.4801965Z\",\r\n + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:34:39.7844873Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:34.4801965Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:34:39.7844873Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1842' + - '1618' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:54 GMT + - Mon, 17 Apr 2023 17:34:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0BE8D7B6388B4462A42797EFA23A8977 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:14:54Z' status: code: 200 message: OK @@ -865,53 +248,55 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-14-34-720a2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-34-40-04a93\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.529327S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.2430842S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:34.4801965Z\",\r\n + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:34:39.7844873Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:34.4801965Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:34:39.7844873Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1842' + - '1618' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:55 GMT + - Mon, 17 Apr 2023 17:34:59 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 411092686D604988825523FC72531CA5 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:14:55Z' status: code: 200 message: OK @@ -931,9 +316,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -943,21 +329,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:14:58 GMT + - Mon, 17 Apr 2023 17:34:59 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - '14999' - x-msedge-ref: - - 'Ref A: FA470FF10EFC4F45BE9610734B9BB78A Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:14:56Z' status: code: 200 message: OK @@ -973,11 +357,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -990,21 +376,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:58 GMT + - Mon, 17 Apr 2023 17:34: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: BD68B074E56E464A89F8C960A3571717 Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:14:58Z' status: code: 404 message: Not Found @@ -1032,11 +414,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1049,36 +433,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:59.9307064Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:00.2209301Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e71faa14-3716-4c1c-bd75-b1ec1882b8cf?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f007e957-6463-48c5-b189-9d53f18c1b16?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1194' + - '1201' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:14:59 GMT + - Mon, 17 Apr 2023 17:35:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' - x-msedge-ref: - - 'Ref A: E53F6E3FB95C4AC9967E7CECDB9B0B37 Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:14:59Z' + - '1199' status: code: 201 message: Created @@ -1094,36 +476,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e71faa14-3716-4c1c-bd75-b1ec1882b8cf?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f007e957-6463-48c5-b189-9d53f18c1b16?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e71faa14-3716-4c1c-bd75-b1ec1882b8cf\",\r\n - \ \"name\": \"e71faa14-3716-4c1c-bd75-b1ec1882b8cf\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f007e957-6463-48c5-b189-9d53f18c1b16\",\r\n + \ \"name\": \"f007e957-6463-48c5-b189-9d53f18c1b16\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:15:17 GMT + - Mon, 17 Apr 2023 17:35:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FC2326B3038F4F8ABDC05A58BCA368CE Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:15:17Z' status: code: 200 message: OK @@ -1139,19 +525,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-15-00-33ae9\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-00-8c2cd\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT8.4787757S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.4772421S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1159,32 +547,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:14:59.9307064Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:00.2209301Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1624' + - '1631' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:15:17 GMT + - Mon, 17 Apr 2023 17:35:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6383C58625344B1EB53978AFBDEC0512 Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:15:17Z' status: code: 200 message: OK @@ -1200,41 +590,59 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-00-8c2cd\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT6.4772421S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:00.2209301Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '199' + - '1631' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:15:18 GMT + - Mon, 17 Apr 2023 17:35:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 80E821611953401794E6EB805765B390 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:15:19Z' status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", @@ -1259,11 +667,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1276,126 +686,38 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:15:20.1126571Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:19.6109182Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69ecd8b5-3b54-4448-ae82-75c5138361f8?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1194' + - '1201' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:15:20 GMT + - Mon, 17 Apr 2023 17:35:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - '1199' - x-msedge-ref: - - 'Ref A: 4FAF6C84AFF3424BB6CBAEEA67A170BE Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:15:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00\",\r\n - \ \"name\": \"80f53229-910d-404e-80d7-c5164cb37c00\",\r\n \"status\": \"initializing\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '218' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:15:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5DA41ED96DF0443B874696DD426253DD Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:15:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00\",\r\n - \ \"name\": \"80f53229-910d-404e-80d7-c5164cb37c00\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '215' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:16:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5599BB7304DD4A87B8C5CBEDDDF588E3 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:16:08Z' status: code: 200 message: OK @@ -1411,36 +733,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69ecd8b5-3b54-4448-ae82-75c5138361f8?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80f53229-910d-404e-80d7-c5164cb37c00\",\r\n - \ \"name\": \"80f53229-910d-404e-80d7-c5164cb37c00\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69ecd8b5-3b54-4448-ae82-75c5138361f8\",\r\n + \ \"name\": \"69ecd8b5-3b54-4448-ae82-75c5138361f8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:16:38 GMT + - Mon, 17 Apr 2023 17:35:36 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 40056A65375B4C9D89BE497019FDE74D Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:16:38Z' status: code: 200 message: OK @@ -1456,19 +782,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-15-20-09e9f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-19-4388d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT49.8673079S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.129553S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1477,32 +805,34 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:15:20.1126571Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:19.6109182Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1761' + - '1766' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:16:39 GMT + - Mon, 17 Apr 2023 17:35:36 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E3D30E8C68A04F478C273A5635E46B99 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:16:39Z' status: code: 200 message: OK @@ -1520,9 +850,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1534,19 +865,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:16:40 GMT + - Mon, 17 Apr 2023 17:35:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4B9E5B76BE6B4D4C98D1BF980900D37D Ref B: BL2AA2030108053 Ref C: 2023-01-09T20:16:40Z' status: code: 200 message: OK @@ -1564,9 +893,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1578,19 +908,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:16:40 GMT + - Mon, 17 Apr 2023 17:35:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9FC29A5676FB45BBA6DE9CBC70A1BBD9 Ref B: BL2AA2030109033 Ref C: 2023-01-09T20:16:41Z' status: code: 200 message: OK @@ -1606,42 +934,60 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resources User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-19-4388d\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT5.129553S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:19.6109182Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '199' + - '1766' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:16:42 GMT + - Mon, 17 Apr 2023 17:35:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: B5AC702F39D94E93A710D98A96217C0B Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:16:42Z' status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", @@ -1666,12 +1012,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resources User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1684,36 +1031,38 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:16:43.5806983Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:39.2800901Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bce67ed4-9fbc-481e-a094-17f85aebbe84?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1196' + - '1203' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:16:44 GMT + - Mon, 17 Apr 2023 17:35:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 7A3E37044D9A4ADDB00C6B6493A4FAF6 Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:16:43Z' + - '1199' status: code: 200 message: OK @@ -1729,37 +1078,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resources User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bce67ed4-9fbc-481e-a094-17f85aebbe84?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/bce67ed4-9fbc-481e-a094-17f85aebbe84\",\r\n - \ \"name\": \"bce67ed4-9fbc-481e-a094-17f85aebbe84\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa\",\r\n + \ \"name\": \"6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:17:02 GMT + - Mon, 17 Apr 2023 17:35:56 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9125EB09B04F44D19B0EB85C45496B45 Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:17:02Z' status: code: 200 message: OK @@ -1775,20 +1127,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resources + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resources User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-16-43-d4cf4\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-39-69c38\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.6770911S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.1114154S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1797,32 +1150,34 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:16:43.5806983Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:39.2800901Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1765' + - '1771' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:17:03 GMT + - Mon, 17 Apr 2023 17:35:56 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6533F1D8623F45218D9F622647966D52 Ref B: BL2AA2030107033 Ref C: 2023-01-09T20:17:03Z' status: code: 200 message: OK @@ -1840,9 +1195,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1854,19 +1210,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:17:04 GMT + - Mon, 17 Apr 2023 17:35:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AEA647B849E74D9F8937BDA3A956D930 Ref B: BL2AA2030106005 Ref C: 2023-01-09T20:17:05Z' status: code: 200 message: OK @@ -1884,9 +1238,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1898,19 +1253,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:17:06 GMT + - Mon, 17 Apr 2023 17:35:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 27A0DA47F1E4433B84FB372AE30D7B8A Ref B: BL2AA2030108003 Ref C: 2023-01-09T20:17:05Z' status: code: 200 message: OK @@ -1926,33 +1279,86 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory + Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working + Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU + Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage + - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX%2fnlZqJkWq9rYHlb66X7%2f3pP4x6rZDvzh0x8vo84%2fRtrr014s%2f%2bjza3tKrKfek0OxW%2beqWNM8HPe7rpJOvuL%2bWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ%2fYdzs%2f5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW%2f3E5lqz8wN%2bhHXL7dwMFWILwlqHjXO2VtbP%2fRnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2bOPzpZImYpxr%2f1v%2fNnnRi%2fXCTpPcfv3b8Q1ysLCepp9xn6%2b8B%2ftSnVoogdxgd%2fTsXdvAIMyOnBX5BMl%2bjR0dwf%2bIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2bRI8URSxOobGP9dH%2fNlC%2buTmsD%2f6SsFiWLXpVnw3ZnZdO24d%2fvqVVnKb4phI5hpZ4ofGHw2M%2b%2fqeVBD7HmNCQlP3WoFA%2feDhk%2bM237BvhyM%2fSAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC%2fqpPD4GL2W%2fZ3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2bj9bVWsIqpK7r%2fCfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu%2fpwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2bOjlOblH7Sor3Tg1ji%2beuLOWFbs7rKAYAmJ%2f25jvy73f8dAHMionmSgGGLMvity%2bC6%2bfBn9%2fPkL"}' + headers: + cache-control: + - no-cache + content-length: + - '109381' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 17:35:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX/nlZqJkWq9rYHlb66X7/3pP4x6rZDvzh0x8vo84/Rtrr014s/%2Bjza3tKrKfek0OxW%2BeqWNM8HPe7rpJOvuL%2BWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ/Ydzs/5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW/3E5lqz8wN%2BhHXL7dwMFWILwlqHjXO2VtbP/RnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2BOPzpZImYpxr/1v/NnnRi/XCTpPcfv3b8Q1ysLCepp9xn6%2B8B/tSnVoogdxgd/TsXdvAIMyOnBX5BMl%2BjR0dwf%2BIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2BRI8URSxOobGP9dH/NlC%2BuTmsD/6SsFiWLXpVnw3ZnZdO24d/vqVVnKb4phI5hpZ4ofGHw2M%2B/qeVBD7HmNCQlP3WoFA/eDhk%2BM237BvhyM/SAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC/qpPD4GL2W/Z3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2Bj9bVWsIqpK7r/CfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu/pwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2BOjlOblH7Sor3Tg1ji%2BeuLOWFbs7rKAYAmJ/25jvy73f8dAHMionmSgGGLMvity%2BC6%2BfBn9/PkL response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T20:13:59.0404483Z","changedTime":"2023-01-09T20:14:00.931093Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T20:14:00.2905459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T20:14:00.2905459Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T20:14:03.0928396Z","changedTime":"2023-01-09T20:14:04.3437749Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T20:14:03.6038462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T20:14:03.6038462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' headers: cache-control: - no-cache content-length: - - '64779' + - '4342' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:17:08 GMT + - Mon, 17 Apr 2023 17:36:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 912E265D9D88455D830E821D3840806F Ref B: BL2AA2030109037 Ref C: 2023-01-09T20:17:07Z' status: code: 200 message: OK @@ -1970,17 +1376,18 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-20-16-43-d4cf4\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-39-69c38\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.6770911S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.1114154S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1989,32 +1396,34 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:14:59.9307064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:16:43.5806983Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:39.2800901Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1765' + - '1771' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:17:08 GMT + - Mon, 17 Apr 2023 17:36:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EBB1DE8F2FF34D07806DB91E455804DE Ref B: BL2AA2030107051 Ref C: 2023-01-09T20:17:08Z' status: code: 200 message: OK @@ -2034,9 +1443,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -2046,21 +1456,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:17:09 GMT + - Mon, 17 Apr 2023 17:36:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: 87EB80A049F64CA9A8CF2A61097CC4CE Ref B: BL2AA2030107051 Ref C: 2023-01-09T20:17:09Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index f0a25cf476a..b3a5ff06183 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -13,9 +13,10 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' @@ -29,21 +30,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:03 GMT + - Mon, 17 Apr 2023 15:13: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: D14EBFD670A0462288764835CEA6EA05 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:03Z' status: code: 404 message: Not Found @@ -61,9 +58,10 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' @@ -77,21 +75,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:03 GMT + - Mon, 17 Apr 2023 15:13: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: DFEB84465EC94DBC97987D45673B3D12 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:03Z' status: code: 404 message: Not Found @@ -113,16 +107,17 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:05.6032519Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:21.9822121Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:05.6032519Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:21.9822121Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -133,21 +128,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:06 GMT + - Mon, 17 Apr 2023 15:13:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: 1525007D448746168E41A1E2756AAC74 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:03Z' + - '1199' status: code: 201 message: Created @@ -175,9 +168,10 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -193,35 +187,33 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:08.5885893Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:23.810323Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:08.5885893Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:23.810323Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1478' + - '1476' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:08 GMT + - Mon, 17 Apr 2023 15:13:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-msedge-ref: - - 'Ref A: 610755E4F7E6450F86720C3AA9894328 Ref B: BL2AA2030106009 Ref C: 2023-01-09T18:57:06Z' + - '1198' status: code: 201 message: Created @@ -237,11 +229,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -255,19 +249,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:09 GMT + - Mon, 17 Apr 2023 15:13:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9A1F877BDBD64161AC622DD486EA9852 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:09Z' status: code: 404 message: Not Found @@ -295,11 +287,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -311,14 +305,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:10.4150758Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:25.2749795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:10.4150758Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:25.2749795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b960a213-1dd5-44d1-8136-2acc6a001581?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbef7b13-9e7b-454d-a159-d39a30f16827?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -326,21 +320,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:11 GMT + - Mon, 17 Apr 2023 15:13:25 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-msedge-ref: - - 'Ref A: E01E1F4B7A21465DBEAE39C4B22A4DD0 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:09Z' + - '1199' status: code: 201 message: Created @@ -356,36 +348,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b960a213-1dd5-44d1-8136-2acc6a001581?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbef7b13-9e7b-454d-a159-d39a30f16827?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b960a213-1dd5-44d1-8136-2acc6a001581\",\r\n - \ \"name\": \"b960a213-1dd5-44d1-8136-2acc6a001581\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbef7b13-9e7b-454d-a159-d39a30f16827\",\r\n + \ \"name\": \"cbef7b13-9e7b-454d-a159-d39a30f16827\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:28 GMT + - Mon, 17 Apr 2023 15:13:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 754DAD8164C440B0B0BE1CE965E72098 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:28Z' status: code: 200 message: OK @@ -401,17 +397,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-10-05db4\",\r\n - \ \"duration\": \"PT13.552638S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-25-a3cdf\",\r\n + \ \"duration\": \"PT5.9334887S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -421,9 +419,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:10.4150758Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:25.2749795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:10.4150758Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:25.2749795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -434,19 +432,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:29 GMT + - Mon, 17 Apr 2023 15:13:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5A19E1F816DA4EFAA7B430CE0A0791F5 Ref B: BL2AA2030106053 Ref C: 2023-01-09T18:57:28Z' status: code: 200 message: OK @@ -464,15 +464,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-10-05db4\",\r\n - \ \"duration\": \"PT13.552638S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-25-a3cdf\",\r\n + \ \"duration\": \"PT5.9334887S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -482,9 +483,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:10.4150758Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:25.2749795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:10.4150758Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:25.2749795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -495,19 +496,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:29 GMT + - Mon, 17 Apr 2023 15:13:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D6905B61768B4E44BD4F37D786CFB977 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:57:29Z' status: code: 200 message: OK @@ -527,9 +530,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -539,21 +543,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:57:36 GMT + - Mon, 17 Apr 2023 15:13:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' - x-msedge-ref: - - 'Ref A: 14634301E809420192DDC230A5BEB0B0 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:57:30Z' + - '14999' status: code: 200 message: OK @@ -569,11 +571,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-spec --parameters --yes + - --name --resource-group --template-spec --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -587,19 +591,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:37 GMT + - Mon, 17 Apr 2023 15:13:45 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3A96E1CD837A418E80036B2516F5CEE6 Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:37Z' status: code: 404 message: Not Found @@ -615,11 +617,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-spec --parameters --yes + - --name --resource-group --template-spec --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -635,33 +639,35 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:08.5885893Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:23.810323Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:08.5885893Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:23.810323Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1478' + - '1476' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:38 GMT + - Mon, 17 Apr 2023 15:13:45 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C9A376E14D774BFBA553EB5BFB99146D Ref B: BL2AA2030108017 Ref C: 2023-01-09T18:57:38Z' status: code: 200 message: OK @@ -684,11 +690,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-spec --parameters --yes + - --name --resource-group --template-spec --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -701,36 +709,34 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:40.0217124Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:46.412179Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:40.0217124Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:46.412179Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a2496bc5-403f-42ed-b5a0-b343616047dd?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1385' + - '1383' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:39 GMT + - Mon, 17 Apr 2023 15:13:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: 9D51454F3F8B4885AD7ED516F60370E6 Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:39Z' + - '1199' status: code: 201 message: Created @@ -746,36 +752,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-spec --parameters --yes + - --name --resource-group --template-spec --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a2496bc5-403f-42ed-b5a0-b343616047dd?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a2496bc5-403f-42ed-b5a0-b343616047dd\",\r\n - \ \"name\": \"a2496bc5-403f-42ed-b5a0-b343616047dd\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5\",\r\n + \ \"name\": \"3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:57 GMT + - Mon, 17 Apr 2023 15:14:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 083B94F3B65F440EB29A5D3AFAA906CC Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:57Z' status: code: 200 message: OK @@ -791,17 +801,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-spec --parameters --yes + - --name --resource-group --template-spec --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-40-decd4\",\r\n - \ \"duration\": \"PT12.4452223S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-46-1e819\",\r\n + \ \"duration\": \"PT5.9149557S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -812,32 +824,34 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:40.0217124Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:46.412179Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:40.0217124Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:46.412179Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1826' + - '1823' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:57 GMT + - Mon, 17 Apr 2023 15:14:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9EA8F1E1620C4CECB43C2F8E58C56E77 Ref B: BL2AA2030109035 Ref C: 2023-01-09T18:57:57Z' status: code: 200 message: OK @@ -855,15 +869,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-57-40-decd4\",\r\n - \ \"duration\": \"PT12.4452223S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-46-1e819\",\r\n + \ \"duration\": \"PT5.9149557S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -874,32 +889,34 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:57:40.0217124Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:46.412179Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:57:40.0217124Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:46.412179Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1826' + - '1823' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:57:58 GMT + - Mon, 17 Apr 2023 15:14:05 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3267D3E749864A5DA44CB3668630EF42 Ref B: BL2AA2030108007 Ref C: 2023-01-09T18:57:58Z' status: code: 200 message: OK @@ -919,9 +936,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -931,21 +949,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:57:59 GMT + - Mon, 17 Apr 2023 15:14:05 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' - x-msedge-ref: - - 'Ref A: 22DF562979B043F382C95C89D1013436 Ref B: BL2AA2030108007 Ref C: 2023-01-09T18:57:59Z' + - '14999' status: code: 200 message: OK @@ -961,11 +977,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --yes + - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -979,19 +996,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:00 GMT + - Mon, 17 Apr 2023 15:14:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C241C855184A421BA1BA7F3DF8011303 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:00Z' status: code: 404 message: Not Found @@ -1019,15 +1034,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:58:02 GMT + - Mon, 17 Apr 2023 15:14:07 GMT expires: - - Mon, 09 Jan 2023 18:58:02 GMT + - Mon, 17 Apr 2023 15:14:07 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e server: - Kestrel strict-transport-security: @@ -1052,53 +1067,28 @@ interactions: uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554","assets_url":"https://api.github.com/repos/Azure/bicep/releases/85011554/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/85011554/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.13.1","id":85011554,"author":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4FESxi","tag_name":"v0.13.1","target_commitish":"main","name":"v0.13.1","draft":false,"prerelease":false,"created_at":"2022-12-02T16:18:55Z","published_at":"2022-12-05T22:40:09Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086565","id":87086565,"node_id":"RA_kwDOD7S9ks4FMNXl","name":"Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21939065,"download_count":37,"created_at":"2022-12-05T16:25:42Z","updated_at":"2022-12-05T16:25:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086537","id":87086537,"node_id":"RA_kwDOD7S9ks4FMNXJ","name":"Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22405300,"download_count":37,"created_at":"2022-12-05T16:25:27Z","updated_at":"2022-12-05T16:25:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086633","id":87086633,"node_id":"RA_kwDOD7S9ks4FMNYp","name":"Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21834574,"download_count":38,"created_at":"2022-12-05T16:26:36Z","updated_at":"2022-12-05T16:26:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086599","id":87086599,"node_id":"RA_kwDOD7S9ks4FMNYH","name":"Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22318205,"download_count":33,"created_at":"2022-12-05T16:26:09Z","updated_at":"2022-12-05T16:26:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086501","id":87086501,"node_id":"RA_kwDOD7S9ks4FMNWl","name":"Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22223402,"download_count":41,"created_at":"2022-12-05T16:25:12Z","updated_at":"2022-12-05T16:25:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086439","id":87086439,"node_id":"RA_kwDOD7S9ks4FMNVn","name":"Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22492654,"download_count":61,"created_at":"2022-12-05T16:24:45Z","updated_at":"2022-12-05T16:24:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086104","id":87086104,"node_id":"RA_kwDOD7S9ks4FMNQY","name":"Azure.Bicep.Core.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":484757,"download_count":42,"created_at":"2022-12-05T16:22:36Z","updated_at":"2022-12-05T16:22:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086106","id":87086106,"node_id":"RA_kwDOD7S9ks4FMNQa","name":"Azure.Bicep.Core.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":160641,"download_count":29,"created_at":"2022-12-05T16:22:38Z","updated_at":"2022-12-05T16:22:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086111","id":87086111,"node_id":"RA_kwDOD7S9ks4FMNQf","name":"Azure.Bicep.Decompiler.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":89986,"download_count":32,"created_at":"2022-12-05T16:22:40Z","updated_at":"2022-12-05T16:22:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086116","id":87086116,"node_id":"RA_kwDOD7S9ks4FMNQk","name":"Azure.Bicep.Decompiler.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22644,"download_count":31,"created_at":"2022-12-05T16:22:42Z","updated_at":"2022-12-05T16:22:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086120","id":87086120,"node_id":"RA_kwDOD7S9ks4FMNQo","name":"Azure.Bicep.MSBuild.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45377,"download_count":30,"created_at":"2022-12-05T16:22:44Z","updated_at":"2022-12-05T16:22:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086133","id":87086133,"node_id":"RA_kwDOD7S9ks4FMNQ1","name":"Azure.Bicep.MSBuild.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6940,"download_count":30,"created_at":"2022-12-05T16:22:47Z","updated_at":"2022-12-05T16:22:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086137","id":87086137,"node_id":"RA_kwDOD7S9ks4FMNQ5","name":"Azure.Bicep.RegistryModuleTool.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20623971,"download_count":35,"created_at":"2022-12-05T16:22:49Z","updated_at":"2022-12-05T16:22:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086144","id":87086144,"node_id":"RA_kwDOD7S9ks4FMNRA","name":"Azure.Bicep.RegistryModuleTool.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":177071,"download_count":32,"created_at":"2022-12-05T16:22:53Z","updated_at":"2022-12-05T16:22:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086154","id":87086154,"node_id":"RA_kwDOD7S9ks4FMNRK","name":"bicep-langserver.zip","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21965645,"download_count":351,"created_at":"2022-12-05T16:22:59Z","updated_at":"2022-12-05T16:23:02Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085752","id":87085752,"node_id":"RA_kwDOD7S9ks4FMNK4","name":"bicep-linux-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43262692,"download_count":95,"created_at":"2022-12-05T16:19:34Z","updated_at":"2022-12-05T16:19:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085814","id":87085814,"node_id":"RA_kwDOD7S9ks4FMNL2","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43759556,"download_count":9734,"created_at":"2022-12-05T16:20:06Z","updated_at":"2022-12-05T16:20:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085712","id":87085712,"node_id":"RA_kwDOD7S9ks4FMNKQ","name":"bicep-linux-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43858881,"download_count":124132,"created_at":"2022-12-05T16:19:13Z","updated_at":"2022-12-05T16:19:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085981","id":87085981,"node_id":"RA_kwDOD7S9ks4FMNOd","name":"bicep-osx-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43195952,"download_count":54,"created_at":"2022-12-05T16:21:26Z","updated_at":"2022-12-05T16:21:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085880","id":87085880,"node_id":"RA_kwDOD7S9ks4FMNM4","name":"bicep-osx-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43910500,"download_count":3908,"created_at":"2022-12-05T16:20:32Z","updated_at":"2022-12-05T16:20:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086072","id":87086072,"node_id":"RA_kwDOD7S9ks4FMNP4","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":20197576,"download_count":3173,"created_at":"2022-12-05T16:22:23Z","updated_at":"2022-12-05T16:22:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086182","id":87086182,"node_id":"RA_kwDOD7S9ks4FMNRm","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43646240,"download_count":24,"created_at":"2022-12-05T16:23:16Z","updated_at":"2022-12-05T16:23:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086080","id":87086080,"node_id":"RA_kwDOD7S9ks4FMNQA","name":"bicep-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42979416,"download_count":80026,"created_at":"2022-12-05T16:22:29Z","updated_at":"2022-12-05T16:22:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086332","id":87086332,"node_id":"RA_kwDOD7S9ks4FMNT8","name":"vs-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":44307809,"download_count":19,"created_at":"2022-12-05T16:24:13Z","updated_at":"2022-12-05T16:24:18Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086257","id":87086257,"node_id":"RA_kwDOD7S9ks4FMNSx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":72127899,"download_count":213,"created_at":"2022-12-05T16:23:46Z","updated_at":"2022-12-05T16:23:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.13.1","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.13.1","body":"## - Highlights\r\n\r\nBicep team:\r\n* Bicep deploy - support deployment to azure - cloud (#9097)\r\n\r\n@miqm\r\n* Emitting getSecret inside a ternary expression - (#8658)\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* Fix for partially-typed - resource type completions (#9158)\r\n* InsertResource: Use json() function - to format non-integer number (#9162)\r\n* Support fully-qualified ambient - type symbols in output declaration type clauses (#8961)\r\n* Fix `flatten` - signature (#9117)\r\n* Block nested runtime functions (#8965)\r\n\r\n@matsest\r\n* - fix(vscode): add icons for container apps (#9101)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554/reactions","total_count":3,"+1":3,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"mentions_count":2}' + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/98925381","assets_url":"https://api.github.com/repos/Azure/bicep/releases/98925381/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/98925381/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.16.2","id":98925381,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4F5XtF","tag_name":"v0.16.2","target_commitish":"main","name":"v0.16.2","draft":false,"prerelease":false,"created_at":"2023-04-05T15:27:33Z","published_at":"2023-04-11T19:26:02Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196329","id":103196329,"node_id":"RA_kwDOD7S9ks4GJqap","name":"Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27360858,"download_count":3,"created_at":"2023-04-11T14:16:45Z","updated_at":"2023-04-11T14:16:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196317","id":103196317,"node_id":"RA_kwDOD7S9ks4GJqad","name":"Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27766844,"download_count":3,"created_at":"2023-04-11T14:16:34Z","updated_at":"2023-04-11T14:16:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196376","id":103196376,"node_id":"RA_kwDOD7S9ks4GJqbY","name":"Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27643258,"download_count":2,"created_at":"2023-04-11T14:17:11Z","updated_at":"2023-04-11T14:17:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196341","id":103196341,"node_id":"RA_kwDOD7S9ks4GJqa1","name":"Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28087538,"download_count":4,"created_at":"2023-04-11T14:16:53Z","updated_at":"2023-04-11T14:16:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196295","id":103196295,"node_id":"RA_kwDOD7S9ks4GJqaH","name":"Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27640274,"download_count":4,"created_at":"2023-04-11T14:16:25Z","updated_at":"2023-04-11T14:16:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196274","id":103196274,"node_id":"RA_kwDOD7S9ks4GJqZy","name":"Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27964739,"download_count":5,"created_at":"2023-04-11T14:16:14Z","updated_at":"2023-04-11T14:16:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196098","id":103196098,"node_id":"RA_kwDOD7S9ks4GJqXC","name":"Azure.Bicep.Core.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":573156,"download_count":3,"created_at":"2023-04-11T14:14:38Z","updated_at":"2023-04-11T14:14:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196103","id":103196103,"node_id":"RA_kwDOD7S9ks4GJqXH","name":"Azure.Bicep.Core.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":184789,"download_count":3,"created_at":"2023-04-11T14:14:40Z","updated_at":"2023-04-11T14:14:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196109","id":103196109,"node_id":"RA_kwDOD7S9ks4GJqXN","name":"Azure.Bicep.Decompiler.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":98381,"download_count":4,"created_at":"2023-04-11T14:14:43Z","updated_at":"2023-04-11T14:14:43Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196113","id":103196113,"node_id":"RA_kwDOD7S9ks4GJqXR","name":"Azure.Bicep.Decompiler.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23934,"download_count":3,"created_at":"2023-04-11T14:14:45Z","updated_at":"2023-04-11T14:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196120","id":103196120,"node_id":"RA_kwDOD7S9ks4GJqXY","name":"Azure.Bicep.MSBuild.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45560,"download_count":3,"created_at":"2023-04-11T14:14:47Z","updated_at":"2023-04-11T14:14:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196124","id":103196124,"node_id":"RA_kwDOD7S9ks4GJqXc","name":"Azure.Bicep.MSBuild.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6942,"download_count":3,"created_at":"2023-04-11T14:14:49Z","updated_at":"2023-04-11T14:14:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196129","id":103196129,"node_id":"RA_kwDOD7S9ks4GJqXh","name":"Azure.Bicep.RegistryModuleTool.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23603320,"download_count":5,"created_at":"2023-04-11T14:14:51Z","updated_at":"2023-04-11T14:14:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196139","id":103196139,"node_id":"RA_kwDOD7S9ks4GJqXr","name":"Azure.Bicep.RegistryModuleTool.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":200972,"download_count":3,"created_at":"2023-04-11T14:14:55Z","updated_at":"2023-04-11T14:14:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196179","id":103196179,"node_id":"RA_kwDOD7S9ks4GJqYT","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25104436,"download_count":6,"created_at":"2023-04-11T14:15:15Z","updated_at":"2023-04-11T14:15:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195975","id":103195975,"node_id":"RA_kwDOD7S9ks4GJqVH","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":56867505,"download_count":25,"created_at":"2023-04-11T14:13:31Z","updated_at":"2023-04-11T14:13:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196001","id":103196001,"node_id":"RA_kwDOD7S9ks4GJqVh","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57090165,"download_count":444,"created_at":"2023-04-11T14:13:48Z","updated_at":"2023-04-11T14:13:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195965","id":103195965,"node_id":"RA_kwDOD7S9ks4GJqU9","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57254260,"download_count":4539,"created_at":"2023-04-11T14:13:21Z","updated_at":"2023-04-11T14:13:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196044","id":103196044,"node_id":"RA_kwDOD7S9ks4GJqWM","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57069200,"download_count":190,"created_at":"2023-04-11T14:14:12Z","updated_at":"2023-04-11T14:14:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196028","id":103196028,"node_id":"RA_kwDOD7S9ks4GJqV8","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57479968,"download_count":985,"created_at":"2023-04-11T14:14:00Z","updated_at":"2023-04-11T14:14:03Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196077","id":103196077,"node_id":"RA_kwDOD7S9ks4GJqWt","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":24119368,"download_count":354,"created_at":"2023-04-11T14:14:30Z","updated_at":"2023-04-11T14:14:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196207","id":103196207,"node_id":"RA_kwDOD7S9ks4GJqYv","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56920088,"download_count":3,"created_at":"2023-04-11T14:15:26Z","updated_at":"2023-04-11T14:15:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196090","id":103196090,"node_id":"RA_kwDOD7S9ks4GJqW6","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56797064,"download_count":5303,"created_at":"2023-04-11T14:14:33Z","updated_at":"2023-04-11T14:14:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196241","id":103196241,"node_id":"RA_kwDOD7S9ks4GJqZR","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":45804447,"download_count":4,"created_at":"2023-04-11T14:15:49Z","updated_at":"2023-04-11T14:15:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196224","id":103196224,"node_id":"RA_kwDOD7S9ks4GJqZA","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":37789327,"download_count":90,"created_at":"2023-04-11T14:15:39Z","updated_at":"2023-04-11T14:15:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.16.2","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.16.2","body":"## + Bug fixes and features\r\n\r\nBicep team:\r\n* Use the correct bitwise operator + for combining flags in JSON model loader (#10325)"}' headers: content-length: - - '37819' + - '35354' content-md5: - - /YYHJfbYwbTcgT8zt9cunA== + - AwJGuppw+a+FbEhqTdvO2A== content-type: - application/octet-stream date: - - Mon, 09 Jan 2023 18:58:02 GMT + - Mon, 17 Apr 2023 15:14:06 GMT etag: - - '0x8DAF26C085732AD' + - '0x8DB3F4CBE36BE83' last-modified: - - Mon, 09 Jan 2023 18:05:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + - Mon, 17 Apr 2023 14:05:04 GMT x-azure-ref: - - 0umO8YwAAAABm8orWVeRySYTw7fq/nTE5TU5aMjIxMDYwNjEzMDQ3ADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + - 0P2I9ZAAAAABo++susPBtSbvhwcYVFfEOUEhMMzBFREdFMDMwNgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= x-azure-ref-originshield: - - 0umO8YwAAAACHUV+r0BT3ToxS5n8Twc0NTU5aMjIxMDYwNjExMDA5ADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + - 0z189ZAAAAADPLyKMXk5cRprO5dVsXPcvRVdSMzBFREdFMDUxMgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= x-cache: - - TCP_REMOTE_HIT + - TCP_HIT x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -1111,7 +1101,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.4.1124.51302", "templateHash": "13318272087014647935"}}, "parameters": {"location": + "0.15.31.15270", "templateHash": "6048262845766178169"}}, "parameters": {"location": {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": @@ -1130,15 +1120,16 @@ interactions: Connection: - keep-alive Content-Length: - - '911' + - '909' Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --yes + - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1148,14 +1139,14 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:05.2561954Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:09.4069708Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:05.2561954Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:09.4069708Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ddfb2b4a-049b-44e6-a71f-a2acc15e6832?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1163,21 +1154,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:05 GMT + - Mon, 17 Apr 2023 15:14:09 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: 598404EB28784663AE06AD951E190347 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:04Z' + - '1199' status: code: 201 message: Created @@ -1193,81 +1182,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n - \ \"name\": \"71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 18:58:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C69FAD70789344E3B0739C5B9CEF4340 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --yes + - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ddfb2b4a-049b-44e6-a71f-a2acc15e6832?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n - \ \"name\": \"71dd7e2b-9b56-485f-af2e-e81082a31b31\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ddfb2b4a-049b-44e6-a71f-a2acc15e6832\",\r\n + \ \"name\": \"ddfb2b4a-049b-44e6-a71f-a2acc15e6832\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:53 GMT + - Mon, 17 Apr 2023 15:14:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8B6315BADE1444298A19178D0B2353EC Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:53Z' status: code: 200 message: OK @@ -1283,17 +1230,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --yes + - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-05-7d557\",\r\n - \ \"duration\": \"PT18.1587302S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-09-e8dcc\",\r\n + \ \"duration\": \"PT6.7820992S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1303,32 +1251,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:05.2561954Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:09.4069708Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:05.2561954Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:09.4069708Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1837' + - '1836' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:53 GMT + - Mon, 17 Apr 2023 15:14:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1583D275CC8F47A8AB9B9F0AABD32EB2 Ref B: BL2AA2030110051 Ref C: 2023-01-09T18:58:53Z' status: code: 200 message: OK @@ -1346,15 +1296,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-05-7d557\",\r\n - \ \"duration\": \"PT18.1587302S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-09-e8dcc\",\r\n + \ \"duration\": \"PT6.7820992S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1364,32 +1315,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:05.2561954Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:09.4069708Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:05.2561954Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:09.4069708Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1837' + - '1836' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:54 GMT + - Mon, 17 Apr 2023 15:14:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 879AE40B44494C6CAC79AB0DB8908159 Ref B: BL2AA2030108003 Ref C: 2023-01-09T18:58:54Z' status: code: 200 message: OK @@ -1409,9 +1362,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1421,21 +1375,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:58:56 GMT + - Mon, 17 Apr 2023 15:14:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' - x-msedge-ref: - - 'Ref A: ECC7071C9B2A48769FFA33D6B7CDE602 Ref B: BL2AA2030108003 Ref C: 2023-01-09T18:58:55Z' + - '14999' status: code: 200 message: OK @@ -1451,11 +1403,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -1469,19 +1423,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:56 GMT + - Mon, 17 Apr 2023 15:14:29 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C7E9E65DE1BE42FD83C78B9C4A69D03C Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:58:56Z' status: code: 404 message: Not Found @@ -1518,11 +1470,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1534,35 +1488,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:57.983147Z\"\r\n + \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:29.5977893Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3465c47-138a-4c9f-aa3f-89e62ded8192?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1127' + - '1129' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:58:57 GMT + - Mon, 17 Apr 2023 15:14:29 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' - x-msedge-ref: - - 'Ref A: 3E497452FCAA43C98E23F27A522A7339 Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:58:57Z' + - '1199' status: code: 201 message: Created @@ -1578,81 +1530,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n - \ \"name\": \"44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 18:59:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 39B0D3D10F164086A204B7A92F440A2F Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:59:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3465c47-138a-4c9f-aa3f-89e62ded8192?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n - \ \"name\": \"44ead8c8-5287-4d45-893c-4249c21193f1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3465c47-138a-4c9f-aa3f-89e62ded8192\",\r\n + \ \"name\": \"e3465c47-138a-4c9f-aa3f-89e62ded8192\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:59:45 GMT + - Mon, 17 Apr 2023 15:14:47 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EC3D2F1AAC974295ABCF0F292BC8A8FB Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:59:45Z' status: code: 200 message: OK @@ -1668,17 +1579,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-58-d141d\",\r\n - \ \"duration\": \"PT35.8900855S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-29-e0275\",\r\n + \ \"duration\": \"PT7.3669109S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1688,32 +1601,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:57.983147Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:29.5977893Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1944' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:59:45 GMT + - Mon, 17 Apr 2023 15:14:47 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9FE42B7F3A2C4C6994652DE32BC50813 Ref B: BL2AA2030109053 Ref C: 2023-01-09T18:59:46Z' status: code: 200 message: OK @@ -1729,17 +1644,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-58-58-d141d\",\r\n - \ \"duration\": \"PT35.8900855S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-29-e0275\",\r\n + \ \"duration\": \"PT7.3669109S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1749,32 +1666,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:58:57.983147Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:29.5977893Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1944' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:59:47 GMT + - Mon, 17 Apr 2023 15:14:48 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B10AF8F94B2D4ECA9B077F081F24E32F Ref B: BL2AA2030106021 Ref C: 2023-01-09T18:59:46Z' status: code: 200 message: OK @@ -1811,11 +1730,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1827,80 +1748,37 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:48.7429643Z\"\r\n + \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:48.9046739Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/04791c82-9545-4352-b0b1-0f2801121874?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1128' + - '1129' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:59:49 GMT + - Mon, 17 Apr 2023 15:14:48 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: BDB6703D660045FD837B63E255D8D479 Ref B: BL2AA2030106021 Ref C: 2023-01-09T18:59:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --parameters --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n - \ \"name\": \"d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 19:00:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2EBA582FD9214379AC8875686EA0518B Ref B: BL2AA2030106021 Ref C: 2023-01-09T19:00:06Z' + - '1199' status: code: 200 message: OK @@ -1916,36 +1794,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/04791c82-9545-4352-b0b1-0f2801121874?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n - \ \"name\": \"d98f489e-4422-45dd-ba8e-cc8a74e4cb97\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/04791c82-9545-4352-b0b1-0f2801121874\",\r\n + \ \"name\": \"04791c82-9545-4352-b0b1-0f2801121874\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:37 GMT + - Mon, 17 Apr 2023 15:15:05 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4C23835304034E6CB18A4C7B0A33A074 Ref B: BL2AA2030106021 Ref C: 2023-01-09T19:00:37Z' status: code: 200 message: OK @@ -1961,17 +1843,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-59-48-b23f6\",\r\n - \ \"duration\": \"PT19.8527911S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-48-cbe1c\",\r\n + \ \"duration\": \"PT5.4791339S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1983,9 +1867,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:48.7429643Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:48.9046739Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1996,19 +1880,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:38 GMT + - Mon, 17 Apr 2023 15:15:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 998552E6BD6C4AE8869656DC965C57A6 Ref B: BL2AA2030106021 Ref C: 2023-01-09T19:00:37Z' status: code: 200 message: OK @@ -2026,54 +1912,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:39 GMT + - Mon, 17 Apr 2023 15:15:07 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E8DE413E77B7404F9598CCB2BC7BE574 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:00:39Z' status: code: 200 message: OK @@ -2091,40 +2040,43 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:59:07.4768545Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:33.490185Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:11.0239105Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:34.021481Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: cache-control: - no-cache content-length: - - '716' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:40 GMT + - Mon, 17 Apr 2023 15:15:11 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DADA98655E68468D825A1657B02FF098 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:00:39Z' status: code: 200 message: OK @@ -2142,54 +2094,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:41 GMT + - Mon, 17 Apr 2023 15:15:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 812674F4B508483FBDFD70E0FA302F03 Ref B: BL2AA2030107033 Ref C: 2023-01-09T19:00:41Z' status: code: 200 message: OK @@ -2207,40 +2222,43 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:59:56.685191Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:51.2566393Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:00:00.013477Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:51.7879646Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: cache-control: - no-cache content-length: - - '714' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:41 GMT + - Mon, 17 Apr 2023 15:15:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: BEF300A06E524A0CBF79C5F053CEB35F Ref B: BL2AA2030107033 Ref C: 2023-01-09T19:00:41Z' status: code: 200 message: OK @@ -2256,17 +2274,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-18-59-48-b23f6\",\r\n - \ \"duration\": \"PT19.8527911S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-48-cbe1c\",\r\n + \ \"duration\": \"PT5.4791339S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2278,9 +2298,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:59:48.7429643Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:48.9046739Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2291,19 +2311,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:42 GMT + - Mon, 17 Apr 2023 15:15:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EE1D8B86B8A9401C99C168039FF92493 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:00:42Z' status: code: 200 message: OK @@ -2340,11 +2362,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -2356,35 +2380,37 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:00:45.0095141Z\"\r\n + \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:15:15.8597093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1130' + - '1131' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:00:44 GMT + - Mon, 17 Apr 2023 15:15:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: A22952DBD18E4F65803DB5BB32DDD011 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:00:43Z' + - '1199' status: code: 200 message: OK @@ -2400,36 +2426,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n - \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n + \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:01:02 GMT + - Mon, 17 Apr 2023 15:15:32 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8BE030678697427BBEF0D6FB2A1CDF8E Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:01:02Z' status: code: 200 message: OK @@ -2445,36 +2475,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n - \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n + \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:01:33 GMT + - Mon, 17 Apr 2023 15:16:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4E64CA8DEE13497F8D7D1BA749F4D086 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:01:33Z' status: code: 200 message: OK @@ -2490,36 +2524,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n - \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n + \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:02:04 GMT + - Mon, 17 Apr 2023 15:16:33 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C042659D072D4979B8FE828A87256F38 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:02:04Z' status: code: 200 message: OK @@ -2535,36 +2573,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n - \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n + \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:02:35 GMT + - Mon, 17 Apr 2023 15:17:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 16E1B76594384E0FA01AC7CFD7508EB0 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:02:35Z' status: code: 200 message: OK @@ -2580,36 +2622,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n - \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n + \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:05 GMT + - Mon, 17 Apr 2023 15:17:33 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E6AD540BCEB84FE398709617A08477C9 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:03:06Z' status: code: 200 message: OK @@ -2625,36 +2671,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n - \ \"name\": \"b69c63d1-15df-46eb-94f8-1c81324d0015\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n + \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:36 GMT + - Mon, 17 Apr 2023 15:18:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8F06D1514B534A00A3B6D301A2F5E611 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:03:37Z' status: code: 200 message: OK @@ -2670,17 +2720,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --delete-resources --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-00-45-911da\",\r\n - \ \"duration\": \"PT2M44.2141182S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-15-15-bce4c\",\r\n + \ \"duration\": \"PT2M18.6526334S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2692,32 +2744,34 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T19:00:45.0095141Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-17T15:15:15.8597093Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2386' + - '2387' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:37 GMT + - Mon, 17 Apr 2023 15:18:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9ECF0C03D0C942778E3880F59A1F58B2 Ref B: BL2AA2030106011 Ref C: 2023-01-09T19:03:37Z' status: code: 200 message: OK @@ -2735,54 +2789,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:38 GMT + - Mon, 17 Apr 2023 15:18:05 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 39CEBDB3E6354CE5973E0891636C5163 Ref B: BL2AA2030110007 Ref C: 2023-01-09T19:03:38Z' status: code: 200 message: OK @@ -2800,17 +2917,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:00:51.9972356Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:15:17.7408241Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:00:54.3722961Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:15:18.1001611Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -2821,19 +2939,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:39 GMT + - Mon, 17 Apr 2023 15:18:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6B106F4977CA49F8B58E35870A22A674 Ref B: BL2AA2030110007 Ref C: 2023-01-09T19:03:39Z' status: code: 200 message: OK @@ -2851,15 +2971,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-00-45-911da\",\r\n - \ \"duration\": \"PT2M44.2141182S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-15-15-bce4c\",\r\n + \ \"duration\": \"PT2M18.6526334S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2871,32 +2992,34 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T18:58:57.983147Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T19:00:45.0095141Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-17T15:15:15.8597093Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2386' + - '2387' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:40 GMT + - Mon, 17 Apr 2023 15:18:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8E1A4B13B6D84EEF91F50FC9C8027064 Ref B: BL2AA2030105007 Ref C: 2023-01-09T19:03:40Z' status: code: 200 message: OK @@ -2916,9 +3039,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -2928,21 +3052,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:03:42 GMT + - Mon, 17 Apr 2023 15:18:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: 122D4A69B25B495DB53C058EC0252E88 Ref B: BL2AA2030105007 Ref C: 2023-01-09T19:03:41Z' + - '14999' status: code: 200 message: OK @@ -2964,9 +3086,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2978,21 +3101,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:45 GMT + - Mon, 17 Apr 2023 15:18:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: CE08CBE46D614AB3BB356BB20E500091 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:03:43Z' + - '1199' status: code: 201 message: Created @@ -3008,11 +3127,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -3026,19 +3146,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:47 GMT + - Mon, 17 Apr 2023 15:18:09 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DDDEF2CB65C74627AEA40A0AF6361F03 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:03:46Z' status: code: 404 message: Not Found @@ -3075,11 +3193,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -3092,13 +3211,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T19:03:48.6070447Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:03:48.6070447Z\"\r\n + \"2023-04-17T15:18:10.0313517Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:18:10.0313517Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3106,21 +3225,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:03:48 GMT + - Mon, 17 Apr 2023 15:18:09 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: 44F89E7EAAE24CA999ED1ABA417CDBCE Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:03:47Z' + - '1199' status: code: 201 message: Created @@ -3136,36 +3253,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n - \ \"name\": \"8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n + \ \"name\": \"5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:06 GMT + - Mon, 17 Apr 2023 15:18:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2DF11DC281124738BFE9C441490E16F7 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:04:06Z' status: code: 200 message: OK @@ -3181,36 +3301,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n - \ \"name\": \"8b3a442a-85e6-4817-9cf1-c62418f453c4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n + \ \"name\": \"5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:36 GMT + - Mon, 17 Apr 2023 15:18:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 289D90245CA54FEFBE501C63CC70C044 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:04:36Z' status: code: 200 message: OK @@ -3226,17 +3349,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-03-48-52063\",\r\n - \ \"duration\": \"PT45.5549985S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-18-10-edbf3\",\r\n + \ \"duration\": \"PT32.7615071S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -3247,9 +3371,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:03:48.6070447Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:18:10.0313517Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3260,19 +3384,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:37 GMT + - Mon, 17 Apr 2023 15:18:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DF4AAA285A71406699E7F4781F9FEA45 Ref B: BL2AA2030108005 Ref C: 2023-01-09T19:04:36Z' status: code: 200 message: OK @@ -3290,9 +3416,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3304,19 +3431,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:37 GMT + - Mon, 17 Apr 2023 15:18:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8A47C5E55A304071947E1616C6E5E8A9 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:04:37Z' status: code: 200 message: OK @@ -3334,33 +3459,32 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T19:04:00.8298773Z","changedTime":"2023-01-09T19:04:01.7722476Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:04:01.2663655Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:04:01.2663655Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-17T15:18:14.1630065Z","changedTime":"2023-04-17T15:18:14.5903652Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:18:14.4184883Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:18:14.4184883Z"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNj6M4EP0vOe%2fBkI%2fdHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9%2fyKFllpLntwbJdVX713rPq%2b6jbDv2i7van0bfvo21x6s8nd%2fRttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2bqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD%2fBaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2bZ9ErJcyusHz90WNhq4xNYTAfCkLS%2bEyXO262h%2fTw495QTPKWb3xMAgxvxq%2b0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2bTzZd9R%2b%2bpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM%2fiK8hJPx3JPsZs%2flj85mRFmJsc%2f9d%2f4QyfHHyfFesfyu%2fnn0XlVYUh62l1M%2fj7wX20yvUgDi3HnL7i85p%2bIA3F68BcVmIw82ufXB%2f7ehrgWaWv%2fiaemUhJJK9Pc6i8CoHsFpJFXrAe5h%2fk2qB7fUxyOaJ648qWb7MkjzQlLcGyqx%2f7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13%2f9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC%2f1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP%2fbFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2blZieYBz7uoybD7%2bzLyoL8zUnmn97cgrQJy%2bXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ%2fulVs%2fpVPj%2bPfvz4Fw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '670' + - '1993' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:37 GMT + - Mon, 17 Apr 2023 15:19:01 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B833E299E3CC43B6821FF06BB8185605 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:04:38Z' status: code: 200 message: OK @@ -3368,43 +3492,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group show + - resource list Connection: - keep-alive ParameterSetName: - - -n + - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNj6M4EP0vOe/BkI/dHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9/yKFllpLntwbJdVX713rPq%2B6jbDv2i7van0bfvo21x6s8nd/RttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2BqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD/BaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2BZ9ErJcyusHz90WNhq4xNYTAfCkLS%2BEyXO262h/Tw495QTPKWb3xMAgxvxq%2B0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2BTzZd9R%2B%2BpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM/iK8hJPx3JPsZs/lj85mRFmJsc/9d/4QyfHHyfFesfyu/nn0XlVYUh62l1M/j7wX20yvUgDi3HnL7i85p%2BIA3F68BcVmIw82ufXB/7ehrgWaWv/iaemUhJJK9Pc6i8CoHsFpJFXrAe5h/k2qB7fUxyOaJ648qWb7MkjzQlLcGyqx/7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13/9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC/1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP/bFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2BlZieYBz7uoybD7%2BzLyoL8zUnmn97cgrQJy%2BXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ/ulVs/pVPj%2BPfvz4Fw%3D%3D response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '252' + - '12' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:38 GMT + - Mon, 17 Apr 2023 15:19:01 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 024A0162910D478B971F923D9081EB17 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:04:38Z' status: code: 200 message: OK @@ -3416,34 +3539,78 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack group create + - group show Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-03-48-52063\",\r\n - \ \"duration\": \"PT45.5549985S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '252' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:19:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-18-10-edbf3\",\r\n + \ \"duration\": \"PT32.7615071S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n + \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:03:48.6070447Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:18:10.0313517Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3454,19 +3621,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:39 GMT + - Mon, 17 Apr 2023 15:19:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8D5F8257D3BF42B28FDC715610904B74 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:04:39Z' status: code: 200 message: OK @@ -3493,11 +3662,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -3507,14 +3677,14 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:04:40.9182387Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:19:03.5194311Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3522,21 +3692,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:40 GMT + - Mon, 17 Apr 2023 15:19:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: B91656BBD96A4984A0ECF428D55BFC3C Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:04:39Z' + - '1199' status: code: 200 message: OK @@ -3552,36 +3724,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:04:58 GMT + - Mon, 17 Apr 2023 15:19:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CBF3E345AEFE4A4ABCFD033B740ECD96 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:04:58Z' status: code: 200 message: OK @@ -3597,36 +3772,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:05:29 GMT + - Mon, 17 Apr 2023 15:19:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 41C3845B5D7941F7BDB751006E8FF97D Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:05:29Z' status: code: 200 message: OK @@ -3642,36 +3820,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:05:59 GMT + - Mon, 17 Apr 2023 15:20:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: BAD0748E331A42C2A7CBB75A2D1F215D Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:06:00Z' status: code: 200 message: OK @@ -3687,36 +3868,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:06:30 GMT + - Mon, 17 Apr 2023 15:20:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 23B46C64E75C4C8DAF0519326D565169 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:06:30Z' status: code: 200 message: OK @@ -3732,36 +3916,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:07:01 GMT + - Mon, 17 Apr 2023 15:21:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8A5C8EDF88D44E5AA1450453968A6EAB Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:07:01Z' status: code: 200 message: OK @@ -3777,36 +3964,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:07:32 GMT + - Mon, 17 Apr 2023 15:21:52 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 529B1B71BDB847D0A036497E1E014FD8 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:07:32Z' status: code: 200 message: OK @@ -3822,36 +4012,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n + \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:03 GMT + - Mon, 17 Apr 2023 15:22:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AC3C5E12C8FA4C78B790DC1EF03FEB28 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:08:03Z' status: code: 200 message: OK @@ -3867,36 +4060,55 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n - \ \"name\": \"46c212af-b3a3-4fa1-8b35-370c957f3436\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-19-03-89445\",\r\n + \ \"duration\": \"PT3M17.4715886S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2023-04-17T15:19:03.5194311Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '1876' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:34 GMT + - Mon, 17 Apr 2023 15:22:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DA67638ED939487498D98F8507A86210 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:08:34Z' status: code: 200 message: OK @@ -3904,60 +4116,42 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack group create + - resource list Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-04-41-4c2cf\",\r\n - \ \"duration\": \"PT3M33.9550805S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T19:04:40.9182387Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1876' + - '288' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:34 GMT + - Mon, 17 Apr 2023 15:22:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C4AC4C5448B7439D9A29AF58CF4D4186 Ref B: BL2AA2030108029 Ref C: 2023-01-09T19:08:35Z' status: code: 200 message: OK @@ -3975,33 +4169,32 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNj6M4EP0vOe%2fBkI%2fdHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9%2fyKFllpLntwbJdVX713rPq%2b6jbDv2i7van0bfvo21x6s8nd%2fRttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2bqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD%2fBaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2bZ9ErJcyusHz90WNhq4xNYTAfCkLS%2bEyXO262h%2fTw495QTPKWb3xMAgxvxq%2b0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2bTzZd9R%2b%2bpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM%2fiK8hJPx3JPsZs%2flj85mRFmJsc%2f9d%2f4QyfHHyfFesfyu%2fnn0XlVYUh62l1M%2fj7wX20yvUgDi3HnL7i85p%2bIA3F68BcVmIw82ufXB%2f7ehrgWaWv%2fiaemUhJJK9Pc6i8CoHsFpJFXrAe5h%2fk2qB7fUxyOaJ648qWb7MkjzQlLcGyqx%2f7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13%2f9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC%2f1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP%2fbFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2blZieYBz7uoybD7%2bzLyoL8zUnmn97cgrQJy%2bXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ%2fulVs%2fpVPj%2bPfvz4Fw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '288' + - '1335' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:35 GMT + - Mon, 17 Apr 2023 15:22:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3D8DCCADA2EA49A89EAAFB2AF2860304 Ref B: BL2AA2030105027 Ref C: 2023-01-09T19:08:36Z' status: code: 200 message: OK @@ -4009,7 +4202,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -4019,9 +4212,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNj6M4EP0vOe/BkI/dHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9/yKFllpLntwbJdVX713rPq%2B6jbDv2i7van0bfvo21x6s8nd/RttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2BqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD/BaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2BZ9ErJcyusHz90WNhq4xNYTAfCkLS%2BEyXO262h/Tw495QTPKWb3xMAgxvxq%2B0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2BTzZd9R%2B%2BpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM/iK8hJPx3JPsZs/lj85mRFmJsc/9d/4QyfHHyfFesfyu/nn0XlVYUh62l1M/j7wX20yvUgDi3HnL7i85p%2BIA3F68BcVmIw82ufXB/7ehrgWaWv/iaemUhJJK9Pc6i8CoHsFpJFXrAe5h/k2qB7fUxyOaJ648qWb7MkjzQlLcGyqx/7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13/9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC/1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP/bFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2BlZieYBz7uoybD7%2BzLyoL8zUnmn97cgrQJy%2BXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ/ulVs/pVPj%2BPfvz4Fw%3D%3D response: body: string: '{"value":[]}' @@ -4033,19 +4227,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:37 GMT + - Mon, 17 Apr 2023 15:22:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 017D7293E56E417DB23B51AA28FC529E Ref B: BL2AA2030105027 Ref C: 2023-01-09T19:08:37Z' status: code: 200 message: OK @@ -4061,33 +4253,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T18:57:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:13:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23948' + - '55598' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:38 GMT + - Mon, 17 Apr 2023 15:22:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D3FB465BB2814C52A414BE23EBD248A7 Ref B: BL2AA2030107023 Ref C: 2023-01-09T19:08:38Z' status: code: 200 message: OK @@ -4105,15 +4297,16 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-04-41-4c2cf\",\r\n - \ \"duration\": \"PT3M33.9550805S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-19-03-89445\",\r\n + \ \"duration\": \"PT3M17.4715886S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4123,9 +4316,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T19:03:48.6070447Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T19:04:40.9182387Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-17T15:19:03.5194311Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4136,19 +4329,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:08:39 GMT + - Mon, 17 Apr 2023 15:22:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 49C926C53EF848ADAAC5CE1F8A4243E0 Ref B: BL2AA2030109051 Ref C: 2023-01-09T19:08:39Z' status: code: 200 message: OK @@ -4168,9 +4363,10 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -4180,21 +4376,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:08:40 GMT + - Mon, 17 Apr 2023 15:22:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: 9CBF01D207AC4B6BB55A1D8D5E8E29F0 Ref B: BL2AA2030109051 Ref C: 2023-01-09T19:08:39Z' + - '14999' status: code: 200 message: OK @@ -4214,9 +4408,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '' @@ -4226,23 +4421,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:08:44 GMT + - Mon, 17 Apr 2023 15:22:28 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' - x-msedge-ref: - - 'Ref A: D7C533C18D9F4C72B49F590529B87183 Ref B: BL2AA2030110033 Ref C: 2023-01-09T19:08:41Z' + - '14999' status: code: 202 message: Accepted @@ -4260,9 +4451,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4272,19 +4464,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:09:00 GMT + - Mon, 17 Apr 2023 15:22:44 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4F20A69947A94870BCA21194A1FA99D9 Ref B: BL2AA2030110033 Ref C: 2023-01-09T19:08:59Z' status: code: 200 message: OK @@ -4306,9 +4494,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4320,21 +4509,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:03 GMT + - Mon, 17 Apr 2023 15:22: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-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: 2D83BBA857A84A22868BF8E8AE60DF88 Ref B: BL2AA2030107053 Ref C: 2023-01-09T19:09:01Z' + - '1199' status: code: 201 message: Created @@ -4350,11 +4535,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -4368,19 +4554,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:04 GMT + - Mon, 17 Apr 2023 15:22:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2D2EE0FE29C24E55B162F19E7297B4BF Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:04Z' status: code: 404 message: Not Found @@ -4414,11 +4598,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -4430,13 +4615,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T19:09:06.6250594Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:06.6250594Z\"\r\n + \"2023-04-17T15:22:47.1411809Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:22:47.1411809Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4444,21 +4629,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:06 GMT + - Mon, 17 Apr 2023 15:22:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: B912651077C24A4AA367B486D85E4616 Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:05Z' + - '1199' status: code: 201 message: Created @@ -4474,36 +4657,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n - \ \"name\": \"93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n + \ \"name\": \"2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:24 GMT + - Mon, 17 Apr 2023 15:23:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A6DC41430E8D498A9AAD2956D4385105 Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:24Z' status: code: 200 message: OK @@ -4519,36 +4705,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n - \ \"name\": \"93d48ed7-dc30-4b37-8cec-270837b8f98f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n + \ \"name\": \"2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:55 GMT + - Mon, 17 Apr 2023 15:23:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8A21A45A811A4D819955164388002CC1 Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:54Z' status: code: 200 message: OK @@ -4564,17 +4753,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-06-ff9f5\",\r\n - \ \"duration\": \"PT37.4154109S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-22-47-170ae\",\r\n + \ \"duration\": \"PT31.060408S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4582,32 +4772,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:06.6250594Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:22:47.1411809Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1616' + - '1615' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:55 GMT + - Mon, 17 Apr 2023 15:23:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 35C3B05E3DC947B0A465C43E2F28267F Ref B: BL2AA2030107005 Ref C: 2023-01-09T19:09:55Z' status: code: 200 message: OK @@ -4625,9 +4817,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4639,19 +4832,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:56 GMT + - Mon, 17 Apr 2023 15:23:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DC250A41349F4CC58EB5B13A94B29CDC Ref B: BL2AA2030108019 Ref C: 2023-01-09T19:09:56Z' status: code: 200 message: OK @@ -4667,17 +4858,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-06-ff9f5\",\r\n - \ \"duration\": \"PT37.4154109S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-22-47-170ae\",\r\n + \ \"duration\": \"PT31.060408S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4685,32 +4877,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:06.6250594Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:22:47.1411809Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1616' + - '1615' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:57 GMT + - Mon, 17 Apr 2023 15:23:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AB7A574EBCCF4406BCCFE38FD5855F14 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:09:56Z' status: code: 200 message: OK @@ -4737,11 +4931,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -4751,14 +4946,14 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:09:58.8678546Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:23:36.4146692Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -4766,21 +4961,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:09:58 GMT + - Mon, 17 Apr 2023 15:23:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-msedge-ref: - - 'Ref A: 16BFCA2337D64B0BA1B7DE6640A7B201 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:09:57Z' + - '1199' status: code: 200 message: OK @@ -4796,36 +4993,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n - \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n + \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:10:16 GMT + - Mon, 17 Apr 2023 15:23:53 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AEDEE778AA744AE7928806F4610ECAE3 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:10:16Z' status: code: 200 message: OK @@ -4841,36 +5041,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n - \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n + \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:10:46 GMT + - Mon, 17 Apr 2023 15:24:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A3E39778B9414A269FBC1F8AAD0C3E65 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:10:47Z' status: code: 200 message: OK @@ -4886,36 +5089,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n - \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n + \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:11:17 GMT + - Mon, 17 Apr 2023 15:24:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 62D40BC2473A453C9B02DB1D0DE7D5D3 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:11:17Z' status: code: 200 message: OK @@ -4931,36 +5137,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n - \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n + \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:11:47 GMT + - Mon, 17 Apr 2023 15:25:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0CC1D2A779BD4BD08B23909BC6D2DC7F Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:11:47Z' status: code: 200 message: OK @@ -4976,36 +5185,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n - \ \"name\": \"0aeaa6f9-8f2f-4728-8ef0-4192cd9b5144\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n + \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:12:17 GMT + - Mon, 17 Apr 2023 15:25:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 85279C277AED41D4A900DE1D2892741C Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:12:18Z' status: code: 200 message: OK @@ -5021,17 +5233,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --delete-all --yes + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-58-f7866\",\r\n - \ \"duration\": \"PT2M19.53985S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-23-36-df8d6\",\r\n + \ \"duration\": \"PT2M16.5672394S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5040,32 +5253,34 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T19:09:58.8678546Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-17T15:23:36.4146692Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1652' + - '1654' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:12:18 GMT + - Mon, 17 Apr 2023 15:25:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9914CEB13F644824A8E40A1D6D12A0C0 Ref B: BL2AA2030109037 Ref C: 2023-01-09T19:12:18Z' status: code: 200 message: OK @@ -5081,33 +5296,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T18:57:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:13:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23948' + - '55598' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:12:20 GMT + - Mon, 17 Apr 2023 15:25:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D911AE9DBE0D4F9898FF4A07E25AD685 Ref B: BL2AA2030106045 Ref C: 2023-01-09T19:12:19Z' status: code: 200 message: OK @@ -5125,15 +5340,16 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-01-09-19-09-58-f7866\",\r\n - \ \"duration\": \"PT2M19.53985S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-23-36-df8d6\",\r\n + \ \"duration\": \"PT2M16.5672394S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5142,32 +5358,34 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T19:09:06.6250594Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T19:09:58.8678546Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-17T15:23:36.4146692Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1652' + - '1654' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:12:21 GMT + - Mon, 17 Apr 2023 15:25:56 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DCD47F456C7A44ABB58DE7E8E249C1E0 Ref B: BL2AA2030109009 Ref C: 2023-01-09T19:12:20Z' status: code: 200 message: OK @@ -5187,9 +5405,10 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -5199,21 +5418,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:12:23 GMT + - Mon, 17 Apr 2023 15:25:56 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: 60D4543822794D868FD42254D34028D2 Ref B: BL2AA2030109009 Ref C: 2023-01-09T19:12:21Z' + - '14999' status: code: 200 message: OK @@ -5225,46 +5442,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - stack group create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes + - --name -g --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: '' + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '346' + content-type: + - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:12:31 GMT + - Mon, 17 Apr 2023 15:25:56 GMT expires: - '-1' - location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: DBE002124A794323A623DD24BC64CD87 Ref B: BL2AA2030109035 Ref C: 2023-01-09T19:12:23Z' status: - code: 202 - message: Accepted + code: 404 + message: Not Found - request: body: null headers: @@ -5272,38 +5486,837 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - group delete Connection: - keep-alive - ParameterSetName: - - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - python-requests/2.26.0 method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw1RTRFNEZFM0UxOTUxRkNELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://aka.ms/BicepLatestRelease response: body: string: '' headers: cache-control: - - no-cache + - max-age=0, no-cache, no-store + connection: + - keep-alive content-length: - '0' date: - - Mon, 09 Jan 2023 19:12:46 GMT + - Mon, 17 Apr 2023 15:25:58 GMT expires: - - '-1' + - Mon, 17 Apr 2023 15:25:58 GMT + location: + - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache + request-context: + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + server: + - Kestrel strict-transport-security: - - max-age=31536000; includeSubDomains + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://downloads.bicep.azure.com/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/98925381","assets_url":"https://api.github.com/repos/Azure/bicep/releases/98925381/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/98925381/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.16.2","id":98925381,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4F5XtF","tag_name":"v0.16.2","target_commitish":"main","name":"v0.16.2","draft":false,"prerelease":false,"created_at":"2023-04-05T15:27:33Z","published_at":"2023-04-11T19:26:02Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196329","id":103196329,"node_id":"RA_kwDOD7S9ks4GJqap","name":"Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27360858,"download_count":3,"created_at":"2023-04-11T14:16:45Z","updated_at":"2023-04-11T14:16:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196317","id":103196317,"node_id":"RA_kwDOD7S9ks4GJqad","name":"Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27766844,"download_count":3,"created_at":"2023-04-11T14:16:34Z","updated_at":"2023-04-11T14:16:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196376","id":103196376,"node_id":"RA_kwDOD7S9ks4GJqbY","name":"Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27643258,"download_count":2,"created_at":"2023-04-11T14:17:11Z","updated_at":"2023-04-11T14:17:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196341","id":103196341,"node_id":"RA_kwDOD7S9ks4GJqa1","name":"Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28087538,"download_count":4,"created_at":"2023-04-11T14:16:53Z","updated_at":"2023-04-11T14:16:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196295","id":103196295,"node_id":"RA_kwDOD7S9ks4GJqaH","name":"Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27640274,"download_count":4,"created_at":"2023-04-11T14:16:25Z","updated_at":"2023-04-11T14:16:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196274","id":103196274,"node_id":"RA_kwDOD7S9ks4GJqZy","name":"Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27964739,"download_count":5,"created_at":"2023-04-11T14:16:14Z","updated_at":"2023-04-11T14:16:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196098","id":103196098,"node_id":"RA_kwDOD7S9ks4GJqXC","name":"Azure.Bicep.Core.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":573156,"download_count":3,"created_at":"2023-04-11T14:14:38Z","updated_at":"2023-04-11T14:14:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196103","id":103196103,"node_id":"RA_kwDOD7S9ks4GJqXH","name":"Azure.Bicep.Core.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":184789,"download_count":3,"created_at":"2023-04-11T14:14:40Z","updated_at":"2023-04-11T14:14:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196109","id":103196109,"node_id":"RA_kwDOD7S9ks4GJqXN","name":"Azure.Bicep.Decompiler.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":98381,"download_count":4,"created_at":"2023-04-11T14:14:43Z","updated_at":"2023-04-11T14:14:43Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196113","id":103196113,"node_id":"RA_kwDOD7S9ks4GJqXR","name":"Azure.Bicep.Decompiler.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23934,"download_count":3,"created_at":"2023-04-11T14:14:45Z","updated_at":"2023-04-11T14:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196120","id":103196120,"node_id":"RA_kwDOD7S9ks4GJqXY","name":"Azure.Bicep.MSBuild.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45560,"download_count":3,"created_at":"2023-04-11T14:14:47Z","updated_at":"2023-04-11T14:14:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196124","id":103196124,"node_id":"RA_kwDOD7S9ks4GJqXc","name":"Azure.Bicep.MSBuild.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6942,"download_count":3,"created_at":"2023-04-11T14:14:49Z","updated_at":"2023-04-11T14:14:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196129","id":103196129,"node_id":"RA_kwDOD7S9ks4GJqXh","name":"Azure.Bicep.RegistryModuleTool.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23603320,"download_count":5,"created_at":"2023-04-11T14:14:51Z","updated_at":"2023-04-11T14:14:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196139","id":103196139,"node_id":"RA_kwDOD7S9ks4GJqXr","name":"Azure.Bicep.RegistryModuleTool.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":200972,"download_count":3,"created_at":"2023-04-11T14:14:55Z","updated_at":"2023-04-11T14:14:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196179","id":103196179,"node_id":"RA_kwDOD7S9ks4GJqYT","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25104436,"download_count":6,"created_at":"2023-04-11T14:15:15Z","updated_at":"2023-04-11T14:15:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195975","id":103195975,"node_id":"RA_kwDOD7S9ks4GJqVH","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":56867505,"download_count":25,"created_at":"2023-04-11T14:13:31Z","updated_at":"2023-04-11T14:13:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196001","id":103196001,"node_id":"RA_kwDOD7S9ks4GJqVh","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57090165,"download_count":446,"created_at":"2023-04-11T14:13:48Z","updated_at":"2023-04-11T14:13:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195965","id":103195965,"node_id":"RA_kwDOD7S9ks4GJqU9","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57254260,"download_count":4583,"created_at":"2023-04-11T14:13:21Z","updated_at":"2023-04-11T14:13:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196044","id":103196044,"node_id":"RA_kwDOD7S9ks4GJqWM","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57069200,"download_count":193,"created_at":"2023-04-11T14:14:12Z","updated_at":"2023-04-11T14:14:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196028","id":103196028,"node_id":"RA_kwDOD7S9ks4GJqV8","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57479968,"download_count":993,"created_at":"2023-04-11T14:14:00Z","updated_at":"2023-04-11T14:14:03Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196077","id":103196077,"node_id":"RA_kwDOD7S9ks4GJqWt","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":24119368,"download_count":363,"created_at":"2023-04-11T14:14:30Z","updated_at":"2023-04-11T14:14:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196207","id":103196207,"node_id":"RA_kwDOD7S9ks4GJqYv","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56920088,"download_count":3,"created_at":"2023-04-11T14:15:26Z","updated_at":"2023-04-11T14:15:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196090","id":103196090,"node_id":"RA_kwDOD7S9ks4GJqW6","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56797064,"download_count":5379,"created_at":"2023-04-11T14:14:33Z","updated_at":"2023-04-11T14:14:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196241","id":103196241,"node_id":"RA_kwDOD7S9ks4GJqZR","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":45804447,"download_count":4,"created_at":"2023-04-11T14:15:49Z","updated_at":"2023-04-11T14:15:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196224","id":103196224,"node_id":"RA_kwDOD7S9ks4GJqZA","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":37789327,"download_count":90,"created_at":"2023-04-11T14:15:39Z","updated_at":"2023-04-11T14:15:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.16.2","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.16.2","body":"## + Bug fixes and features\r\n\r\nBicep team:\r\n* Use the correct bitwise operator + for combining flags in JSON model loader (#10325)"}' + headers: + content-length: + - '35354' + content-md5: + - 2LXlN/iJTiK28Is0vPc+lQ== + content-type: + - application/octet-stream + date: + - Mon, 17 Apr 2023 15:25:58 GMT + etag: + - '0x8DB3F551F2D15C5' + last-modified: + - Mon, 17 Apr 2023 15:05:03 GMT + x-azure-ref: + - 0B2U9ZAAAAAAti0kXDWD7QKY5r6eH1as0UEhMMzBFREdFMDMxNwA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= + x-azure-ref-originshield: + - 0B2U9ZAAAAADpN5x+rv/MS4z+JSAhlSZuRVdSMzBFREdFMTUxNgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= x-cache: - - CONFIG_NOCACHE + - TCP_MISS + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.15.31.15270", "templateHash": "8627291063605171044"}}, "parameters": {"location": + {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": + "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": + "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", + "location": "[parameters(''location'')]", "sku": {"name": "Standard_LRS"}, "kind": + "[parameters(''kind'')]", "properties": {}}]}, "parameters": {"location": {"value": + "westus2"}, "kind": {"value": "StorageV2"}}, "actionOnUnmanage": {"resources": + "delete", "resourceGroups": "delete"}, "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '898' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n + \ \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:26:01.7240555Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:26:01.7240555Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1183' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:26:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n + \ \"name\": \"57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:26:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n + \ \"name\": \"57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:26:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-26-01-7caa2\",\r\n + \ \"duration\": \"PT30.216154S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n + \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeifptsq2nbgkiw\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:26:01.7240555Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:26:01.7240555Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1735' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:26:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-26-01-7caa2\",\r\n + \ \"duration\": \"PT30.216154S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n + \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeifptsq2nbgkiw\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:26:01.7240555Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:26:01.7240555Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1735' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:26:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:26:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:26:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:27:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:27:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:27:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:27:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:28:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:28:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:28:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:28:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 17 Apr 2023 15:29:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 93D09C9061EE45E1946B847A716275BE Ref B: BL2AA2030109035 Ref C: 2023-01-09T19:12:47Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index d012e1461de..09d15982e84 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -13,9 +13,10 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' @@ -29,21 +30,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:14 GMT + - Fri, 14 Apr 2023 14:47: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 8198AA9F7B9445F1ACAF9266CEE3F7F7 Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:13Z' status: code: 404 message: Not Found @@ -61,9 +58,10 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' @@ -77,21 +75,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:14 GMT + - Fri, 14 Apr 2023 14:47: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: FD1CD5A394F64A5690A9E962DB3DF716 Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:14Z' status: code: 404 message: Not Found @@ -113,16 +107,17 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:16.0500637Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:41.2378552Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:16.0500637Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:41.2378552Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -133,21 +128,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:16 GMT + - Fri, 14 Apr 2023 14:47:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 3F17C868506C45B2A72600DDC6C21CBE Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:14Z' status: code: 201 message: Created @@ -175,9 +168,10 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -193,35 +187,33 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:18.0501351Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:42.878524Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:18.0501351Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:42.878524Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1478' + - '1476' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:18 GMT + - Fri, 14 Apr 2023 14:47:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1198' - x-msedge-ref: - - 'Ref A: 0A4403613D584ED4878020B079CCB57D Ref B: BL2AA2030105003 Ref C: 2023-01-09T17:38:16Z' status: code: 201 message: Created @@ -237,11 +229,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -254,26 +247,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:19 GMT + - Fri, 14 Apr 2023 14:47: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 1489B61216A94CD69EEEDC2B55153E78 Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:19Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -292,20 +282,21 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -314,35 +305,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:38:20.3036705Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:20.3036705Z\"\r\n + \"2023-04-14T14:47:43.9972279Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:43.9972279Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1914e2a0-450d-441b-90e6-5053910cd635?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1207' + - '1222' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:20 GMT + - Fri, 14 Apr 2023 14:47:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: E908771FDDAA43FCAC2DB37226E6AEFC Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:20Z' status: code: 201 message: Created @@ -358,36 +347,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1914e2a0-450d-441b-90e6-5053910cd635?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee\",\r\n - \ \"name\": \"8ef664c4-3f92-4dd8-90a5-5ab2d6a2edee\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1914e2a0-450d-441b-90e6-5053910cd635\",\r\n + \ \"name\": \"1914e2a0-450d-441b-90e6-5053910cd635\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:37 GMT + - Fri, 14 Apr 2023 14:48:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 485CD6DD3784436D89C4794DC06C77A3 Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:37Z' status: code: 200 message: OK @@ -403,19 +395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-20-43e1b\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-47-44-938c1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT14.7002862S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.923729S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -425,32 +418,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:20.3036705Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:43.9972279Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:20.3036705Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:43.9972279Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1600' + - '1613' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:37 GMT + - Fri, 14 Apr 2023 14:48:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FE54CAA5DE8349A69CE617A9A5872C24 Ref B: BL2AA2030107027 Ref C: 2023-01-09T17:38:38Z' status: code: 200 message: OK @@ -468,17 +463,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-20-43e1b\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-47-44-938c1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT14.7002862S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.923729S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -488,32 +484,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:20.3036705Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:43.9972279Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:20.3036705Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:43.9972279Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1600' + - '1613' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:38 GMT + - Fri, 14 Apr 2023 14:48:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 49F6FB5629D448908631C87CB0134A0C Ref B: BL2AA2030108009 Ref C: 2023-01-09T17:38:38Z' status: code: 200 message: OK @@ -533,9 +531,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -545,21 +544,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:38:39 GMT + - Fri, 14 Apr 2023 14:48:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 8736835238C941169F99D1ADBB96D6C4 Ref B: BL2AA2030108009 Ref C: 2023-01-09T17:38:39Z' + - '14998' status: code: 200 message: OK @@ -575,11 +572,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-spec --parameters --yes + - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -592,21 +590,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:41 GMT + - Fri, 14 Apr 2023 14:48:02 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 9EE72F39AF374E7F96AAC2A7998DFFC4 Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:38:40Z' status: code: 404 message: Not Found @@ -622,11 +616,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-spec --parameters --yes + - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": @@ -642,38 +637,41 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:18.0501351Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:42.878524Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:18.0501351Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:42.878524Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1478' + - '1476' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:42 GMT + - Fri, 14 Apr 2023 14:48:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F309521FC9124C7EA80FF3694449728D Ref B: BL2AA2030106037 Ref C: 2023-01-09T17:38:42Z' status: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, + body: '{"location": "westus2", "tags": {}, "properties": {"templateLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": false}}}' @@ -687,20 +685,21 @@ interactions: Connection: - keep-alive Content-Length: - - '511' + - '523' Content-Type: - application/json ParameterSetName: - - --name --location --template-spec --parameters --yes + - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -709,36 +708,34 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:43.6188837Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:04.590335Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:43.6188837Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:04.590335Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f41fe600-b22b-4d6c-af5d-1d1a47566002?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9aa98320-084f-405f-9efb-958dfc8525f7?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1438' + - '1451' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:38:44 GMT + - Fri, 14 Apr 2023 14:48:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: CF4CE6E8485A4024B012939C7F075AE0 Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:38:43Z' + - '1197' status: code: 201 message: Created @@ -754,36 +751,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-spec --parameters --yes + - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f41fe600-b22b-4d6c-af5d-1d1a47566002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9aa98320-084f-405f-9efb-958dfc8525f7?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f41fe600-b22b-4d6c-af5d-1d1a47566002\",\r\n - \ \"name\": \"f41fe600-b22b-4d6c-af5d-1d1a47566002\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9aa98320-084f-405f-9efb-958dfc8525f7\",\r\n + \ \"name\": \"9aa98320-084f-405f-9efb-958dfc8525f7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:02 GMT + - Fri, 14 Apr 2023 14:48:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 285E0882B3D240F9A87BBE216A2A8B6F Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:39:02Z' status: code: 200 message: OK @@ -799,19 +799,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-spec --parameters --yes + - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-44-dd448\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-04-c57d2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.4111158S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0330783S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -822,32 +823,34 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:43.6188837Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:04.590335Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:43.6188837Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:04.590335Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1831' + - '1843' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:03 GMT + - Fri, 14 Apr 2023 14:48:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E3A12DDF0D7349768FA610CE84299CA4 Ref B: BL2AA2030106021 Ref C: 2023-01-09T17:39:03Z' status: code: 200 message: OK @@ -865,17 +868,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-38-44-dd448\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-04-c57d2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.4111158S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0330783S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -886,32 +890,34 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:38:43.6188837Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:04.590335Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:38:43.6188837Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:04.590335Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1831' + - '1843' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:03 GMT + - Fri, 14 Apr 2023 14:48:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1199FB78EF984C4A87F3629EA9A53283 Ref B: BL2AA2030106009 Ref C: 2023-01-09T17:39:04Z' status: code: 200 message: OK @@ -931,9 +937,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -943,21 +950,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:39:04 GMT + - Fri, 14 Apr 2023 14:48:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-msedge-ref: - - 'Ref A: 253635F6701F464A95621CF9AC7FC23B Ref B: BL2AA2030106009 Ref C: 2023-01-09T17:39:04Z' status: code: 200 message: OK @@ -973,11 +978,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --resource-group --parameters --yes + - --name --location --template-file --deployment-resource-group --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -990,26 +997,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:06 GMT + - Fri, 14 Apr 2023 14:48: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 8B9C15C68D9A44A5AB427B296F3696DF Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:05Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -1028,20 +1032,22 @@ interactions: Connection: - keep-alive Content-Length: - - '870' + - '882' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --resource-group --parameters --yes + - --name --location --template-file --deployment-resource-group --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -1050,35 +1056,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:39:06.4598948Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:06.4598948Z\"\r\n + \"2023-04-14T14:48:24.2911292Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:24.2911292Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7652cbf8-dda8-403c-bac7-8bb31c537826?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1255' + - '1270' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:06 GMT + - Fri, 14 Apr 2023 14:48:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 58D61C7F6F9B416CA5583C9883187D1C Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:06Z' + - '1199' status: code: 201 message: Created @@ -1094,36 +1098,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --resource-group --parameters --yes + - --name --location --template-file --deployment-resource-group --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7652cbf8-dda8-403c-bac7-8bb31c537826?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/7652cbf8-dda8-403c-bac7-8bb31c537826\",\r\n - \ \"name\": \"7652cbf8-dda8-403c-bac7-8bb31c537826\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9\",\r\n + \ \"name\": \"ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:23 GMT + - Fri, 14 Apr 2023 14:48:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 958CD7DF9A7F4C448995E81CAB2320D5 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:23Z' status: code: 200 message: OK @@ -1139,19 +1147,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --resource-group --parameters --yes + - --name --location --template-file --deployment-resource-group --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-06-2cfd3\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-24-b7f04\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT11.402607S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.6894468S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1161,32 +1171,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:06.4598948Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:24.2911292Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:06.4598948Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:24.2911292Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1695' + - '1710' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:24 GMT + - Fri, 14 Apr 2023 14:48:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B3BD4E7C44FF452EB2838BA0308BF388 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:24Z' status: code: 200 message: OK @@ -1204,17 +1216,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-06-2cfd3\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-24-b7f04\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT11.402607S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.6894468S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1224,32 +1237,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:06.4598948Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:24.2911292Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:06.4598948Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:24.2911292Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1695' + - '1710' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:27 GMT + - Fri, 14 Apr 2023 14:48:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5E5600C64E0A477FA0A543B94194D00A Ref B: BL2AA2030107025 Ref C: 2023-01-09T17:39:24Z' status: code: 200 message: OK @@ -1269,9 +1284,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1281,21 +1297,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:39:29 GMT + - Fri, 14 Apr 2023 14:48:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: EA93FA36C7FF46C696F7B5051B670AF0 Ref B: BL2AA2030107025 Ref C: 2023-01-09T17:39:27Z' + - '14998' status: code: 200 message: OK @@ -1311,11 +1325,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file -g --yes + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -1328,141 +1344,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:29 GMT + - Fri, 14 Apr 2023 14:48: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 3A7D62A743124693A135C6C15A20E353 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:29Z' status: code: 404 message: Not Found - request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://aka.ms/BicepLatestRelease - response: - body: - string: '' - headers: - cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive - content-length: - - '0' - date: - - Mon, 09 Jan 2023 17:39:31 GMT - expires: - - Mon, 09 Jan 2023 17:39:31 GMT - location: - - https://downloads.bicep.azure.com/releases/latest - pragma: - - no-cache - request-context: - - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 - server: - - Kestrel - strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://downloads.bicep.azure.com/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554","assets_url":"https://api.github.com/repos/Azure/bicep/releases/85011554/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/85011554/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.13.1","id":85011554,"author":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4FESxi","tag_name":"v0.13.1","target_commitish":"main","name":"v0.13.1","draft":false,"prerelease":false,"created_at":"2022-12-02T16:18:55Z","published_at":"2022-12-05T22:40:09Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086565","id":87086565,"node_id":"RA_kwDOD7S9ks4FMNXl","name":"Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21939065,"download_count":37,"created_at":"2022-12-05T16:25:42Z","updated_at":"2022-12-05T16:25:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086537","id":87086537,"node_id":"RA_kwDOD7S9ks4FMNXJ","name":"Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22405300,"download_count":37,"created_at":"2022-12-05T16:25:27Z","updated_at":"2022-12-05T16:25:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.linux-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086633","id":87086633,"node_id":"RA_kwDOD7S9ks4FMNYp","name":"Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":21834574,"download_count":38,"created_at":"2022-12-05T16:26:36Z","updated_at":"2022-12-05T16:26:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086599","id":87086599,"node_id":"RA_kwDOD7S9ks4FMNYH","name":"Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22318205,"download_count":33,"created_at":"2022-12-05T16:26:09Z","updated_at":"2022-12-05T16:26:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.osx-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086501","id":87086501,"node_id":"RA_kwDOD7S9ks4FMNWl","name":"Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22223402,"download_count":41,"created_at":"2022-12-05T16:25:12Z","updated_at":"2022-12-05T16:25:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-arm64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086439","id":87086439,"node_id":"RA_kwDOD7S9ks4FMNVn","name":"Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22492654,"download_count":61,"created_at":"2022-12-05T16:24:45Z","updated_at":"2022-12-05T16:24:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.CommandLine.win-x64.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086104","id":87086104,"node_id":"RA_kwDOD7S9ks4FMNQY","name":"Azure.Bicep.Core.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":484757,"download_count":42,"created_at":"2022-12-05T16:22:36Z","updated_at":"2022-12-05T16:22:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086106","id":87086106,"node_id":"RA_kwDOD7S9ks4FMNQa","name":"Azure.Bicep.Core.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":160641,"download_count":29,"created_at":"2022-12-05T16:22:38Z","updated_at":"2022-12-05T16:22:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Core.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086111","id":87086111,"node_id":"RA_kwDOD7S9ks4FMNQf","name":"Azure.Bicep.Decompiler.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":89986,"download_count":32,"created_at":"2022-12-05T16:22:40Z","updated_at":"2022-12-05T16:22:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086116","id":87086116,"node_id":"RA_kwDOD7S9ks4FMNQk","name":"Azure.Bicep.Decompiler.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":22644,"download_count":31,"created_at":"2022-12-05T16:22:42Z","updated_at":"2022-12-05T16:22:42Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.Decompiler.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086120","id":87086120,"node_id":"RA_kwDOD7S9ks4FMNQo","name":"Azure.Bicep.MSBuild.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45377,"download_count":30,"created_at":"2022-12-05T16:22:44Z","updated_at":"2022-12-05T16:22:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086133","id":87086133,"node_id":"RA_kwDOD7S9ks4FMNQ1","name":"Azure.Bicep.MSBuild.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6940,"download_count":30,"created_at":"2022-12-05T16:22:47Z","updated_at":"2022-12-05T16:22:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.MSBuild.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086137","id":87086137,"node_id":"RA_kwDOD7S9ks4FMNQ5","name":"Azure.Bicep.RegistryModuleTool.0.13.1.nupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":20623971,"download_count":35,"created_at":"2022-12-05T16:22:49Z","updated_at":"2022-12-05T16:22:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086144","id":87086144,"node_id":"RA_kwDOD7S9ks4FMNRA","name":"Azure.Bicep.RegistryModuleTool.0.13.1.snupkg","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":177071,"download_count":32,"created_at":"2022-12-05T16:22:53Z","updated_at":"2022-12-05T16:22:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/Azure.Bicep.RegistryModuleTool.0.13.1.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086154","id":87086154,"node_id":"RA_kwDOD7S9ks4FMNRK","name":"bicep-langserver.zip","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":21965645,"download_count":351,"created_at":"2022-12-05T16:22:59Z","updated_at":"2022-12-05T16:23:02Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085752","id":87085752,"node_id":"RA_kwDOD7S9ks4FMNK4","name":"bicep-linux-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43262692,"download_count":95,"created_at":"2022-12-05T16:19:34Z","updated_at":"2022-12-05T16:19:39Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085814","id":87085814,"node_id":"RA_kwDOD7S9ks4FMNL2","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43759556,"download_count":9734,"created_at":"2022-12-05T16:20:06Z","updated_at":"2022-12-05T16:20:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085712","id":87085712,"node_id":"RA_kwDOD7S9ks4FMNKQ","name":"bicep-linux-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43858881,"download_count":124069,"created_at":"2022-12-05T16:19:13Z","updated_at":"2022-12-05T16:19:19Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085981","id":87085981,"node_id":"RA_kwDOD7S9ks4FMNOd","name":"bicep-osx-arm64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43195952,"download_count":54,"created_at":"2022-12-05T16:21:26Z","updated_at":"2022-12-05T16:21:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87085880","id":87085880,"node_id":"RA_kwDOD7S9ks4FMNM4","name":"bicep-osx-x64","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":43910500,"download_count":3907,"created_at":"2022-12-05T16:20:32Z","updated_at":"2022-12-05T16:20:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086072","id":87086072,"node_id":"RA_kwDOD7S9ks4FMNP4","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":20197576,"download_count":3160,"created_at":"2022-12-05T16:22:23Z","updated_at":"2022-12-05T16:22:26Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086182","id":87086182,"node_id":"RA_kwDOD7S9ks4FMNRm","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":43646240,"download_count":24,"created_at":"2022-12-05T16:23:16Z","updated_at":"2022-12-05T16:23:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086080","id":87086080,"node_id":"RA_kwDOD7S9ks4FMNQA","name":"bicep-win-x64.exe","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":42979416,"download_count":79968,"created_at":"2022-12-05T16:22:29Z","updated_at":"2022-12-05T16:22:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086332","id":87086332,"node_id":"RA_kwDOD7S9ks4FMNT8","name":"vs-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":44307809,"download_count":19,"created_at":"2022-12-05T16:24:13Z","updated_at":"2022-12-05T16:24:18Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/87086257","id":87086257,"node_id":"RA_kwDOD7S9ks4FMNSx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"bhsubra","id":30270536,"node_id":"MDQ6VXNlcjMwMjcwNTM2","avatar_url":"https://avatars.githubusercontent.com/u/30270536?v=4","gravatar_id":"","url":"https://api.github.com/users/bhsubra","html_url":"https://github.com/bhsubra","followers_url":"https://api.github.com/users/bhsubra/followers","following_url":"https://api.github.com/users/bhsubra/following{/other_user}","gists_url":"https://api.github.com/users/bhsubra/gists{/gist_id}","starred_url":"https://api.github.com/users/bhsubra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhsubra/subscriptions","organizations_url":"https://api.github.com/users/bhsubra/orgs","repos_url":"https://api.github.com/users/bhsubra/repos","events_url":"https://api.github.com/users/bhsubra/events{/privacy}","received_events_url":"https://api.github.com/users/bhsubra/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":72127899,"download_count":213,"created_at":"2022-12-05T16:23:46Z","updated_at":"2022-12-05T16:23:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.13.1/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.13.1","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.13.1","body":"## - Highlights\r\n\r\nBicep team:\r\n* Bicep deploy - support deployment to azure - cloud (#9097)\r\n\r\n@miqm\r\n* Emitting getSecret inside a ternary expression - (#8658)\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* Fix for partially-typed - resource type completions (#9158)\r\n* InsertResource: Use json() function - to format non-integer number (#9162)\r\n* Support fully-qualified ambient - type symbols in output declaration type clauses (#8961)\r\n* Fix `flatten` - signature (#9117)\r\n* Block nested runtime functions (#8965)\r\n\r\n@matsest\r\n* - fix(vscode): add icons for container apps (#9101)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/85011554/reactions","total_count":3,"+1":3,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"mentions_count":2}' - headers: - content-length: - - '37819' - content-md5: - - AgX12F8ZaKu1BzTchU1bbw== - content-type: - - application/octet-stream - date: - - Mon, 09 Jan 2023 17:39:30 GMT - etag: - - '0x8DAF263A6765CC8' - last-modified: - - Mon, 09 Jan 2023 17:05:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-azure-ref: - - 0U1G8YwAAAAAWxkD3JP1MRqnNTbuB2dyrTU5aMjIxMDYwNjE0MDIzADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== - x-azure-ref-originshield: - - 0U1G8YwAAAACVwS0MDS0HSISC+9voAUwvTU5aMjIxMDYwNjExMDE5ADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== - x-cache: - - TCP_REMOTE_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.4.1124.51302", "templateHash": "13318272087014647935"}}, "parameters": {"location": + "0.15.31.15270", "templateHash": "6048262845766178169"}}, "parameters": {"location": {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": @@ -1481,55 +1381,55 @@ interactions: Connection: - keep-alive Content-Length: - - '1056' + - '1066' Content-Type: - application/json ParameterSetName: - - --name --location --template-file -g --yes + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:39:33.6039202Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:33.6039202Z\"\r\n + \"2023-04-14T14:48:45.9834666Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:45.9834666Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/26bf3535-696f-4c97-ad80-d421d6b630e1?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1150' + - '1165' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:33 GMT + - Fri, 14 Apr 2023 14:48:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: BC1B2B7C7ACA4B91B785C3BF1C3CEEF4 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:33Z' + - '1199' status: code: 201 message: Created @@ -1545,36 +1445,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file -g --yes + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/26bf3535-696f-4c97-ad80-d421d6b630e1?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/26bf3535-696f-4c97-ad80-d421d6b630e1\",\r\n - \ \"name\": \"26bf3535-696f-4c97-ad80-d421d6b630e1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c\",\r\n + \ \"name\": \"d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:50 GMT + - Fri, 14 Apr 2023 14:49:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 39F83D9F8E2A4390929E3AF7D2099490 Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:50Z' status: code: 200 message: OK @@ -1590,19 +1494,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file -g --yes + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-33-78543\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-46-888c8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT12.3833751S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.7818268S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1612,32 +1518,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:33.6039202Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:45.9834666Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:33.6039202Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:45.9834666Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1938' + - '1953' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:51 GMT + - Fri, 14 Apr 2023 14:49:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3693BFB3361747F697A45334F2E2993B Ref B: BL2AA2030108037 Ref C: 2023-01-09T17:39:51Z' status: code: 200 message: OK @@ -1655,17 +1563,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-39-33-78543\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-46-888c8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT12.3833751S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.7818268S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1675,32 +1584,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:39:33.6039202Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:45.9834666Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:39:33.6039202Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:45.9834666Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1938' + - '1953' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:54 GMT + - Fri, 14 Apr 2023 14:49:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5E9F9F9AAA7C45ED8DB4D20A4CB8F512 Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:39:51Z' status: code: 200 message: OK @@ -1720,9 +1631,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1732,21 +1644,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:39:56 GMT + - Fri, 14 Apr 2023 14:49:05 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: F7A27E12DF5449648086542B29DBE87A Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:39:55Z' + - '14998' status: code: 200 message: OK @@ -1768,9 +1678,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1782,21 +1693,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:59 GMT + - Fri, 14 Apr 2023 14:49: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-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 442D5B74D0114E0286D3B2AE3BD40A43 Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:39:57Z' status: code: 201 message: Created @@ -1812,11 +1719,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -1829,26 +1738,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:39:59 GMT + - Fri, 14 Apr 2023 14:49: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 85B6BF5E89224F51B8E8B5A0BFAC2F7C Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:39:59Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -1877,20 +1783,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1658' + - '1670' Content-Type: - application/json ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -1898,36 +1806,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:00.7525414Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:07.6453685Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e47a2d7-c693-4524-9964-0868080af07d?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1243' + - '1258' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:40:02 GMT + - Fri, 14 Apr 2023 14:49:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 88FD6C6BF7214BC99A56E9062157A5AF Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:00Z' + - '1199' status: code: 201 message: Created @@ -1943,81 +1849,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n - \ \"name\": \"5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 17:40:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: ADAFF020F51D4FD187EC9F9C23829BB6 Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e47a2d7-c693-4524-9964-0868080af07d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n - \ \"name\": \"5cf3757b-a44f-47bb-a449-122e33f4c018\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e47a2d7-c693-4524-9964-0868080af07d\",\r\n + \ \"name\": \"2e47a2d7-c693-4524-9964-0868080af07d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:40:50 GMT + - Fri, 14 Apr 2023 14:49:25 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 87661F39246E4D4DAC33C17E9D667D6D Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:50Z' status: code: 200 message: OK @@ -2033,19 +1898,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-02-d2dae\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-08-42fb4\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT27.6800006S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.2114975S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2055,32 +1922,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:00.7525414Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:07.6453685Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2099' + - '2113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:40:50 GMT + - Fri, 14 Apr 2023 14:49:25 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 21624E43AD4B40C5BCFA88B062ACB87C Ref B: BL2AA2030107051 Ref C: 2023-01-09T17:40:51Z' status: code: 200 message: OK @@ -2096,19 +1965,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-02-d2dae\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-08-42fb4\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT27.6800006S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.2114975S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2118,37 +1989,40 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:00.7525414Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:07.6453685Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2099' + - '2113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:40:52 GMT + - Fri, 14 Apr 2023 14:49:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1EFD0E81A9604FB2801C6E32793A61F5 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:40:52Z' status: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -2177,20 +2051,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1658' + - '1670' Content-Type: - application/json ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -2198,36 +2074,38 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:54.5338285Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:26.842025Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a764cc0c-8552-41d3-9bab-b607a724f4c5?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3da1624-5ef4-49e0-808f-2dcef96f9893?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1243' + - '1257' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:40:54 GMT + - Fri, 14 Apr 2023 14:49:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: E26F9448AF04469D9239AB10E42A5739 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:40:53Z' + - '1198' status: code: 200 message: OK @@ -2243,36 +2121,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a764cc0c-8552-41d3-9bab-b607a724f4c5?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3da1624-5ef4-49e0-808f-2dcef96f9893?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a764cc0c-8552-41d3-9bab-b607a724f4c5\",\r\n - \ \"name\": \"a764cc0c-8552-41d3-9bab-b607a724f4c5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3da1624-5ef4-49e0-808f-2dcef96f9893\",\r\n + \ \"name\": \"b3da1624-5ef4-49e0-808f-2dcef96f9893\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:12 GMT + - Fri, 14 Apr 2023 14:49:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D138F443256F4C0D862AEABAC68EB006 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:41:12Z' status: code: 200 message: OK @@ -2288,19 +2170,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-55-ae7e1\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-26-2deba\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT17.178845S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7608851S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2312,32 +2196,34 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:54.5338285Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:26.842025Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2557' + - '2571' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:12 GMT + - Fri, 14 Apr 2023 14:49:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C13300AECB444AE68B739783A61BAEA9 Ref B: BL2AA2030107049 Ref C: 2023-01-09T17:41:13Z' status: code: 200 message: OK @@ -2355,54 +2241,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:13 GMT + - Fri, 14 Apr 2023 14:49:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 019804A165C443DF9B6189FFC3A0C772 Ref B: BL2AA2030108033 Ref C: 2023-01-09T17:41:14Z' status: code: 200 message: OK @@ -2420,17 +2369,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:11.6494562Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:11.8272791Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:15.2743821Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:12.2336603Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2441,19 +2391,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:14 GMT + - Fri, 14 Apr 2023 14:49:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8B494009144F40B5A27127B75A7BFCAD Ref B: BL2AA2030108033 Ref C: 2023-01-09T17:41:14Z' status: code: 200 message: OK @@ -2471,54 +2423,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:15 GMT + - Fri, 14 Apr 2023 14:49:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7BD6538BD4A24AAC9C8B20B606B22F75 Ref B: BL2AA2030105037 Ref C: 2023-01-09T17:41:14Z' status: code: 200 message: OK @@ -2536,17 +2551,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:41:02.3354512Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:29.6099169Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:41:05.8823072Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:30.1255896Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2557,19 +2573,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:16 GMT + - Fri, 14 Apr 2023 14:49:47 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9BF32DEA864E4592AC9CA878097E1B29 Ref B: BL2AA2030105037 Ref C: 2023-01-09T17:41:15Z' status: code: 200 message: OK @@ -2585,20 +2603,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-40-55-ae7e1\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-26-2deba\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT17.178845S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7608851S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2610,37 +2629,40 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:54.5338285Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:26.842025Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2557' + - '2571' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:16 GMT + - Fri, 14 Apr 2023 14:49:48 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E39678B59E5941A599653E5B21EE676E Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:41:16Z' status: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -2669,21 +2691,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1660' + - '1672' Content-Type: - application/json ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -2691,36 +2714,38 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:41:16.8266269Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:49.5789242Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1245' + - '1260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:16 GMT + - Fri, 14 Apr 2023 14:49:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-msedge-ref: - - 'Ref A: 8ADB7AA468284AC28CAAB7869ECA58EC Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:41:16Z' + - '1199' status: code: 200 message: OK @@ -2736,37 +2761,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n - \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n + \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:41:34 GMT + - Fri, 14 Apr 2023 14:50:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 31DDE9143A7E481898B98351F9EA61F2 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:41:34Z' status: code: 200 message: OK @@ -2782,83 +2810,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n - \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 17:42:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7A14E82BC8B34AB0925444D9E6EBBB62 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:42:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n - \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n + \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:42:34 GMT + - Fri, 14 Apr 2023 14:50:36 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2451E67C38534D0E8F931C73D967475F Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:42:34Z' status: code: 200 message: OK @@ -2874,37 +2859,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n - \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n + \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:43:04 GMT + - Fri, 14 Apr 2023 14:51:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9C31CCEA42CC438CB6A9800CB0E0E099 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:43:04Z' status: code: 200 message: OK @@ -2920,37 +2908,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n - \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n + \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:43:35 GMT + - Fri, 14 Apr 2023 14:51:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0D1FB24333AA4110AF7E9E80D3E2443D Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:43:35Z' status: code: 200 message: OK @@ -2966,37 +2957,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n - \ \"name\": \"a1283d8a-4b1a-4fdc-b000-e79f74211753\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n + \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:05 GMT + - Fri, 14 Apr 2023 14:52:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D0FAB6416DE74D758722396DD92A5691 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:44:05Z' status: code: 200 message: OK @@ -3012,20 +3006,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --resource-group --template-file --parameters --delete-resources - --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-41-16-e0825\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-49-c2aab\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M32.7702991S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M18.4348045S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3037,32 +3032,34 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T17:41:16.8266269Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-14T14:49:49.5789242Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2566' + - '2581' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:06 GMT + - Fri, 14 Apr 2023 14:52:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 57D1F6BE50FE470FB39D349FC9F35A12 Ref B: BL2AA2030108047 Ref C: 2023-01-09T17:44:06Z' status: code: 200 message: OK @@ -3080,54 +3077,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:06 GMT + - Fri, 14 Apr 2023 14:52:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AAA251DFE9FB4257BCF7826D469AAB0F Ref B: BL2AA2030109053 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3145,17 +3205,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:11.6494562Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:11.8272791Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:40:15.2743821Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:12.2336603Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -3166,19 +3227,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:06 GMT + - Fri, 14 Apr 2023 14:52:10 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B61020EA433F4BEFAB187D5ACCE6D6DD Ref B: BL2AA2030109053 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3196,54 +3259,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:07 GMT + - Fri, 14 Apr 2023 14:52:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2CC59F370F9643B78D291F87841E0AF7 Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3261,17 +3387,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:41:26.3634738Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:54.1718211Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:41:28.5041107Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:55.0155302Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3282,19 +3409,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:07 GMT + - Fri, 14 Apr 2023 14:52:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3569C4EF26D54C2097699CC2087AB309 Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:44:07Z' status: code: 200 message: OK @@ -3312,9 +3441,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3326,19 +3456,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:08 GMT + - Fri, 14 Apr 2023 14:52:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C0C95125BA294D7EA9B462049D9BEAAC Ref B: BL2AA2030110039 Ref C: 2023-01-09T17:44:08Z' status: code: 200 message: OK @@ -3356,33 +3484,75 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:40:11.1336327Z","changedTime":"2023-01-09T17:40:12.3328551Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:40:11.6494562Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:40:11.6494562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:40:14.7515876Z","changedTime":"2023-01-09T17:40:15.7768268Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:40:15.2743821Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:40:15.2743821Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:41:25.5181673Z","changedTime":"2023-01-09T17:41:26.4796602Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:41:26.3634738Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:41:26.3634738Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:41:27.8451978Z","changedTime":"2023-01-09T17:41:28.6564215Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:41:28.5041107Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:41:28.5041107Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:49:11.8085494Z","changedTime":"2023-04-14T14:49:11.9367465Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:11.8272791Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:11.8272791Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:49:12.2032478Z","changedTime":"2023-04-14T14:49:12.3429638Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:12.2336603Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:12.2336603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:49:54.1471459Z","changedTime":"2023-04-14T14:49:54.2967752Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:54.1718211Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:54.1718211Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:49:54.9775049Z","changedTime":"2023-04-14T14:49:55.1093424Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:55.0155302Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:55.0155302Z"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke%2ffv1eS99G3fY8PO67ph99%2bjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p%2fbw34bBJO3nC%2bbGI0il%2br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2bHqdeKcT1hZRBS9eaEgFtxBNKVNS%2fISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2bXzWniMQVC6%2bE7N3D4joi7fNjM6N4a%2b3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP%2fhpknsQGuRWdjTEc0zU0uVgIk%2bDtXk43%2fMDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx%2fFHJAjELEd7qf%2bdPOxG%2b9NIbfMfvXb8I%2f5cWUqyn3WWo7x3%2f5brQmbrufuc%2fb7O8ack65PLG%2b4M%2fnM9VQq93%2fCOss4RGl1j%2fRJgBz8tEXJxfbfIlsHsFEvm7%2bnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2b%2fh8ZmNoeIe%2b17iP%2bZmr%2bSqKm49djhpJj37ZQBKu%2fRa1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG%2fCRnult7OhY%2bjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E%2f6uW9er%2b%2f5fIN8xxhJs9ZPQGIc53Yc%2bpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY%2fK2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2blfts%2f0rf95kCPZaA3af3yZxGxoTIT94%2ff3764UprlT1eZw2QBaYBvSe%2fOrIrd72cgmch4M85AU9x%2f%2bKq9%2fVfx%2bfPoj1F17IfXqt1X7tX6j0%2bWMTCpCu7a61%2bfLK44A381Xew5k%2fDXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa%2fy%2byfP%2f%2bAw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '2695' + - '4210' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:44:09 GMT + - Fri, 14 Apr 2023 14:52:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke/fv1eS99G3fY8PO67ph99%2BjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p/bw34bBJO3nC%2BbGI0il%2Br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2BHqdeKcT1hZRBS9eaEgFtxBNKVNS/ISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2BXzWniMQVC6%2BE7N3D4joi7fNjM6N4a%2B3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP/hpknsQGuRWdjTEc0zU0uVgIk%2BDtXk43/MDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx/FHJAjELEd7qf%2BdPOxG%2B9NIbfMfvXb8I/5cWUqyn3WWo7x3/5brQmbrufuc/b7O8ack65PLG%2B4M/nM9VQq93/COss4RGl1j/RJgBz8tEXJxfbfIlsHsFEvm7%2BnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2B/h8ZmNoeIe%2B17iP%2BZmr%2BSqKm49djhpJj37ZQBKu/Ra1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG/CRnult7OhY%2BjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E/6uW9er%2B/5fIN8xxhJs9ZPQGIc53Yc%2BpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY/K2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2Blfts/0rf95kCPZaA3af3yZxGxoTIT94/f3764UprlT1eZw2QBaYBvSe/OrIrd72cgmch4M85AU9x/%2BKq9/Vfx%2BfPoj1F17IfXqt1X7tX6j0%2BWMTCpCu7a61%2BfLK44A381Xew5k/DXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa/y%2ByfP/%2BAw%3D%3D + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 14:52:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C43B5775A9BC4D5F8A114A50170E6A1A Ref B: BL2AA2030110039 Ref C: 2023-01-09T17:44:09Z' status: code: 200 message: OK @@ -3402,9 +3572,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '' @@ -3414,23 +3585,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:44:14 GMT + - Fri, 14 Apr 2023 14:52:19 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-msedge-ref: - - 'Ref A: 2EFCB62827124050B5DA384A8D91B746 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:44:10Z' status: code: 202 message: Accepted @@ -3448,9 +3615,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3460,21 +3628,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:44:30 GMT + - Fri, 14 Apr 2023 14:52:34 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B448C188C607462796103BD1BCA8EC35 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:44:30Z' status: code: 202 message: Accepted @@ -3492,9 +3656,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3504,21 +3669,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:44:47 GMT + - Fri, 14 Apr 2023 14:52:49 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8DB0D36A55484BABAACFAFD73DAC4647 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:44:46Z' status: code: 202 message: Accepted @@ -3536,9 +3697,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3548,21 +3710,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:45:02 GMT + - Fri, 14 Apr 2023 14:53:04 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 33B5B9DA75534F8F8F5090FD98423C2F Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:45:02Z' status: code: 202 message: Accepted @@ -3580,9 +3738,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3592,19 +3751,56 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:45:18 GMT + - Fri, 14 Apr 2023 14:53:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 14:53:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A9F913CCEC174BF983AB67805672D833 Ref B: BL2AA2030105025 Ref C: 2023-01-09T17:45:18Z' status: code: 200 message: OK @@ -3622,17 +3818,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-41-16-e0825\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-49-c2aab\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M32.7702991S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M18.4348045S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3644,32 +3841,34 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T17:40:00.7525414Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T17:41:16.8266269Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-14T14:49:49.5789242Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2566' + - '2581' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:19 GMT + - Fri, 14 Apr 2023 14:53:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 83FBF4BE99614432A4A054FD376AC90E Ref B: BL2AA2030108019 Ref C: 2023-01-09T17:45:19Z' status: code: 200 message: OK @@ -3689,9 +3888,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -3701,21 +3901,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:45:20 GMT + - Fri, 14 Apr 2023 14:53:36 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-msedge-ref: - - 'Ref A: 8188B600AE784B86941053EC8D0D1B38 Ref B: BL2AA2030108019 Ref C: 2023-01-09T17:45:20Z' status: code: 200 message: OK @@ -3731,11 +3929,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -3748,26 +3947,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:21 GMT + - Fri, 14 Apr 2023 14:53:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: E074A76ED1AD4120951E79BCB6F1AF12 Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:21Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", @@ -3786,20 +3982,21 @@ interactions: Connection: - keep-alive Content-Length: - - '738' + - '750' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -3807,36 +4004,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:21.7408271Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:37.0815652Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8dc75ec1-de76-4f9b-99c0-a3056c9f4c23?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdbb946-d6ff-4282-a176-3dda6d773f8c?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1182' + - '1197' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:22 GMT + - Fri, 14 Apr 2023 14:53:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 3D274B0F24FE4828B10A3A83A4E32C76 Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:21Z' + - '1198' status: code: 201 message: Created @@ -3852,36 +4047,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8dc75ec1-de76-4f9b-99c0-a3056c9f4c23?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdbb946-d6ff-4282-a176-3dda6d773f8c?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/8dc75ec1-de76-4f9b-99c0-a3056c9f4c23\",\r\n - \ \"name\": \"8dc75ec1-de76-4f9b-99c0-a3056c9f4c23\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdbb946-d6ff-4282-a176-3dda6d773f8c\",\r\n + \ \"name\": \"efdbb946-d6ff-4282-a176-3dda6d773f8c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:39 GMT + - Fri, 14 Apr 2023 14:53:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5D14640995664D069CF2CE1FC5850376 Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:39Z' status: code: 200 message: OK @@ -3897,19 +4095,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-21-4e464\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-37-13a35\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.3164498S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4767612S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3917,32 +4116,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:21.7408271Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:37.0815652Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1627' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:39 GMT + - Fri, 14 Apr 2023 14:53:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4802151F87AB449B93D43BECD08AC03E Ref B: BL2AA2030110045 Ref C: 2023-01-09T17:45:39Z' status: code: 200 message: OK @@ -3958,19 +4159,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-21-4e464\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-37-13a35\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT11.3164498S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4767612S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3978,37 +4180,40 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:21.7408271Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:37.0815652Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1627' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:41 GMT + - Fri, 14 Apr 2023 14:53:55 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5F84C14AB8F14C6E8FA9775110FDE368 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:45:40Z' status: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", @@ -4027,20 +4232,21 @@ interactions: Connection: - keep-alive Content-Length: - - '738' + - '750' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -4048,36 +4254,38 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:43.9008051Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:56.3804755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/816de7f9-4f41-4e1a-85c4-72257be378d9?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4c78135c-82d8-47e8-93be-1fe8d2d29950?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1182' + - '1197' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:45:43 GMT + - Fri, 14 Apr 2023 14:53:55 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 76E9258C8D9D40ED9212AFC008203759 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:45:42Z' + - '1198' status: code: 200 message: OK @@ -4093,36 +4301,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/816de7f9-4f41-4e1a-85c4-72257be378d9?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4c78135c-82d8-47e8-93be-1fe8d2d29950?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/816de7f9-4f41-4e1a-85c4-72257be378d9\",\r\n - \ \"name\": \"816de7f9-4f41-4e1a-85c4-72257be378d9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4c78135c-82d8-47e8-93be-1fe8d2d29950\",\r\n + \ \"name\": \"4c78135c-82d8-47e8-93be-1fe8d2d29950\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:01 GMT + - Fri, 14 Apr 2023 14:54:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 789AA1835E52478F8310338AE8ED5966 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:46:01Z' status: code: 200 message: OK @@ -4138,19 +4349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-44-7a6ad\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-56-095ec\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.6490009S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4909992S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4159,32 +4371,34 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:43.9008051Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:56.3804755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1749' + - '1763' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:01 GMT + - Fri, 14 Apr 2023 14:54:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1957DF7F00434CC28CB071AB487B39D2 Ref B: BL2AA2030105027 Ref C: 2023-01-09T17:46:02Z' status: code: 200 message: OK @@ -4202,9 +4416,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4216,19 +4431,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:02 GMT + - Fri, 14 Apr 2023 14:54:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1910C8F6AAA84328ACB201065F34A490 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:46:03Z' status: code: 200 message: OK @@ -4246,9 +4459,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4260,19 +4474,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:04 GMT + - Fri, 14 Apr 2023 14:54:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C3AA43AF957E49F4BFCA9DCC725294B5 Ref B: BL2AA2030107053 Ref C: 2023-01-09T17:46:04Z' status: code: 200 message: OK @@ -4288,20 +4500,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resources - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-45-44-7a6ad\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-56-095ec\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.6490009S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4909992S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4310,37 +4523,40 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:45:43.9008051Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:56.3804755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1749' + - '1763' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:05 GMT + - Fri, 14 Apr 2023 14:54:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7A4D3FC7AA7640279B098999A344F6BA Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:04Z' status: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", @@ -4359,21 +4575,22 @@ interactions: Connection: - keep-alive Content-Length: - - '740' + - '752' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resources - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -4381,36 +4598,38 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:46:07.0800519Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:15.7903814Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d560f60d-ff6f-4be6-ac3a-9ed25e6041b8?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1184' + - '1199' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:06 GMT + - Fri, 14 Apr 2023 14:54:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: EAC110C426094671A47B2E989DD0DAE8 Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:06Z' + - '1197' status: code: 200 message: OK @@ -4426,37 +4645,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resources - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d560f60d-ff6f-4be6-ac3a-9ed25e6041b8?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n - \ \"name\": \"c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d560f60d-ff6f-4be6-ac3a-9ed25e6041b8\",\r\n + \ \"name\": \"d560f60d-ff6f-4be6-ac3a-9ed25e6041b8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:24 GMT + - Fri, 14 Apr 2023 14:54:32 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 40753512E51349238A95752FF0700187 Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:24Z' status: code: 200 message: OK @@ -4472,37 +4694,57 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resources - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n - \ \"name\": \"c52b7465-588a-49b0-aa6f-79f0e01959ed\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-15-fc6b2\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT5.1492966S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n + \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:15.7903814Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '1767' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:54 GMT + - Fri, 14 Apr 2023 14:54:32 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9AB88ED24ED54EC9AFB46D14F56BEDAC Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:54Z' status: code: 200 message: OK @@ -4510,62 +4752,42 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group show Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resources - --yes + - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-46-07-49121\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT18.6651708S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:46:07.0800519Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1753' + - '252' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:54 GMT + - Fri, 14 Apr 2023 14:54:33 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C335F43BDC584E2F8DB984F94439A316 Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:46:55Z' status: code: 200 message: OK @@ -4583,33 +4805,32 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '252' + - '256' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:55 GMT + - Fri, 14 Apr 2023 14:54:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EB7D917BD533417987992029D92183E8 Ref B: BL2AA2030109029 Ref C: 2023-01-09T17:46:55Z' status: code: 200 message: OK @@ -4621,39 +4842,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group show + - resource list Connection: - keep-alive - ParameterSetName: - - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory + Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working + Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU + Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage + - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:47:40.2820149Z","changedTime":"2023-04-14T14:47:41.581614Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:47:41.2378552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:47:41.2378552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:47:42.3718757Z","changedTime":"2023-04-14T14:47:43.081646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:47:42.878524Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:47:42.878524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:48:51.1256762Z","changedTime":"2023-04-14T14:48:52.0814271Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke%2ffv1eS99G3fY8PO67ph99%2bjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p%2fbw34bBJO3nC%2bbGI0il%2br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2bHqdeKcT1hZRBS9eaEgFtxBNKVNS%2fISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2bXzWniMQVC6%2bE7N3D4joi7fNjM6N4a%2b3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP%2fhpknsQGuRWdjTEc0zU0uVgIk%2bDtXk43%2fMDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx%2fFHJAjELEd7qf%2bdPOxG%2b9NIbfMfvXb8I%2f5cWUqyn3WWo7x3%2f5brQmbrufuc%2fb7O8ack65PLG%2b4M%2fnM9VQq93%2fCOss4RGl1j%2fRJgBz8tEXJxfbfIlsHsFEvm7%2bnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2b%2fh8ZmNoeIe%2b17iP%2bZmr%2bSqKm49djhpJj37ZQBKu%2fRa1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG%2fCRnult7OhY%2bjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E%2f6uW9er%2b%2f5fIN8xxhJs9ZPQGIc53Yc%2bpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY%2fK2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2blfts%2f0rf95kCPZaA3af3yZxGxoTIT94%2ff3764UprlT1eZw2QBaYBvSe%2fOrIrd72cgmch4M85AU9x%2f%2bKq9%2fVfx%2bfPoj1F17IfXqt1X7tX6j0%2bWMTCpCu7a61%2bfLK44A381Xew5k%2fDXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa%2fy%2byfP%2f%2bAw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '256' + - '111263' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:56 GMT + - Fri, 14 Apr 2023 14:54:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 74FC6510E63E455AA48147618A356FAB Ref B: BL2AA2030110027 Ref C: 2023-01-09T17:46:56Z' status: code: 200 message: OK @@ -4661,7 +4892,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -4669,33 +4900,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke/fv1eS99G3fY8PO67ph99%2BjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p/bw34bBJO3nC%2BbGI0il%2Br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2BHqdeKcT1hZRBS9eaEgFtxBNKVNS/ISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2BXzWniMQVC6%2BE7N3D4joi7fNjM6N4a%2B3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP/hpknsQGuRWdjTEc0zU0uVgIk%2BDtXk43/MDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx/FHJAjELEd7qf%2BdPOxG%2B9NIbfMfvXb8I/5cWUqyn3WWo7x3/5brQmbrufuc/b7O8ack65PLG%2B4M/nM9VQq93/COss4RGl1j/RJgBz8tEXJxfbfIlsHsFEvm7%2BnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2B/h8ZmNoeIe%2B17iP%2BZmr%2BSqKm49djhpJj37ZQBKu/Ra1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG/CRnult7OhY%2BjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E/6uW9er%2B/5fIN8xxhJs9ZPQGIc53Yc%2BpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY/K2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2Blfts/0rf95kCPZaA3af3yZxGxoTIT94/f3764UprlT1eZw2QBaYBvSe/OrIrd72cgmch4M85AU9x/%2BKq9/Vfx%2BfPoj1F17IfXqt1X7tX6j0%2BWMTCpCu7a61%2BfLK44A381Xew5k/DXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa/y%2ByfP/%2BAw%3D%3D response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:38:15.3858925Z","changedTime":"2023-01-09T17:38:16.1924653Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:38:16.0500637Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:38:16.0500637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:38:17.407199Z","changedTime":"2023-01-09T17:38:18.2813488Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:38:18.0501351Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:38:18.0501351Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-01-09T17:39:39.8897732Z","changedTime":"2023-01-09T17:39:40.6117409Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' headers: cache-control: - no-cache content-length: - - '65182' + - '4342' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:57 GMT + - Fri, 14 Apr 2023 14:54:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A97F7D3DD1E0406198A7E238E6B2079E Ref B: BL2AA2030109053 Ref C: 2023-01-09T17:46:56Z' status: code: 200 message: OK @@ -4713,17 +4943,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-46-07-49121\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-15-fc6b2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT18.6651708S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.1492966S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -4732,32 +4963,34 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:45:21.7408271Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:46:07.0800519Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:15.7903814Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1753' + - '1767' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:46:58 GMT + - Fri, 14 Apr 2023 14:54:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DFAE643547264A4C9F5EE89FE95F20BF Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:46:58Z' status: code: 200 message: OK @@ -4777,9 +5010,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -4789,21 +5023,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:46:59 GMT + - Fri, 14 Apr 2023 14:54:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14998' - x-msedge-ref: - - 'Ref A: 479A1ABC338E4E2AA5DC2A7E18299513 Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:46:59Z' status: code: 200 message: OK @@ -4825,9 +5057,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -4839,21 +5072,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:01 GMT + - Fri, 14 Apr 2023 14:54: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-ratelimit-remaining-subscription-writes: - '1198' - x-msedge-ref: - - 'Ref A: 2818011C77264EFA9E55DDCF456EB415 Ref B: BL2AA2030105051 Ref C: 2023-01-09T17:47:00Z' status: code: 201 message: Created @@ -4869,11 +5098,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' @@ -4886,26 +5117,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:03 GMT + - Fri, 14 Apr 2023 14:54: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: B364C209FB05403F927B913151458046 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:03Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", @@ -4933,20 +5161,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1722' + - '1734' Content-Type: - application/json ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": @@ -4955,36 +5185,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:47:05.067072Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:40.3212474Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1321' + - '1338' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:05 GMT + - Fri, 14 Apr 2023 14:54:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 3FE6D0E1A81843E6A0472C3823056807 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:04Z' status: code: 201 message: Created @@ -5000,36 +5228,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n - \ \"name\": \"dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171\",\r\n + \ \"name\": \"1364ed80-9747-49da-8921-3cd639352171\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:24 GMT + - Fri, 14 Apr 2023 14:54:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F937F4C2DAFC498C9F3B9561FCA4AC8D Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:23Z' status: code: 200 message: OK @@ -5045,36 +5277,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n - \ \"name\": \"dd63c0b3-4b2e-4169-b428-bb1fed325a60\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171\",\r\n + \ \"name\": \"1364ed80-9747-49da-8921-3cd639352171\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:55 GMT + - Fri, 14 Apr 2023 14:55:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3D5368A004624D64B6EC701ABB30B7E9 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:54Z' status: code: 200 message: OK @@ -5090,19 +5326,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-47-05-29489\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-40-f9934\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT33.6186079S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT21.3324744S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -5113,32 +5351,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:47:05.067072Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:40.3212474Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2093' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:56 GMT + - Fri, 14 Apr 2023 14:55:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 338845811F84433F98DD9AC4D64FF1B4 Ref B: BL2AA2030105029 Ref C: 2023-01-09T17:47:55Z' status: code: 200 message: OK @@ -5156,54 +5396,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:57 GMT + - Fri, 14 Apr 2023 14:55:30 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FAE563CD1010481AB30CE883FDA914A5 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:47:56Z' status: code: 200 message: OK @@ -5221,39 +5524,42 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:09.5583701Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:44.063363Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T17:47:09.5583701Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-14T14:54:44.063363Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '630' + - '628' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:57 GMT + - Fri, 14 Apr 2023 14:55:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: BEDC7D334A354EAF8F5B139620462009 Ref B: BL2AA2030108027 Ref C: 2023-01-09T17:47:57Z' status: code: 200 message: OK @@ -5271,9 +5577,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -5285,19 +5592,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:57 GMT + - Fri, 14 Apr 2023 14:55:31 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 82C88AAEC486466F977AA55C53938F3D Ref B: BL2AA2030107029 Ref C: 2023-01-09T17:47:57Z' status: code: 200 message: OK @@ -5313,19 +5618,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-47-05-29489\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-40-f9934\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT33.6186079S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT21.3324744S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -5336,37 +5643,40 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:47:05.067072Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:40.3212474Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2076' + - '2093' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:47:59 GMT + - Fri, 14 Apr 2023 14:55:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4CA7FC8A5F2B409DADAD44C361EAF2F9 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:47:58Z' status: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -5385,55 +5695,59 @@ interactions: Connection: - keep-alive Content-Length: - - '835' + - '847' Content-Type: - application/json ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:47:05.067072Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:48:00.5057976Z\"\r\n + \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:55:32.6569562Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1162' + - '1178' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:48:01 GMT + - Fri, 14 Apr 2023 14:55:32 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 1F46F4F5B8E04EE5819522DCB4E9059E Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:47:59Z' + - '1199' status: code: 200 message: OK @@ -5449,36 +5763,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:48:19 GMT + - Fri, 14 Apr 2023 14:55:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 912EA97AE4D249598C29ECB5B13B496D Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:48:18Z' status: code: 200 message: OK @@ -5494,36 +5812,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:48:50 GMT + - Fri, 14 Apr 2023 14:56:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8EE0515AAAE24E4CB46081C4D923C8AF Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:48:49Z' status: code: 200 message: OK @@ -5539,36 +5861,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:49:21 GMT + - Fri, 14 Apr 2023 14:56:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3AA6FEE50CC046E1A09D5E3F3657762C Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:49:20Z' status: code: 200 message: OK @@ -5584,36 +5910,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:49:51 GMT + - Fri, 14 Apr 2023 14:57:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 346C629BB3DA4FE0BF96E5CD4DA53B8D Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:49:51Z' status: code: 200 message: OK @@ -5629,36 +5959,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:50:23 GMT + - Fri, 14 Apr 2023 14:57:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 06705D2303354370954E63897FE62637 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:50:22Z' status: code: 200 message: OK @@ -5674,36 +6008,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:50:54 GMT + - Fri, 14 Apr 2023 14:58:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E68D2BE051404D67B8177CEC1E4C8AAA Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:50:53Z' status: code: 200 message: OK @@ -5719,36 +6057,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '274' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:51:24 GMT + - Fri, 14 Apr 2023 14:58:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F64925B0704B4EE998776713B2286587 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:51:24Z' status: code: 200 message: OK @@ -5764,36 +6106,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n - \ \"name\": \"4f8bb36d-9106-467e-929f-fbd509ffdf83\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n + \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:51:55 GMT + - Fri, 14 Apr 2023 14:59:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AD7427419B8A470DB713B06F418979E9 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:51:54Z' status: code: 200 message: OK @@ -5809,19 +6155,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --delete-all --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-48-01-7c88f\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-55-32-1794a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M38.0020404S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M20.9077063S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5831,32 +6179,34 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T17:48:00.5057976Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-14T14:55:32.6569562Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1976' + - '1992' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:51:55 GMT + - Fri, 14 Apr 2023 14:59:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 877E820F14144D40BC075B47C34958D0 Ref B: BL2AA2030108003 Ref C: 2023-01-09T17:51:55Z' status: code: 200 message: OK @@ -5874,9 +6224,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -5888,19 +6239,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:51:56 GMT + - Fri, 14 Apr 2023 14:59:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C7E2D9F3D36242F2B1C5342D5427DE91 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:51:56Z' status: code: 200 message: OK @@ -5918,9 +6267,53 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + response: + body: + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVRLc%2bI4EP4vnPfgB2Q3UzWHlW0Fa4KMZLVkfLMRCdjCSQUSHlPz37fFkFmmam97cMmS%2bvH197X6%2b2hYHfePm6Hfjb58H62a3f59F42%2bjFYn9l5X60AZemoifcq7l42J98t8kB%2b4f6%2bS%2fA6%2fN%2bhdVgyTLQ%2fGE6FJBNluvAD72ILeC6BpCSyeq6ADJ%2b5mJQfoZ3cztehKzU3R5V0Jel50i5ArOOYhTWX3Ms6DWojzK6kjR1tNiQCX8IySMtkdMCapg%2fWA60u53eMdJzWe%2bbU09MhjcvZ5hdF4RiliogXQqZzavQ0wBuSBj1EC1SW8jNvB%2foovMFcT8k4EjEFUe%2f%2bhfPD3jIiuPiwf6NQY%2bnYTP8W81WpaHxuMLQLqfGxci4W2URndo%2b8nPk1UALFBbPVAY7RjopM%2bBxMqj1pzf7zFB0BjnUou4KiWPraxee3XrU0ac0wl3gvYvS17PLvy4%2fEjkxXGrER8qf%2bKnw4ift3JYB96fFf%2bEvyfW8ixHrcukN8b%2fPO20kV5Xv%2bOf%2boK1TvSxlxecH%2fih%2bOxyej5Bn%2bCddbQ6xrrnwizR3uZiZPXy2XfIrspQSJ%2bX7%2buVr6Ga30yQr6Dw8njFJXzGJEDJ7FuUgba7zEuJTKjHwCaLHq9vvVXDzaFng%2boe4f3mJ%2f5ms%2biuug4KORIBvTbErK4DR1ykXk9mdiuGfKbqZ9YBrQhqEEm4DUVOo%2fVT10%2f9WUrbZXKwn%2f5UYyUmU5K9DPYM4B8oo%2fXmdiYf8gHPbSBTkVIk9rY5BJvay%2f3ylhWmjXhmHumJJGVZZeeu3BgkTvNRLge2m5x2%2f8zxDtGX4Kt%2fiE0%2bmFO%2f6EOuQSJb8RO6sBrddEL974nbKIjO0jsS5nJHcaYIUZqAzYtHU%2fqzuf79X6w3ueTMPdSYV0aUD%2fDM6Edl%2f5NbL0%2bjhgI0Qe17DE%2b6lcaK%2bcqXOabI84Ltm631vl5sQoPm9a4z9lx4DA7StWPZwGEhaIJd4fNI%2fU2dHydL1cbRwoQcZE6KvVh81SFNh%2bCr6M%2fRs37bv%2fWuE3jJ9f%2fHFvGwKSpuG%2bx%2fxxbvOQMwsXdbMOZhL%2fueAc4tjJsM%2f5QdM%2bddCQtelryM3u0gafaDWX2%2fGEq5luJNEC7OcL3JS639L2O9DLvXv%2bsErZvzMT%2f4%2fd3KM6UFur5LBVMZpBHSMXO2yyq9e82kE1kuhwXoCne3z%2fpYPMkvn4d%2ffjxDw%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '1631' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 14:59:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVRLc%2BI4EP4vnPfgB2Q3UzWHlW0Fa4KMZLVkfLMRCdjCSQUSHlPz37fFkFmmam97cMmS%2BvH197X6%2B2hYHfePm6Hfjb58H62a3f59F42%2BjFYn9l5X60AZemoifcq7l42J98t8kB%2B4f6%2BS/A6/N%2BhdVgyTLQ/GE6FJBNluvAD72ILeC6BpCSyeq6ADJ%2B5mJQfoZ3cztehKzU3R5V0Jel50i5ArOOYhTWX3Ms6DWojzK6kjR1tNiQCX8IySMtkdMCapg/WA60u53eMdJzWe%2BbU09MhjcvZ5hdF4RiliogXQqZzavQ0wBuSBj1EC1SW8jNvB/oovMFcT8k4EjEFUe/%2BhfPD3jIiuPiwf6NQY%2BnYTP8W81WpaHxuMLQLqfGxci4W2URndo%2B8nPk1UALFBbPVAY7RjopM%2BBxMqj1pzf7zFB0BjnUou4KiWPraxee3XrU0ac0wl3gvYvS17PLvy4/EjkxXGrER8qf%2BKnw4ift3JYB96fFf%2BEvyfW8ixHrcukN8b/PO20kV5Xv%2BOf%2BoK1TvSxlxecH/ih%2BOxyej5Bn%2BCddbQ6xrrnwizR3uZiZPXy2XfIrspQSJ%2BX7%2BuVr6Ga30yQr6Dw8njFJXzGJEDJ7FuUgba7zEuJTKjHwCaLHq9vvVXDzaFng%2Boe4f3mJ/5ms%2Biuug4KORIBvTbErK4DR1ykXk9mdiuGfKbqZ9YBrQhqEEm4DUVOo/VT10/9WUrbZXKwn/5UYyUmU5K9DPYM4B8oo/XmdiYf8gHPbSBTkVIk9rY5BJvay/3ylhWmjXhmHumJJGVZZeeu3BgkTvNRLge2m5x2/8zxDtGX4Kt/iE0%2BmFO/6EOuQSJb8RO6sBrddEL974nbKIjO0jsS5nJHcaYIUZqAzYtHU/qzuf79X6w3ueTMPdSYV0aUD/DM6Edl/5NbL0%2BjhgI0Qe17DE%2B6lcaK%2BcqXOabI84Ltm631vl5sQoPm9a4z9lx4DA7StWPZwGEhaIJd4fNI/U2dHydL1cbRwoQcZE6KvVh81SFNh%2BCr6M/Rs37bv/WuE3jJ9f/HFvGwKSpuG%2Bx/xxbvOQMwsXdbMOZhL/ueAc4tjJsM/5QdM%2BddCQtelryM3u0gafaDWX2/GEq5luJNEC7OcL3JS639L2O9DLvXv%2BsErZvzMT/4/d3KM6UFur5LBVMZpBHSMXO2yyq9e82kE1kuhwXoCne3z/pYPMkvn4d/fjxDw%3D%3D response: body: string: '{"value":[]}' @@ -5932,19 +6325,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:51:57 GMT + - Fri, 14 Apr 2023 14:59:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6741A6AACE7D4F8FB0BC45B5446A71E3 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:51:56Z' status: code: 200 message: OK @@ -5960,33 +6351,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T17:38:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:47:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23820' + - '55470' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:51:57 GMT + - Fri, 14 Apr 2023 14:59:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B38519EB0B5F4DBB89023660B5FA912D Ref B: BL2AA2030107011 Ref C: 2023-01-09T17:51:57Z' status: code: 200 message: OK @@ -5998,46 +6389,65 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - stack sub create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2021-04-01 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-55-32-1794a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT3M20.9077063S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2023-04-14T14:55:32.6569562Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '1992' + content-type: + - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:52:01 GMT + - Fri, 14 Apr 2023 14:59:26 GMT expires: - '-1' - location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: 4A2DCAE84AC94BDFBFC4ABB0857DA618 Ref B: BL2AA2030107021 Ref C: 2023-01-09T17:51:58Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6045,38 +6455,165 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - group delete Connection: - keep-alive - ParameterSetName: - - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - python-requests/2.26.0 method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMUZCNzJGODFERUNCMTUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://aka.ms/BicepLatestRelease response: body: string: '' headers: cache-control: - - no-cache + - max-age=0, no-cache, no-store + connection: + - keep-alive content-length: - '0' date: - - Mon, 09 Jan 2023 17:52:17 GMT + - Fri, 14 Apr 2023 14:59:28 GMT + expires: + - Fri, 14 Apr 2023 14:59:28 GMT + location: + - https://downloads.bicep.azure.com/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://downloads.bicep.azure.com/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/98925381","assets_url":"https://api.github.com/repos/Azure/bicep/releases/98925381/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/98925381/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.16.2","id":98925381,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4F5XtF","tag_name":"v0.16.2","target_commitish":"main","name":"v0.16.2","draft":false,"prerelease":false,"created_at":"2023-04-05T15:27:33Z","published_at":"2023-04-11T19:26:02Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196329","id":103196329,"node_id":"RA_kwDOD7S9ks4GJqap","name":"Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27360858,"download_count":3,"created_at":"2023-04-11T14:16:45Z","updated_at":"2023-04-11T14:16:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196317","id":103196317,"node_id":"RA_kwDOD7S9ks4GJqad","name":"Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27766844,"download_count":3,"created_at":"2023-04-11T14:16:34Z","updated_at":"2023-04-11T14:16:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196376","id":103196376,"node_id":"RA_kwDOD7S9ks4GJqbY","name":"Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27643258,"download_count":2,"created_at":"2023-04-11T14:17:11Z","updated_at":"2023-04-11T14:17:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196341","id":103196341,"node_id":"RA_kwDOD7S9ks4GJqa1","name":"Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28087538,"download_count":4,"created_at":"2023-04-11T14:16:53Z","updated_at":"2023-04-11T14:16:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196295","id":103196295,"node_id":"RA_kwDOD7S9ks4GJqaH","name":"Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27640274,"download_count":4,"created_at":"2023-04-11T14:16:25Z","updated_at":"2023-04-11T14:16:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196274","id":103196274,"node_id":"RA_kwDOD7S9ks4GJqZy","name":"Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27964739,"download_count":4,"created_at":"2023-04-11T14:16:14Z","updated_at":"2023-04-11T14:16:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196098","id":103196098,"node_id":"RA_kwDOD7S9ks4GJqXC","name":"Azure.Bicep.Core.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":573156,"download_count":3,"created_at":"2023-04-11T14:14:38Z","updated_at":"2023-04-11T14:14:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196103","id":103196103,"node_id":"RA_kwDOD7S9ks4GJqXH","name":"Azure.Bicep.Core.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":184789,"download_count":3,"created_at":"2023-04-11T14:14:40Z","updated_at":"2023-04-11T14:14:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196109","id":103196109,"node_id":"RA_kwDOD7S9ks4GJqXN","name":"Azure.Bicep.Decompiler.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":98381,"download_count":4,"created_at":"2023-04-11T14:14:43Z","updated_at":"2023-04-11T14:14:43Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196113","id":103196113,"node_id":"RA_kwDOD7S9ks4GJqXR","name":"Azure.Bicep.Decompiler.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23934,"download_count":3,"created_at":"2023-04-11T14:14:45Z","updated_at":"2023-04-11T14:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196120","id":103196120,"node_id":"RA_kwDOD7S9ks4GJqXY","name":"Azure.Bicep.MSBuild.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45560,"download_count":3,"created_at":"2023-04-11T14:14:47Z","updated_at":"2023-04-11T14:14:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196124","id":103196124,"node_id":"RA_kwDOD7S9ks4GJqXc","name":"Azure.Bicep.MSBuild.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6942,"download_count":3,"created_at":"2023-04-11T14:14:49Z","updated_at":"2023-04-11T14:14:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196129","id":103196129,"node_id":"RA_kwDOD7S9ks4GJqXh","name":"Azure.Bicep.RegistryModuleTool.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23603320,"download_count":4,"created_at":"2023-04-11T14:14:51Z","updated_at":"2023-04-11T14:14:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196139","id":103196139,"node_id":"RA_kwDOD7S9ks4GJqXr","name":"Azure.Bicep.RegistryModuleTool.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":200972,"download_count":3,"created_at":"2023-04-11T14:14:55Z","updated_at":"2023-04-11T14:14:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196179","id":103196179,"node_id":"RA_kwDOD7S9ks4GJqYT","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25104436,"download_count":4,"created_at":"2023-04-11T14:15:15Z","updated_at":"2023-04-11T14:15:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195975","id":103195975,"node_id":"RA_kwDOD7S9ks4GJqVH","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":56867505,"download_count":16,"created_at":"2023-04-11T14:13:31Z","updated_at":"2023-04-11T14:13:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196001","id":103196001,"node_id":"RA_kwDOD7S9ks4GJqVh","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57090165,"download_count":242,"created_at":"2023-04-11T14:13:48Z","updated_at":"2023-04-11T14:13:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195965","id":103195965,"node_id":"RA_kwDOD7S9ks4GJqU9","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57254260,"download_count":2987,"created_at":"2023-04-11T14:13:21Z","updated_at":"2023-04-11T14:13:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196044","id":103196044,"node_id":"RA_kwDOD7S9ks4GJqWM","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57069200,"download_count":134,"created_at":"2023-04-11T14:14:12Z","updated_at":"2023-04-11T14:14:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196028","id":103196028,"node_id":"RA_kwDOD7S9ks4GJqV8","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57479968,"download_count":559,"created_at":"2023-04-11T14:14:00Z","updated_at":"2023-04-11T14:14:03Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196077","id":103196077,"node_id":"RA_kwDOD7S9ks4GJqWt","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":24119368,"download_count":201,"created_at":"2023-04-11T14:14:30Z","updated_at":"2023-04-11T14:14:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196207","id":103196207,"node_id":"RA_kwDOD7S9ks4GJqYv","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56920088,"download_count":3,"created_at":"2023-04-11T14:15:26Z","updated_at":"2023-04-11T14:15:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196090","id":103196090,"node_id":"RA_kwDOD7S9ks4GJqW6","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56797064,"download_count":3292,"created_at":"2023-04-11T14:14:33Z","updated_at":"2023-04-11T14:14:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196241","id":103196241,"node_id":"RA_kwDOD7S9ks4GJqZR","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":45804447,"download_count":4,"created_at":"2023-04-11T14:15:49Z","updated_at":"2023-04-11T14:15:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196224","id":103196224,"node_id":"RA_kwDOD7S9ks4GJqZA","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":37789327,"download_count":51,"created_at":"2023-04-11T14:15:39Z","updated_at":"2023-04-11T14:15:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.16.2","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.16.2","body":"## + Bug fixes and features\r\n\r\nBicep team:\r\n* Use the correct bitwise operator + for combining flags in JSON model loader (#10325)"}' + headers: + content-length: + - '35354' + content-md5: + - 6xL0BXzP0qoRtMRMwvm3rA== + content-type: + - application/octet-stream + date: + - Fri, 14 Apr 2023 14:59:28 GMT + etag: + - '0x8DB3CF13E56E578' + last-modified: + - Fri, 14 Apr 2023 14:05:03 GMT + x-azure-ref: + - 0UGo5ZAAAAADAEManMVBRR6E6vW8WCbUHUEhMMzBFREdFMDMxMgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= + x-azure-ref-originshield: + - 0hWg5ZAAAAAAVoUZSl+1aRKEqxfJCX0+oRVdSMzBFREdFMDUwNwA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= + x-cache: + - TCP_HIT + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.15.31.15270", "templateHash": "8627291063605171044"}}, "parameters": {"location": + {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": + "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": + "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", + "location": "[parameters(''location'')]", "sku": {"name": "Standard_LRS"}, "kind": + "[parameters(''kind'')]", "properties": {}}]}, "parameters": {"location": {"value": + "westus2"}, "kind": {"value": "StorageV2"}}, "actionOnUnmanage": {"resources": + "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1068' + Content-Type: + - application/json + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": + \"westus2\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:59:30.4471505Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac?api-version=2022-08-01-preview + cache-control: + - no-cache + content-length: + - '1299' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 14:59:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 61088C0F491248B58B14E030A60871F4 Ref B: BL2AA2030107021 Ref C: 2023-01-09T17:52:17Z' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -6084,62 +6621,48 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-01-09-17-48-01-7c88f\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M38.0020404S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T17:47:05.067072Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T17:48:00.5057976Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac\",\r\n + \ \"name\": \"746880da-19ca-48b6-900d-46fc390feeac\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '1976' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:52:17 GMT + - Fri, 14 Apr 2023 14:59:47 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 11866C7987FC4D5CBCF2D8948BBBACAC Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:52:18Z' status: code: 200 message: OK @@ -6147,45 +6670,472 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac?api-version=2022-08-01-preview response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac\",\r\n + \ \"name\": \"746880da-19ca-48b6-900d-46fc390feeac\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '260' + content-type: + - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:52:18 GMT + - Fri, 14 Apr 2023 15:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-59-30-72b7e\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT30.3361764S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n + \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeq6bo5ulxyubzq\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:59:30.4471505Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1852' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 15:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-59-30-72b7e\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT30.3361764S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n + \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeq6bo5ulxyubzq\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:59:30.4471505Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1852' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 15:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:00:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:00:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:00:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:01:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:01:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Apr 2023 15:01: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-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: FDD8F2B4BB3B49969AA742D516BD53B3 Ref B: BL2AA2030108051 Ref C: 2023-01-09T17:52:18Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml index a03e57f52a6..ca206a52d19 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_management_group.yaml @@ -11,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -28,21 +30,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:27:36 GMT + - Mon, 17 Apr 2023 17:38:01 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 3210AA71F59C4F76988B7DE4CBF19DDB Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:36Z' status: code: 404 message: Not Found @@ -70,11 +68,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -88,35 +88,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T20:27:37.9893092Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"2023-04-17T17:38:01.8641535Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:01.8641535Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d7467a59-b245-4926-a459-f4b1189606ae?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4682314a-0a43-4f5a-902b-2e17a4d42dd3?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1219' + - '1226' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:27:38 GMT + - Mon, 17 Apr 2023 17:38:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - '1198' - x-msedge-ref: - - 'Ref A: DB1E43F7C0DD4D9B9933BCAABBB82F0A Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:37Z' status: code: 201 message: Created @@ -132,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d7467a59-b245-4926-a459-f4b1189606ae?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4682314a-0a43-4f5a-902b-2e17a4d42dd3?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d7467a59-b245-4926-a459-f4b1189606ae\",\r\n - \ \"name\": \"d7467a59-b245-4926-a459-f4b1189606ae\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4682314a-0a43-4f5a-902b-2e17a4d42dd3\",\r\n + \ \"name\": \"4682314a-0a43-4f5a-902b-2e17a4d42dd3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:27:56 GMT + - Mon, 17 Apr 2023 17:38:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E0DC64D5232A4A29A5BB7332BB47A89A Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:56Z' status: code: 200 message: OK @@ -177,19 +179,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-27-38-2674c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-02-1161e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.2806899S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.194839S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,32 +203,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:27:37.9893092Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:01.8641535Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:01.8641535Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1617' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:27:56 GMT + - Mon, 17 Apr 2023 17:38:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 40737F7394864283B0DF0D2D503424B0 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:27:56Z' status: code: 200 message: OK @@ -242,17 +248,18 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-27-38-2674c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-02-1161e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.2806899S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.194839S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -262,32 +269,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:27:37.9893092Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:01.8641535Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:01.8641535Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1617' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:27:59 GMT + - Mon, 17 Apr 2023 17:38:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3F6FFBC0E1F547FBACA88ED8F7D6BBE6 Ref B: BL2AA2030108005 Ref C: 2023-01-09T20:27:57Z' status: code: 200 message: OK @@ -305,17 +314,18 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-27-38-2674c\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-02-1161e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT13.2806899S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.194839S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -325,32 +335,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:27:37.9893092Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:01.8641535Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:27:37.9893092Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:01.8641535Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1617' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:01 GMT + - Mon, 17 Apr 2023 17:38:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 093F4AEB01C54953B1C871BDDE645966 Ref B: BL2AA2030106003 Ref C: 2023-01-09T20:27:59Z' status: code: 200 message: OK @@ -370,9 +382,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -382,21 +395,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:28:03 GMT + - Mon, 17 Apr 2023 17:38:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: 860D0E2D413743FF8632EA3AFD972899 Ref B: BL2AA2030106003 Ref C: 2023-01-09T20:28:02Z' + - '14999' status: code: 200 message: OK @@ -412,11 +423,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -429,21 +442,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:03 GMT + - Mon, 17 Apr 2023 17:38: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 3F9B48C40D1D438495DC759A25560409 Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:03Z' status: code: 404 message: Not Found @@ -471,11 +480,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -489,35 +500,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T20:28:04.6471157Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:04.6471157Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"2023-04-17T17:38:22.1031246Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:22.1031246Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e52141c6-eb44-41ac-889a-59425de7ab6b?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4abe6145-8cf7-40eb-aa24-b39e0cc48650?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1219' + - '1226' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:07 GMT + - Mon, 17 Apr 2023 17:38:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 3EF16CD74CD743F0BBD5B4B418046C61 Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:03Z' + - '1199' status: code: 201 message: Created @@ -533,36 +542,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e52141c6-eb44-41ac-889a-59425de7ab6b?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4abe6145-8cf7-40eb-aa24-b39e0cc48650?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/e52141c6-eb44-41ac-889a-59425de7ab6b\",\r\n - \ \"name\": \"e52141c6-eb44-41ac-889a-59425de7ab6b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4abe6145-8cf7-40eb-aa24-b39e0cc48650\",\r\n + \ \"name\": \"4abe6145-8cf7-40eb-aa24-b39e0cc48650\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:25 GMT + - Mon, 17 Apr 2023 17:38:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 27060F6CBCB248E48F95C8933281D2A1 Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:25Z' status: code: 200 message: OK @@ -578,19 +591,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-05-82db2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-22-0b308\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.7867522S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4801608S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -600,32 +615,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:04.6471157Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:22.1031246Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:04.6471157Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:22.1031246Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1618' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:25 GMT + - Mon, 17 Apr 2023 17:38:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E69564F073C449B18EB4A639E3B8A01B Ref B: BL2AA2030108047 Ref C: 2023-01-09T20:28:25Z' status: code: 200 message: OK @@ -643,17 +660,18 @@ interactions: ParameterSetName: - --id --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-05-82db2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-22-0b308\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.7867522S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4801608S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -663,32 +681,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:04.6471157Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:22.1031246Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:04.6471157Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:22.1031246Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1618' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:27 GMT + - Mon, 17 Apr 2023 17:38:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 733759EC13184694A10A048B394E91E5 Ref B: BL2AA2030107039 Ref C: 2023-01-09T20:28:26Z' status: code: 200 message: OK @@ -708,9 +728,10 @@ interactions: ParameterSetName: - --id --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -720,21 +741,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:28:28 GMT + - Mon, 17 Apr 2023 17:38:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - '14999' - x-msedge-ref: - - 'Ref A: 7CD559793C964360A76188777D637A2D Ref B: BL2AA2030107039 Ref C: 2023-01-09T20:28:27Z' status: code: 200 message: OK @@ -750,11 +769,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -767,21 +788,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:28 GMT + - Mon, 17 Apr 2023 17:38:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: E74561B3F90D422BAA20DD1FBBCEDA7B Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:28Z' status: code: 404 message: Not Found @@ -809,11 +826,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -826,36 +845,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:29.9203343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:41.8208142Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:29.9203343Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:41.8208142Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dddb8ebc-6157-4ba2-88b5-9fdde513dff6?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0d66b16c-6ecd-46ec-922b-dd1c930266b0?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1194' + - '1201' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:30 GMT + - Mon, 17 Apr 2023 17:38:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 0C0AB76A2FE146E1BD497D051C537B2B Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:28Z' + - '1199' status: code: 201 message: Created @@ -871,36 +888,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dddb8ebc-6157-4ba2-88b5-9fdde513dff6?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0d66b16c-6ecd-46ec-922b-dd1c930266b0?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dddb8ebc-6157-4ba2-88b5-9fdde513dff6\",\r\n - \ \"name\": \"dddb8ebc-6157-4ba2-88b5-9fdde513dff6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0d66b16c-6ecd-46ec-922b-dd1c930266b0\",\r\n + \ \"name\": \"0d66b16c-6ecd-46ec-922b-dd1c930266b0\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:47 GMT + - Mon, 17 Apr 2023 17:38:59 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6B937A70873840A0ABCFA6AFB43C0880 Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:47Z' status: code: 200 message: OK @@ -916,19 +937,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-30-68383\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-42-ca5e3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.3988032S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.7207023S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -936,32 +959,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:29.9203343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:41.8208142Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:29.9203343Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:41.8208142Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1625' + - '1631' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:47 GMT + - Mon, 17 Apr 2023 17:38:59 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2AE018C64E04495A9DCE32BAAA98BA5A Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:28:48Z' status: code: 200 message: OK @@ -979,17 +1004,18 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-30-68383\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-38-42-ca5e3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.3988032S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.7207023S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -997,32 +1023,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:29.9203343Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:38:41.8208142Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:29.9203343Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:38:41.8208142Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1625' + - '1631' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:48 GMT + - Mon, 17 Apr 2023 17:39:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8837C790FFA748B4A386981745B0C2AB Ref B: BL2AA2030109027 Ref C: 2023-01-09T20:28:48Z' status: code: 200 message: OK @@ -1042,9 +1070,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1054,21 +1083,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:28:50 GMT + - Mon, 17 Apr 2023 17:39:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - '14999' - x-msedge-ref: - - 'Ref A: 11EDA6077E424C93B592C8C62DF5717A Ref B: BL2AA2030109027 Ref C: 2023-01-09T20:28:49Z' status: code: 200 message: OK @@ -1086,9 +1113,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1100,19 +1128,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:51 GMT + - Mon, 17 Apr 2023 17:39:01 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 30A16A532E8D4FC8B2F464B9FAECAFC3 Ref B: BL2AA2030109047 Ref C: 2023-01-09T20:28:50Z' status: code: 200 message: OK @@ -1128,12 +1154,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resource-groups --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -1146,21 +1173,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:50 GMT + - Mon, 17 Apr 2023 17:39: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: D8DC2ED77A744A43A4B11974AB9364EF Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:28:51Z' status: code: 404 message: Not Found @@ -1188,12 +1211,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resource-groups --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -1206,36 +1230,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:52.5271807Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:39:02.240622Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:52.5271807Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:39:02.240622Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/77f608ba-a67b-408b-8dc8-c3e8ce664463?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1194' + - '1199' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:28:53 GMT + - Mon, 17 Apr 2023 17:39:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1196' - x-msedge-ref: - - 'Ref A: FE73FA73D1B5428F80A73CAC6D5137B9 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:28:52Z' + - '1199' status: code: 201 message: Created @@ -1251,83 +1273,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resource-groups --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af\",\r\n - \ \"name\": \"f35276e6-82be-454e-82a3-647d974997af\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '215' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:29:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 40756D236F744B5F965A798A6D51D6E2 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:29:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg create - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resource-groups --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/77f608ba-a67b-408b-8dc8-c3e8ce664463?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/f35276e6-82be-454e-82a3-647d974997af\",\r\n - \ \"name\": \"f35276e6-82be-454e-82a3-647d974997af\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/77f608ba-a67b-408b-8dc8-c3e8ce664463\",\r\n + \ \"name\": \"77f608ba-a67b-408b-8dc8-c3e8ce664463\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:29:41 GMT + - Mon, 17 Apr 2023 17:39:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AE1A6D7FEC4844E0A1BD3AE486254203 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:29:40Z' status: code: 200 message: OK @@ -1343,20 +1322,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --delete-resources - --delete-resource-groups --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-52-0c2bf\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-39-02-226f2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT25.6123146S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.6871116S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1364,32 +1344,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:52.5271807Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:39:02.240622Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:52.5271807Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:39:02.240622Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1625' + - '1629' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:29:42 GMT + - Mon, 17 Apr 2023 17:39:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E0750A5F7A1D42AD9C5D6038BD9C3528 Ref B: BL2AA2030110033 Ref C: 2023-01-09T20:29:41Z' status: code: 200 message: OK @@ -1407,17 +1389,18 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-20-28-52-0c2bf\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-17-17-39-02-226f2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT25.6123146S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.6871116S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1425,32 +1408,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:28:52.5271807Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:39:02.240622Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:28:52.5271807Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:39:02.240622Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1625' + - '1629' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:29:43 GMT + - Mon, 17 Apr 2023 17:39:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: BEAF87A145DB4E508198D348F2578A31 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:29:42Z' status: code: 200 message: OK @@ -1470,35 +1455,34 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 20:29:45 GMT + - Mon, 17 Apr 2023 17:39:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: A5DACC68A49249F584B2304A5F8F1E6C Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:29:43Z' + - '14999' status: code: 202 message: Accepted @@ -1516,34 +1500,37 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n - \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n + \ \"name\": \"877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '214' + - '208' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:30:02 GMT + - Mon, 17 Apr 2023 17:39:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 247778B4ED984A63B575FC53051970BE Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:30:02Z' status: code: 200 message: OK @@ -1561,34 +1548,37 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n - \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n + \ \"name\": \"877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '214' + - '208' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:30:32 GMT + - Mon, 17 Apr 2023 17:40:08 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 344CEA66F84E4FB39BF539A724953AF7 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:30:32Z' status: code: 200 message: OK @@ -1606,34 +1596,37 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n - \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n + \ \"name\": \"877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '214' + - '208' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:31:03 GMT + - Mon, 17 Apr 2023 17:40:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C6BDFA18182C4FE082A710F3B67FD8DD Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:31:03Z' status: code: 200 message: OK @@ -1651,34 +1644,37 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n - \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n + \ \"name\": \"877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '214' + - '208' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:31:33 GMT + - Mon, 17 Apr 2023 17:41:09 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B139609589D148EDB14763AE9760C1A4 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:31:33Z' status: code: 200 message: OK @@ -1696,79 +1692,37 @@ interactions: ParameterSetName: - --name --management-group-id --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n - \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n + \ \"name\": \"877653bc-7484-4ae4-8eef-b8df98fb0a13\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '214' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:32:04 GMT + - Mon, 17 Apr 2023 17:41:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 741FB0C1F7184F5DA157F84A085DDAD3 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:32:03Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack mg delete - Connection: - - keep-alive - ParameterSetName: - - --name --management-group-id --delete-resources --delete-resource-groups --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n - \ \"name\": \"80010876-c509-4f2a-9340-ae6b13a179b2\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '215' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:32:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 35B27AABA526426CB1BE00C8A3CA7ECF Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:32:34Z' status: code: 200 message: OK @@ -1786,9 +1740,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -1800,19 +1755,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:32:34 GMT + - Mon, 17 Apr 2023 17:41:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7234C32DF057483FB6C6B75FEA2DD131 Ref B: BL2AA2030105025 Ref C: 2023-01-09T20:32:34Z' status: code: 200 message: OK @@ -1828,33 +1781,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2aj4kjjsfmntizgfsdnscdmgmxlvxvwcv6xttqb","name":"cli-test-resource-one2aj4kjjsfmntizgfsdnscdmgmxlvxvwcv6xttqb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohwnawwueamfighnj7fo6d2265pn7ukwmtrf3ztk","name":"cli-test-resource-twohwnawwueamfighnj7fo6d2265pn7ukwmtrf3ztk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threex7eh5q5eeheqc74pkr6t6d3n5lj5xnlxncog6","name":"cli-test-resource-threex7eh5q5eeheqc74pkr6t6d3n5lj5xnlxncog6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '24525' + - '56175' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:32:35 GMT + - Mon, 17 Apr 2023 17:41:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F767A5722E3241CCAF76986980741432 Ref B: BL2AA2030107019 Ref C: 2023-01-09T20:32:36Z' status: code: 200 message: OK @@ -1874,9 +1827,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '' @@ -1886,23 +1840,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:32:40 GMT + - Mon, 17 Apr 2023 17:41:43 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVaTUQyNkpBWjVWTVgzVVg0TFZDT3w0MDBBQjE0MENFQTJEOURBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVNSkVDUTJOSUoyTDJZS0RUVE9FWXxBMDAzQzNBRTg1OTlBMzhDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: 55C2A7CC7EDC4FB89402EA5CEB2C80A6 Ref B: BL2AA2030105019 Ref C: 2023-01-09T20:32:36Z' + - '14999' status: code: 202 message: Accepted @@ -1920,9 +1870,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVaTUQyNkpBWjVWTVgzVVg0TFZDT3w0MDBBQjE0MENFQTJEOURBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVNSkVDUTJOSUoyTDJZS0RUVE9FWXxBMDAzQzNBRTg1OTlBMzhDLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -1932,19 +1883,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:32:56 GMT + - Mon, 17 Apr 2023 17:41:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D7475B5039A440A8AA7F4951106812C2 Ref B: BL2AA2030105019 Ref C: 2023-01-09T20:32:56Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index e10d76cb4da..c580d27ba03 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -11,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,19 +31,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:53:42 GMT + - Mon, 17 Apr 2023 15:48:09 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9AE1304950A54CD784394D71ED234D0A Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:53:41Z' status: code: 404 message: Not Found @@ -69,11 +69,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,14 +87,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2b9394fc-4dea-4843-9bf2-e22fbdcd2777?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d8d88a1-9aef-43e4-9410-24e7c8442328?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,21 +102,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:53:44 GMT + - Mon, 17 Apr 2023 15:48:09 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: A5456278FDA341B49D274B8B79EF3027 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:53:43Z' + - '1199' status: code: 201 message: Created @@ -130,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2b9394fc-4dea-4843-9bf2-e22fbdcd2777?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d8d88a1-9aef-43e4-9410-24e7c8442328?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2b9394fc-4dea-4843-9bf2-e22fbdcd2777\",\r\n - \ \"name\": \"2b9394fc-4dea-4843-9bf2-e22fbdcd2777\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d8d88a1-9aef-43e4-9410-24e7c8442328\",\r\n + \ \"name\": \"5d8d88a1-9aef-43e4-9410-24e7c8442328\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:02 GMT + - Mon, 17 Apr 2023 15:48:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4030C3A234F64CAEA7EA0CD5480F94E4 Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:54:02Z' status: code: 200 message: OK @@ -175,17 +179,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-53-44-ea964\",\r\n - \ \"duration\": \"PT6.4213773S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-10-f8182\",\r\n + \ \"duration\": \"PT6.4147086S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -195,9 +201,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -208,19 +214,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:03 GMT + - Mon, 17 Apr 2023 15:48:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 84CE1E8BD7F54FBA821C9DD41A8E0DAB Ref B: BL2AA2030105031 Ref C: 2023-01-09T19:54:03Z' status: code: 200 message: OK @@ -238,15 +246,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-53-44-ea964\",\r\n - \ \"duration\": \"PT6.4213773S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-10-f8182\",\r\n + \ \"duration\": \"PT6.4147086S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -256,9 +265,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -269,19 +278,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:04 GMT + - Mon, 17 Apr 2023 15:48:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F5652BB0AB004A0E97A6E679E7270139 Ref B: BL2AA2030107025 Ref C: 2023-01-09T19:54:04Z' status: code: 200 message: OK @@ -299,15 +310,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-53-44-ea964\",\r\n - \ \"duration\": \"PT6.4213773S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-10-f8182\",\r\n + \ \"duration\": \"PT6.4147086S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -317,9 +329,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:53:44.4622383Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:53:44.4622383Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -330,19 +342,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:05 GMT + - Mon, 17 Apr 2023 15:48:29 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E3F397F01E4848E08308750452A2FB6B Ref B: BL2AA2030108037 Ref C: 2023-01-09T19:54:05Z' status: code: 200 message: OK @@ -362,9 +376,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -374,21 +389,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:54:06 GMT + - Mon, 17 Apr 2023 15:48:29 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: B2C86430F67A4A119D90DFB8C7404149 Ref B: BL2AA2030108037 Ref C: 2023-01-09T19:54:06Z' + - '14999' status: code: 200 message: OK @@ -406,9 +419,10 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": []\r\n}" @@ -420,19 +434,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:08 GMT + - Mon, 17 Apr 2023 15:48:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 947B2FCD5CC94A109DC16268982E6263 Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:54:07Z' status: code: 200 message: OK @@ -448,11 +464,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -466,19 +484,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:08 GMT + - Mon, 17 Apr 2023 15:48:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B8152E411FD440AE90657040688157AF Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:09Z' status: code: 404 message: Not Found @@ -506,11 +522,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -522,36 +540,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0d83e5aa-c731-4a20-a284-9af3a3f654a8?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bed908e5-2879-49bf-951b-97eb2a5a9f83?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1154' + - '1152' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:10 GMT + - Mon, 17 Apr 2023 15:48:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: D20E5311D28D49EEBC4B56CFFA805A13 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:09Z' + - '1199' status: code: 201 message: Created @@ -567,36 +583,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0d83e5aa-c731-4a20-a284-9af3a3f654a8?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bed908e5-2879-49bf-951b-97eb2a5a9f83?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/0d83e5aa-c731-4a20-a284-9af3a3f654a8\",\r\n - \ \"name\": \"0d83e5aa-c731-4a20-a284-9af3a3f654a8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bed908e5-2879-49bf-951b-97eb2a5a9f83\",\r\n + \ \"name\": \"bed908e5-2879-49bf-951b-97eb2a5a9f83\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:28 GMT + - Mon, 17 Apr 2023 15:48:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 72DD3E5B71514060BCC3DAB962195374 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:28Z' status: code: 200 message: OK @@ -612,17 +632,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-11-97149\",\r\n - \ \"duration\": \"PT9.6951856S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-31-d79da\",\r\n + \ \"duration\": \"PT5.8623782S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -632,32 +654,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1592' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:28 GMT + - Mon, 17 Apr 2023 15:48:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B9A5ED03F3B64377A4F3BD668E5CB805 Ref B: BL2AA2030109039 Ref C: 2023-01-09T19:54:29Z' status: code: 200 message: OK @@ -675,15 +699,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-11-97149\",\r\n - \ \"duration\": \"PT9.6951856S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-31-d79da\",\r\n + \ \"duration\": \"PT5.8623782S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -693,32 +718,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1592' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:30 GMT + - Mon, 17 Apr 2023 15:48:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6B92724AC8704D97996FF9211FC63656 Ref B: BL2AA2030106025 Ref C: 2023-01-09T19:54:30Z' status: code: 200 message: OK @@ -736,15 +763,16 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-11-97149\",\r\n - \ \"duration\": \"PT9.6951856S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-31-d79da\",\r\n + \ \"duration\": \"PT5.8623782S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -754,32 +782,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:11.4453609Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:11.4453609Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1592' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:31 GMT + - Mon, 17 Apr 2023 15:48:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 632D7CB69EE04773A2D9D5B8B8E3BB57 Ref B: BL2AA2030110031 Ref C: 2023-01-09T19:54:31Z' status: code: 200 message: OK @@ -799,9 +829,10 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -811,21 +842,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:54:32 GMT + - Mon, 17 Apr 2023 15:48:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - x-msedge-ref: - - 'Ref A: 07793C286B074574B3937A0941449B08 Ref B: BL2AA2030110031 Ref C: 2023-01-09T19:54:31Z' + - '14998' status: code: 200 message: OK @@ -843,9 +872,10 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": []\r\n}" @@ -857,19 +887,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:32 GMT + - Mon, 17 Apr 2023 15:48:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6D5BD535129C4488B8913A512A62E401 Ref B: BL2AA2030110051 Ref C: 2023-01-09T19:54:33Z' status: code: 200 message: OK @@ -891,9 +923,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -905,21 +938,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:35 GMT + - Mon, 17 Apr 2023 15:48: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-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: A4491C4614DA446BB5A4859EDF19B271 Ref B: BL2AA2030110033 Ref C: 2023-01-09T19:54:33Z' + - '1199' status: code: 201 message: Created @@ -935,11 +964,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -953,19 +983,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:35 GMT + - Mon, 17 Apr 2023 15:48:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7DE9B1825AE7460BB85DC51E15464A95 Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:54:36Z' status: code: 404 message: Not Found @@ -1002,11 +1030,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1018,13 +1047,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T19:54:37.2898811Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:37.2898811Z\"\r\n + \"2023-04-17T15:48:54.8664181Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:54.8664181Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9bca0555-636a-44b6-9866-f7fd419c8a86?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -1032,21 +1061,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:54:37 GMT + - Mon, 17 Apr 2023 15:48:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-msedge-ref: - - 'Ref A: A78BDFD6963145A88C382818085A19EA Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:54:36Z' + - '1199' status: code: 201 message: Created @@ -1062,81 +1089,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n - \ \"name\": \"05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 19:54:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E952A4D5C0F24A16A74E2648E6F15757 Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:54:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9bca0555-636a-44b6-9866-f7fd419c8a86?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n - \ \"name\": \"05c681de-4189-4a1b-ac17-9848ce1f5568\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9bca0555-636a-44b6-9866-f7fd419c8a86\",\r\n + \ \"name\": \"9bca0555-636a-44b6-9866-f7fd419c8a86\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:24 GMT + - Mon, 17 Apr 2023 15:49:11 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 436F29F37AFB43648897ACC591A37555 Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:55:25Z' status: code: 200 message: OK @@ -1152,17 +1137,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-37-babd1\",\r\n - \ \"duration\": \"PT21.1690623S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-54-73ebc\",\r\n + \ \"duration\": \"PT5.7454278S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1172,32 +1158,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:37.2898811Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:54.8664181Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:37.2898811Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:54.8664181Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1998' + - '1997' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:25 GMT + - Mon, 17 Apr 2023 15:49:12 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0A9F0E829EED48F1A6E15A55433AE7FF Ref B: BL2AA2030107051 Ref C: 2023-01-09T19:55:25Z' status: code: 200 message: OK @@ -1215,15 +1203,16 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-54-37-babd1\",\r\n - \ \"duration\": \"PT21.1690623S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-54-73ebc\",\r\n + \ \"duration\": \"PT5.7454278S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1233,32 +1222,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:37.2898811Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:54.8664181Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:37.2898811Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:54.8664181Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1998' + - '1997' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:27 GMT + - Mon, 17 Apr 2023 15:49:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5C8B3467D54D46369F62766262DA532B Ref B: BL2AA2030108011 Ref C: 2023-01-09T19:55:26Z' status: code: 200 message: OK @@ -1278,9 +1269,10 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1290,21 +1282,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:55:29 GMT + - Mon, 17 Apr 2023 15:49:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' - x-msedge-ref: - - 'Ref A: D96E4A297021480EB32615E37C315B1A Ref B: BL2AA2030108011 Ref C: 2023-01-09T19:55:27Z' + - '14999' status: code: 200 message: OK @@ -1322,54 +1312,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:30 GMT + - Mon, 17 Apr 2023 15:49:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FD26EFDA29E7416A95CCFA5F4C848413 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:55:30Z' status: code: 200 message: OK @@ -1387,17 +1440,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:54:46.2862426Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:56.4783398Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:54:49.1301312Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:56.8846722Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -1408,19 +1462,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:31 GMT + - Mon, 17 Apr 2023 15:49:16 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0A5A01A4CD6846908BF16925D0EE0993 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:55:30Z' status: code: 200 message: OK @@ -1436,11 +1492,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -1454,19 +1511,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:31 GMT + - Mon, 17 Apr 2023 15:49:16 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E662DFFBAF214FD9AC7DC6FD3B9218ED Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:31Z' status: code: 404 message: Not Found @@ -1503,11 +1558,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -1519,35 +1575,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T19:55:33.457409Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:55:33.457409Z\"\r\n + \"2023-04-17T15:49:17.1161764Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:49:17.1161764Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/afd38411-0251-45f3-b0ef-913bd67b7226?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6a9b4b00-b3df-45d0-9a65-8d45f365cdac?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1140' + - '1142' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:33 GMT + - Mon, 17 Apr 2023 15:49:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-msedge-ref: - - 'Ref A: 122B76490BCD4ED9AC05472BBA4B8411 Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:32Z' + - '1199' status: code: 201 message: Created @@ -1563,36 +1617,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/afd38411-0251-45f3-b0ef-913bd67b7226?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6a9b4b00-b3df-45d0-9a65-8d45f365cdac?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/afd38411-0251-45f3-b0ef-913bd67b7226\",\r\n - \ \"name\": \"afd38411-0251-45f3-b0ef-913bd67b7226\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6a9b4b00-b3df-45d0-9a65-8d45f365cdac\",\r\n + \ \"name\": \"6a9b4b00-b3df-45d0-9a65-8d45f365cdac\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:51 GMT + - Mon, 17 Apr 2023 15:49:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 22B90B1BEBE8444BAEFFBB4628CBEFC2 Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:50Z' status: code: 200 message: OK @@ -1608,17 +1665,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-55-33-096f5\",\r\n - \ \"duration\": \"PT16.5807452S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-49-17-ac0c4\",\r\n + \ \"duration\": \"PT10.9769922S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1628,32 +1686,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:55:33.457409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:49:17.1161764Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:55:33.457409Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:49:17.1161764Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1996' + - '1998' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:51 GMT + - Mon, 17 Apr 2023 15:49:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6AF45364C6BA4C85B62045E1B82A9DEB Ref B: BL2AA2030110039 Ref C: 2023-01-09T19:55:51Z' status: code: 200 message: OK @@ -1671,15 +1731,16 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-55-33-096f5\",\r\n - \ \"duration\": \"PT16.5807452S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-49-17-ac0c4\",\r\n + \ \"duration\": \"PT10.9769922S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1689,32 +1750,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:55:33.457409Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:49:17.1161764Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:55:33.457409Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:49:17.1161764Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1996' + - '1998' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:55:52 GMT + - Mon, 17 Apr 2023 15:49:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2590CA322A4E40AFA5F1751A418F53EE Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:55:53Z' status: code: 200 message: OK @@ -1734,35 +1797,34 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 19:55:55 GMT + - Mon, 17 Apr 2023 15:49:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' - x-msedge-ref: - - 'Ref A: B49DD95986954C8BAC3CF182DCB51077 Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:55:54Z' + - '14999' status: code: 202 message: Accepted @@ -1780,34 +1842,37 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n - \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n + \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:56:13 GMT + - Mon, 17 Apr 2023 15:49:53 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DDF843BAA80A4DEE8BB99517BFF171E8 Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:56:13Z' status: code: 200 message: OK @@ -1825,34 +1890,37 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n - \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n + \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:56:44 GMT + - Mon, 17 Apr 2023 15:50:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 564F0B22109B4E55BF7ECADF96C704CC Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:56:44Z' status: code: 200 message: OK @@ -1870,34 +1938,37 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n - \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n + \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:57:15 GMT + - Mon, 17 Apr 2023 15:50:53 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F867FFDB22014E8F9CF4D5B696C4AF99 Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:57:15Z' status: code: 200 message: OK @@ -1915,34 +1986,37 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n - \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n + \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:57:47 GMT + - Mon, 17 Apr 2023 15:51:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D4611BE434F141C6B9964BFA5407B3EE Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:57:47Z' status: code: 200 message: OK @@ -1960,34 +2034,37 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n - \ \"name\": \"2e8c99da-0e2a-44a1-97e6-df94d00cd5e9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n + \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:58:18 GMT + - Mon, 17 Apr 2023 15:51:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C3A6355E38F14E21B4364D30EF439DDF Ref B: BL2AA2030106003 Ref C: 2023-01-09T19:58:18Z' status: code: 200 message: OK @@ -2003,33 +2080,86 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory + Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working + Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU + Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage + - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-17T15:48:56.4177515Z","changedTime":"2023-04-17T15:48:56.6189671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:48:56.4783398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:48:56.4783398Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-17T15:48:56.8638112Z","changedTime":"2023-04-17T15:48:56.9940449Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:48:56.8846722Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:48:56.8846722Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNj6M4EP0vOe%2fBkI%2fdHqkPa6A6MImJDWUIN4LTHQihWwnp0BnNf5%2fyKFllpb3twTJ2Vb1675n6Meq2Q7%2bou%2f1p9O3HaFue%2bvPJHX0bbb%2bic5HvWJrBV%2bnqr7B5r7NxX4Wd%2bqTzOffCGa0j7tsg7qYHwSZTqbmLwWmyRrPYoO4lgp9gNF6lrMFWzpaJQNwvZ8t03SRaZHETNgnqVdysHZHiEDrgq%2bZ9ErJCyusHL9wWNhq4xNYTAfCkrS6EyQu262h%2fTw49xQQv6M7uSQaDGPOr7SszTXcAxAlihLmam94wwsCQWYwEQSf4Ptl05h98Sb1KRzSSRRG6ha3vkhcbj7hsikv1AvMsg%2bMDvk998%2b28GErClgxai017vNbGTdwnqr3z0zxlOM6IW9HBmPIi2SjbI5Jp6G6yp%2bGRHyKMta%2bExCGtLHZmwsLuB%2bOV2eAriks8Has93d38sfzJyZwwczn%2brf%2fGHzo5%2fjgp1juW380%2fj75XBkPS0%2b5i8veB%2f2qT60UaWIw7f8HltfhEHIjTg7%2boIMvJo31xfeDvbYhrmbb2nXiaGSWRtDLNrf4yADobII3csB7kHubbwDzW0z0cMXviypdusiePNCcswbExj%2f3J%2f3aq3eLLYt35KwaBylvyqjoW7O24tNru%2frmGl0EU0Zsq4ugZ5niFO9SP9WsGK4ViTjlewSL4rUGTfnRoKe%2b7a%2bA7E8TP8BRtPOpk6lRhPdB8RLvNwbR2PrbOpd5k7X1WLgKXg0r3kyVDJ07BE%2b2lXoDNgcltnm45LY9RjmO%2fBaUv9WvumLBjz6M%2fRuX51B%2fLti7tpP7PMc0ynJa5sL%2fBf46pSESEznq2rEWk8K%2bZaJDGNGgQxUvcvDWq5X68h0Rco4Whp6Wn6JLg7TPLI27tLBGaFdG3EqsDnAtXV2Hz8WfuRX2ZTe03rb8deQWI07erSnG6xNAlK042Z53v%2fp2DwVT51SRGDRR%2fetWsfpXPz6OfP38B"}' + headers: + cache-control: + - no-cache + content-length: + - '110707' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:51:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNj6M4EP0vOe/BkI/dHqkPa6A6MImJDWUIN4LTHQihWwnp0BnNf5/yKFllpb3twTJ2Vb1675n6Meq2Q7%2Bou/1p9O3HaFue%2BvPJHX0bbb%2Bic5HvWJrBV%2Bnqr7B5r7NxX4Wd%2BqTzOffCGa0j7tsg7qYHwSZTqbmLwWmyRrPYoO4lgp9gNF6lrMFWzpaJQNwvZ8t03SRaZHETNgnqVdysHZHiEDrgq%2BZ9ErJCyusHL9wWNhq4xNYTAfCkrS6EyQu262h/Tw49xQQv6M7uSQaDGPOr7SszTXcAxAlihLmam94wwsCQWYwEQSf4Ptl05h98Sb1KRzSSRRG6ha3vkhcbj7hsikv1AvMsg%2BMDvk998%2B28GErClgxai017vNbGTdwnqr3z0zxlOM6IW9HBmPIi2SjbI5Jp6G6yp%2BGRHyKMta%2BExCGtLHZmwsLuB%2BOV2eAriks8Has93d38sfzJyZwwczn%2Brf/GHzo5/jgp1juW380/j75XBkPS0%2B5i8veB/2qT60UaWIw7f8HltfhEHIjTg7%2BoIMvJo31xfeDvbYhrmbb2nXiaGSWRtDLNrf4yADobII3csB7kHubbwDzW0z0cMXviypdusiePNCcswbExj/3J/3aq3eLLYt35KwaBylvyqjoW7O24tNru/rmGl0EU0Zsq4ugZ5niFO9SP9WsGK4ViTjlewSL4rUGTfnRoKe%2B7a%2BA7E8TP8BRtPOpk6lRhPdB8RLvNwbR2PrbOpd5k7X1WLgKXg0r3kyVDJ07BE%2B2lXoDNgcltnm45LY9RjmO/BaUv9WvumLBjz6M/RuX51B/Lti7tpP7PMc0ynJa5sL/Bf46pSESEznq2rEWk8K%2BZaJDGNGgQxUvcvDWq5X68h0Rco4Whp6Wn6JLg7TPLI27tLBGaFdG3EqsDnAtXV2Hz8WfuRX2ZTe03rb8deQWI07erSnG6xNAlK042Z53v/p2DwVT51SRGDRR/etWsfpXPz6OfP38B response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T19:54:44.9629142Z","changedTime":"2023-01-09T19:54:46.4502723Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:54:46.2862426Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:54:46.2862426Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T19:54:48.1830081Z","changedTime":"2023-01-09T19:54:49.2798022Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:54:49.1301312Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:54:49.1301312Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' headers: cache-control: - no-cache content-length: - - '64782' + - '4342' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:58:19 GMT + - Mon, 17 Apr 2023 15:51:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 46632115BEB349BE96A62A157450DED5 Ref B: BL2AA2030105053 Ref C: 2023-01-09T19:58:19Z' status: code: 200 message: OK @@ -2049,9 +2179,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '' @@ -2061,23 +2192,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:58:23 GMT + - Mon, 17 Apr 2023 15:52:00 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: 2652BBE348BD45159425644D99A2276D Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:58:20Z' + - '14997' status: code: 202 message: Accepted @@ -2095,9 +2222,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2107,21 +2235,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:58:38 GMT + - Mon, 17 Apr 2023 15:52:15 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 61BA8A33F8494B198173C46A5E1AAC51 Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:58:38Z' status: code: 202 message: Accepted @@ -2139,9 +2263,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2151,21 +2276,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:58:53 GMT + - Mon, 17 Apr 2023 15:52:31 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4EDB4251F1A844F7812DBC888EC5A179 Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:58:54Z' status: code: 202 message: Accepted @@ -2183,9 +2304,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2195,21 +2317,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:59:09 GMT + - Mon, 17 Apr 2023 15:52:46 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 41520F1BD4424F98AAEC7A4C8431C25C Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:59:09Z' status: code: 202 message: Accepted @@ -2227,9 +2345,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2239,21 +2358,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:59:24 GMT + - Mon, 17 Apr 2023 15:53:01 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 60E566201F2C4F2D85509C3DA78CAF2A Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:59:24Z' status: code: 202 message: Accepted @@ -2271,9 +2386,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2283,19 +2399,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:59:40 GMT + - Mon, 17 Apr 2023 15:53:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7639A966394447AFBBB8D1B143C45B24 Ref B: BL2AA2030105049 Ref C: 2023-01-09T19:59:40Z' status: code: 200 message: OK @@ -2317,9 +2429,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2331,21 +2444,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:59:43 GMT + - Mon, 17 Apr 2023 15:53: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-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: 5231CD25E75041FF9FEC9084412675AE Ref B: BL2AA2030106051 Ref C: 2023-01-09T19:59:41Z' + - '1199' status: code: 201 message: Created @@ -2361,11 +2470,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -2379,19 +2489,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:59:44 GMT + - Mon, 17 Apr 2023 15:53:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 44B87002824A4B2DBC5A7D03161CAD9C Ref B: BL2AA2030106037 Ref C: 2023-01-09T19:59:44Z' status: code: 404 message: Not Found @@ -2428,11 +2536,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -2445,13 +2554,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T19:59:45.6480521Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:59:45.6480521Z\"\r\n + \"2023-04-17T15:53:20.5386798Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:53:20.5386798Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -2459,21 +2568,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:59:45 GMT + - Mon, 17 Apr 2023 15:53:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: 55FEE2CDB99E4B05A0B000A87DC942C9 Ref B: BL2AA2030106037 Ref C: 2023-01-09T19:59:45Z' + - '1199' status: code: 201 message: Created @@ -2489,36 +2596,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n - \ \"name\": \"dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n + \ \"name\": \"924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:03 GMT + - Mon, 17 Apr 2023 15:53:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CA6568A3B26B4071A5E43E35C6252375 Ref B: BL2AA2030106037 Ref C: 2023-01-09T20:00:03Z' status: code: 200 message: OK @@ -2534,36 +2644,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n - \ \"name\": \"dcbeebab-3d6b-47b4-9307-a67cf2290772\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n + \ \"name\": \"924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:33 GMT + - Mon, 17 Apr 2023 15:54:08 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D61D7E6D00D04380B0DC243A98748AF6 Ref B: BL2AA2030106037 Ref C: 2023-01-09T20:00:33Z' status: code: 200 message: OK @@ -2579,17 +2692,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-59-45-98ccc\",\r\n - \ \"duration\": \"PT31.7502942S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-53-20-d491d\",\r\n + \ \"duration\": \"PT21.0956709S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -2600,9 +2714,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:59:45.6480521Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:53:20.5386798Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:59:45.6480521Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:53:20.5386798Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2613,19 +2727,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:33 GMT + - Mon, 17 Apr 2023 15:54:08 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CD8849527D024713A194EE14F75347FE Ref B: BL2AA2030106037 Ref C: 2023-01-09T20:00:33Z' status: code: 200 message: OK @@ -2643,9 +2759,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2657,19 +2774,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:34 GMT + - Mon, 17 Apr 2023 15:54:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6290DABD2F0E4E77A965E810FBCF9524 Ref B: BL2AA2030107023 Ref C: 2023-01-09T20:00:34Z' status: code: 200 message: OK @@ -2687,33 +2802,75 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T19:59:51.3155005Z","changedTime":"2023-01-09T19:59:52.0793047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T19:59:51.9649754Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T19:59:51.9649754Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-17T15:53:22.6900586Z","changedTime":"2023-04-17T15:53:22.9653121Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:53:22.7153242Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:53:22.7153242Z"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000006%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX%2fnlZqJkWq9rYHlb66X7%2f3pP4x6rZDvzh0x8vo84%2fRtrr014s%2f%2bjza3tKrKfek0OxW%2beqWNM8HPe7rpJOvuL%2bWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ%2fYdzs%2f5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW%2f3E5lqz8wN%2bhHXL7dwMFWILwlqHjXO2VtbP%2fRnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2bOPzpZImYpxr%2f1v%2fNnnRi%2fXCTpPcfv3b8Q1ysLCepp9xn6%2b8B%2ftSnVoogdxgd%2fTsXdvAIMyOnBX5BMl%2bjR0dwf%2bIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2bRI8URSxOobGP9dH%2fNlC%2buTmsD%2f6SsFiWLXpVnw3ZnZdO24d%2fvqVVnKb4phI5hpZ4ofGHw2M%2b%2fqeVBD7HmNCQlP3WoFA%2feDhk%2bM237BvhyM%2fSAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC%2fqpPD4GL2W%2fZ3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2bj9bVWsIqpK7r%2fCfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu%2fpwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2bOjlOblH7Sor3Tg1ji%2beuLOWFbs7rKAYAmJ%2f25jvy73f8dAHMionmSgGGLMvity%2bC6%2bfBn9%2fPkL"}' headers: cache-control: - no-cache content-length: - - '670' + - '2017' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:34 GMT + - Mon, 17 Apr 2023 15:54:10 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX/nlZqJkWq9rYHlb66X7/3pP4x6rZDvzh0x8vo84/Rtrr014s/%2Bjza3tKrKfek0OxW%2BeqWNM8HPe7rpJOvuL%2BWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ/Ydzs/5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW/3E5lqz8wN%2BhHXL7dwMFWILwlqHjXO2VtbP/RnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2BOPzpZImYpxr/1v/NnnRi/XCTpPcfv3b8Q1ysLCepp9xn6%2B8B/tSnVoogdxgd/TsXdvAIMyOnBX5BMl%2BjR0dwf%2BIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2BRI8URSxOobGP9dH/NlC%2BuTmsD/6SsFiWLXpVnw3ZnZdO24d/vqVVnKb4phI5hpZ4ofGHw2M%2B/qeVBD7HmNCQlP3WoFA/eDhk%2BM237BvhyM/SAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC/qpPD4GL2W/Z3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2Bj9bVWsIqpK7r/CfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu/pwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2BOjlOblH7Sor3Tg1ji%2BeuLOWFbs7rKAYAmJ/25jvy73f8dAHMionmSgGGLMvity%2BC6%2BfBn9/PkL + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:54:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7DE3467BFB14438C865B2871BA737CC9 Ref B: BL2AA2030107023 Ref C: 2023-01-09T20:00:34Z' status: code: 200 message: OK @@ -2731,9 +2888,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2745,19 +2903,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:35 GMT + - Mon, 17 Apr 2023 15:54:11 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 63EA191551B040118E23C347B2559B94 Ref B: BL2AA2030107049 Ref C: 2023-01-09T20:00:35Z' status: code: 200 message: OK @@ -2775,15 +2931,16 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-19-59-45-98ccc\",\r\n - \ \"duration\": \"PT31.7502942S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-53-20-d491d\",\r\n + \ \"duration\": \"PT21.0956709S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n @@ -2794,9 +2951,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:59:45.6480521Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:53:20.5386798Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:59:45.6480521Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:53:20.5386798Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2807,19 +2964,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:36 GMT + - Mon, 17 Apr 2023 15:54:12 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 579756EA191E49E4888640E358FB170F Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:00:36Z' status: code: 200 message: OK @@ -2839,35 +2998,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 20:00:38 GMT + - Mon, 17 Apr 2023 15:54:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - x-msedge-ref: - - 'Ref A: F109DD4A14D943E1808936BDFC1599C3 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:00:36Z' + - '14999' status: code: 202 message: Accepted @@ -2885,34 +3043,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:00:55 GMT + - Mon, 17 Apr 2023 15:54:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E1FAD59CA5AC4E5FADD422EFA3AA0F28 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:00:55Z' status: code: 200 message: OK @@ -2930,34 +3091,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:01:26 GMT + - Mon, 17 Apr 2023 15:55:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CBDA9DE0D9CD4728842AA6FED0F73FC5 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:01:25Z' status: code: 200 message: OK @@ -2975,34 +3139,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:01:56 GMT + - Mon, 17 Apr 2023 15:55:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3902141174CC476A9826345A5A7F0B28 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:01:56Z' status: code: 200 message: OK @@ -3020,34 +3187,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:02:27 GMT + - Mon, 17 Apr 2023 15:56:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 679F1BA584014ABBB907CA08097BBA51 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:02:26Z' status: code: 200 message: OK @@ -3065,34 +3235,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:02:57 GMT + - Mon, 17 Apr 2023 15:56:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 35AA264453C444FFB71F617512ACFBAE Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:02:57Z' status: code: 200 message: OK @@ -3110,34 +3283,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:03:27 GMT + - Mon, 17 Apr 2023 15:57:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 551E9657925D4938A7BFF3D3BB3ACF25 Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:03:27Z' status: code: 200 message: OK @@ -3155,34 +3331,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n - \ \"name\": \"af2503e8-53ca-44f5-b082-33ae9c4c1f54\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n + \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:03:58 GMT + - Mon, 17 Apr 2023 15:57:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AAF0DF70740243099CAE9406AC22799E Ref B: BL2AA2030105033 Ref C: 2023-01-09T20:03:58Z' status: code: 200 message: OK @@ -3200,9 +3379,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3214,19 +3394,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:03:59 GMT + - Mon, 17 Apr 2023 15:57:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C99B86CD25624188AEF4789EB05D73DD Ref B: BL2AA2030110053 Ref C: 2023-01-09T20:03:59Z' status: code: 200 message: OK @@ -3244,9 +3422,53 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + response: + body: + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000006%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX%2fnlZqJkWq9rYHlb66X7%2f3pP4x6rZDvzh0x8vo84%2fRtrr014s%2f%2bjza3tKrKfek0OxW%2beqWNM8HPe7rpJOvuL%2bWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ%2fYdzs%2f5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW%2f3E5lqz8wN%2bhHXL7dwMFWILwlqHjXO2VtbP%2fRnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2bOPzpZImYpxr%2f1v%2fNnnRi%2fXCTpPcfv3b8Q1ysLCepp9xn6%2b8B%2ftSnVoogdxgd%2fTsXdvAIMyOnBX5BMl%2bjR0dwf%2bIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2bRI8URSxOobGP9dH%2fNlC%2buTmsD%2f6SsFiWLXpVnw3ZnZdO24d%2fvqVVnKb4phI5hpZ4ofGHw2M%2b%2fqeVBD7HmNCQlP3WoFA%2feDhk%2bM237BvhyM%2fSAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC%2fqpPD4GL2W%2fZ3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2bj9bVWsIqpK7r%2fCfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu%2fpwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2bOjlOblH7Sor3Tg1ji%2beuLOWFbs7rKAYAmJ%2f25jvy73f8dAHMionmSgGGLMvity%2bC6%2bfBn9%2fPkL"}' + headers: + cache-control: + - no-cache + content-length: + - '1359' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Apr 2023 15:57:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX/nlZqJkWq9rYHlb66X7/3pP4x6rZDvzh0x8vo84/Rtrr014s/%2Bjza3tKrKfek0OxW%2BeqWNM8HPe7rpJOvuL%2BWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ/Ydzs/5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW/3E5lqz8wN%2BhHXL7dwMFWILwlqHjXO2VtbP/RnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2BOPzpZImYpxr/1v/NnnRi/XCTpPcfv3b8Q1ysLCepp9xn6%2B8B/tSnVoogdxgd/TsXdvAIMyOnBX5BMl%2BjR0dwf%2BIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2BRI8URSxOobGP9dH/NlC%2BuTmsD/6SsFiWLXpVnw3ZnZdO24d/vqVVnKb4phI5hpZ4ofGHw2M%2B/qeVBD7HmNCQlP3WoFA/eDhk%2BM237BvhyM/SAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC/qpPD4GL2W/Z3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2Bj9bVWsIqpK7r/CfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu/pwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2BOjlOblH7Sor3Tg1ji%2BeuLOWFbs7rKAYAmJ/25jvy73f8dAHMionmSgGGLMvity%2BC6%2BfBn9/PkL response: body: string: '{"value":[]}' @@ -3258,19 +3480,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:04:00 GMT + - Mon, 17 Apr 2023 15:57:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 96B0A0D4F5504506B2DD9AF4497FA642 Ref B: BL2AA2030110053 Ref C: 2023-01-09T20:03:59Z' status: code: 200 message: OK @@ -3286,33 +3506,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T19:53:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:48:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23948' + - '55598' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:04:00 GMT + - Mon, 17 Apr 2023 15:57:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6BCF2F66242F47F89F50F5E813067D15 Ref B: BL2AA2030109045 Ref C: 2023-01-09T20:04:00Z' status: code: 200 message: OK @@ -3332,9 +3552,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '' @@ -3344,23 +3565,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:04:04 GMT + - Mon, 17 Apr 2023 15:57:38 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' - x-msedge-ref: - - 'Ref A: 9D3A4818077C4402BC9D20C771B59C33 Ref B: BL2AA2030110031 Ref C: 2023-01-09T20:04:01Z' + - '14999' status: code: 202 message: Accepted @@ -3378,9 +3595,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3390,19 +3608,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:04:20 GMT + - Mon, 17 Apr 2023 15:57:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8C0FAAD35BBC48FA90B57B7DF84C854C Ref B: BL2AA2030110031 Ref C: 2023-01-09T20:04:19Z' status: code: 200 message: OK @@ -3424,9 +3638,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3438,21 +3653,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:04:21 GMT + - Mon, 17 Apr 2023 15:57: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-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: 984C115F96C942F9B811F06BFC3D8820 Ref B: BL2AA2030110003 Ref C: 2023-01-09T20:04:20Z' + - '1199' status: code: 201 message: Created @@ -3468,11 +3679,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -3486,19 +3698,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:04:23 GMT + - Mon, 17 Apr 2023 15:57:56 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E317E00C60404AC3A3A47B60AD838343 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:04:22Z' status: code: 404 message: Not Found @@ -3532,11 +3742,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -3548,13 +3759,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T20:04:24.6031488Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:04:24.6031488Z\"\r\n + \"2023-04-17T15:57:56.8202112Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:57:56.8202112Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -3562,21 +3773,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:04:24 GMT + - Mon, 17 Apr 2023 15:57:56 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: 52F4D0FD60A845B78F8863A4EAEBB657 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:04:23Z' + - '1198' status: code: 201 message: Created @@ -3592,36 +3801,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n - \ \"name\": \"38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n + \ \"name\": \"3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:04:41 GMT + - Mon, 17 Apr 2023 15:58:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C1AC62105E9549CEBDAD0C65E14884A6 Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:04:42Z' status: code: 200 message: OK @@ -3637,36 +3849,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n - \ \"name\": \"38fc5dee-0aea-491d-8059-443a92b0301c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n + \ \"name\": \"3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:05:12 GMT + - Mon, 17 Apr 2023 15:58:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E6E4323663A14C52BCE82A61BDF43B9B Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:05:12Z' status: code: 200 message: OK @@ -3682,17 +3897,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name -g --template-file --parameters --yes + - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-20-04-24-24c38\",\r\n - \ \"duration\": \"PT28.5717385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-57-56-ce69a\",\r\n + \ \"duration\": \"PT20.3221336S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3700,9 +3916,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:04:24.6031488Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:57:56.8202112Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:04:24.6031488Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:57:56.8202112Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3713,19 +3929,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:05:12 GMT + - Mon, 17 Apr 2023 15:58:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4C64FE1CA25148F999AB4AD41D614B7C Ref B: BL2AA2030110007 Ref C: 2023-01-09T20:05:12Z' status: code: 200 message: OK @@ -3743,9 +3961,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3757,19 +3976,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:05:13 GMT + - Mon, 17 Apr 2023 15:58:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A2C04239674041F2A97A33FBB82E7F91 Ref B: BL2AA2030108029 Ref C: 2023-01-09T20:05:13Z' status: code: 200 message: OK @@ -3787,15 +4004,16 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-01-09-20-04-24-24c38\",\r\n - \ \"duration\": \"PT28.5717385S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-57-56-ce69a\",\r\n + \ \"duration\": \"PT20.3221336S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -3803,9 +4021,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:04:24.6031488Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:57:56.8202112Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:04:24.6031488Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:57:56.8202112Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3816,19 +4034,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:05:13 GMT + - Mon, 17 Apr 2023 15:58:45 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: BCC60C7A3CED4F9AA39491A7CED2D2C2 Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:05:13Z' status: code: 200 message: OK @@ -3848,35 +4068,34 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 20:05:14 GMT + - Mon, 17 Apr 2023 15:58:45 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' - x-msedge-ref: - - 'Ref A: A0ACD7BDC24045E588E0A4BD1AB65BAA Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:05:14Z' + - '14999' status: code: 202 message: Accepted @@ -3894,79 +4113,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n - \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '265' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 20:05:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 44A2593CAD5A42B98E11285B0FE42B5A Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:05:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group delete - Connection: - - keep-alive - ParameterSetName: - - --name -g --delete-all --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n - \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n + \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:06:02 GMT + - Mon, 17 Apr 2023 15:59:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E1A11B4B11C14A79A5329359209A9FE5 Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:06:03Z' status: code: 200 message: OK @@ -3984,34 +4161,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n - \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n + \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:06:33 GMT + - Mon, 17 Apr 2023 15:59:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E42EBBCFC3AB4245B903D0FFE2FEA944 Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:06:33Z' status: code: 200 message: OK @@ -4029,34 +4209,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n - \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n + \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:07:03 GMT + - Mon, 17 Apr 2023 16:00:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CF7FB89CF56D4D3892C17657403FB06A Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:07:04Z' status: code: 200 message: OK @@ -4074,34 +4257,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n - \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n + \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:07:34 GMT + - Mon, 17 Apr 2023 16:00:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 67A724C4F5D4479BBEBCCC395604F10B Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:07:34Z' status: code: 200 message: OK @@ -4119,34 +4305,37 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n - \ \"name\": \"107ef50b-e1a7-4ed5-9f1f-f79ebe2b8581\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n + \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:08:05 GMT + - Mon, 17 Apr 2023 16:01:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 371AB10AA1BA470BB738505AF5D2A96D Ref B: BL2AA2030109003 Ref C: 2023-01-09T20:08:05Z' status: code: 200 message: OK @@ -4162,33 +4351,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-01-09T19:53:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:48:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23948' + - '55598' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:08:06 GMT + - Mon, 17 Apr 2023 16:01:04 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 70284270132D4258ABB439247B5D26E9 Ref B: BL2AA2030110021 Ref C: 2023-01-09T20:08:06Z' status: code: 200 message: OK @@ -4208,9 +4397,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '' @@ -4220,23 +4410,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:08:11 GMT + - Mon, 17 Apr 2023 16:01:07 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: F5A73DB896B748CC88B2F4B2F4539428 Ref B: BL2AA2030105025 Ref C: 2023-01-09T20:08:07Z' + - '14999' status: code: 202 message: Accepted @@ -4254,9 +4440,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RTcxQzRBODg1Q0EwMjQyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4266,19 +4453,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:08:26 GMT + - Mon, 17 Apr 2023 16:01:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3F2B110D18BF4025B9DD3C40FC453E90 Ref B: BL2AA2030105025 Ref C: 2023-01-09T20:08:26Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index 5c2d3fc0ac8..645af223737 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -28,26 +29,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:05 GMT + - Fri, 14 Apr 2023 17:10: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 25061CFF27144AA0A8640CA8E42E6570 Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:05Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -66,20 +64,21 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -88,35 +87,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:58:06.6678205Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n + \"2023-04-14T17:10:18.3216951Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/fb75825f-b34f-42d3-91bc-5673fd8a0e50?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69f689b8-4b48-4645-bcfe-d384e09f7ac0?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1207' + - '1222' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:07 GMT + - Fri, 14 Apr 2023 17:10:18 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: F9F75C1CFDDC4C4F8D1295E10E748AB2 Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:05Z' + - '1199' status: code: 201 message: Created @@ -132,36 +129,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/fb75825f-b34f-42d3-91bc-5673fd8a0e50?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69f689b8-4b48-4645-bcfe-d384e09f7ac0?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/fb75825f-b34f-42d3-91bc-5673fd8a0e50\",\r\n - \ \"name\": \"fb75825f-b34f-42d3-91bc-5673fd8a0e50\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69f689b8-4b48-4645-bcfe-d384e09f7ac0\",\r\n + \ \"name\": \"69f689b8-4b48-4645-bcfe-d384e09f7ac0\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:24 GMT + - Fri, 14 Apr 2023 17:10:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 206791AF9569432FA42CDED60AECAF88 Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:24Z' status: code: 200 message: OK @@ -177,19 +177,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-07-5afa9\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-18-fa61f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.4784932S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.086159S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,32 +200,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:06.6678205Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:18.3216951Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1613' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:25 GMT + - Fri, 14 Apr 2023 17:10:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 61C2218E07BB4B5AAB9483E4AD73990B Ref B: BL2AA2030105049 Ref C: 2023-01-09T17:58:24Z' status: code: 200 message: OK @@ -242,17 +245,18 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-07-5afa9\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-18-fa61f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.4784932S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.086159S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -262,32 +266,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:06.6678205Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:18.3216951Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1613' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:25 GMT + - Fri, 14 Apr 2023 17:10:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D6D1DF5F34A740A8953255D59EBAB96E Ref B: BL2AA2030110007 Ref C: 2023-01-09T17:58:25Z' status: code: 200 message: OK @@ -305,17 +311,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-07-5afa9\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-18-fa61f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.4784932S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.086159S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -325,32 +332,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:06.6678205Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:18.3216951Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:06.6678205Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1599' + - '1613' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:26 GMT + - Fri, 14 Apr 2023 17:10:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DD99AF0CAB094056930809431EAC8AC5 Ref B: BL2AA2030106011 Ref C: 2023-01-09T17:58:26Z' status: code: 200 message: OK @@ -370,9 +379,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -382,21 +392,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:58:28 GMT + - Fri, 14 Apr 2023 17:10:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: CEB870EDA5EF4B219A0F3D79551CAE7F Ref B: BL2AA2030106011 Ref C: 2023-01-09T17:58:27Z' + - '14999' status: code: 200 message: OK @@ -412,11 +420,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -429,26 +438,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:28 GMT + - Fri, 14 Apr 2023 17:10: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 19CA431DCA34452192991313494BDB5F Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:28Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -467,20 +473,21 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -489,35 +496,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:58:29.7598918Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:29.7598918Z\"\r\n + \"2023-04-14T17:10:39.2113839Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:39.2113839Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4aed3ea4-a6bc-426f-bd54-07350e03340e?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30ca88f7-c256-4574-af7a-98be5e8d54a1?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1207' + - '1222' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:29 GMT + - Fri, 14 Apr 2023 17:10:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 0EA9EF113051440DBBB28A65A45C824C Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:29Z' + - '1199' status: code: 201 message: Created @@ -533,36 +538,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4aed3ea4-a6bc-426f-bd54-07350e03340e?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30ca88f7-c256-4574-af7a-98be5e8d54a1?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/4aed3ea4-a6bc-426f-bd54-07350e03340e\",\r\n - \ \"name\": \"4aed3ea4-a6bc-426f-bd54-07350e03340e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30ca88f7-c256-4574-af7a-98be5e8d54a1\",\r\n + \ \"name\": \"30ca88f7-c256-4574-af7a-98be5e8d54a1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:46 GMT + - Fri, 14 Apr 2023 17:10:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 6A92B323A2E341498242EDB2FB0B531C Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:47Z' status: code: 200 message: OK @@ -578,19 +586,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-30-39fe2\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-39-90065\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.3231271S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.7940454S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -600,32 +609,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:29.7598918Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:39.2113839Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:29.7598918Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:39.2113839Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1600' + - '1614' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:47 GMT + - Fri, 14 Apr 2023 17:10:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1BCC2B30BD7B47D989AB387009B3845A Ref B: BL2AA2030109039 Ref C: 2023-01-09T17:58:47Z' status: code: 200 message: OK @@ -643,17 +654,18 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-30-39fe2\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-39-90065\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.3231271S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.7940454S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -663,32 +675,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:29.7598918Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:39.2113839Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:29.7598918Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:39.2113839Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1600' + - '1614' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:48 GMT + - Fri, 14 Apr 2023 17:10:58 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F29A141C266A462FA8AB7DFD78D0DAE7 Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:58:48Z' status: code: 200 message: OK @@ -708,9 +722,10 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -720,21 +735,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:58:49 GMT + - Fri, 14 Apr 2023 17:10:59 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: E8E13995AFE342DEBB716B2C0A9D378B Ref B: BL2AA2030106049 Ref C: 2023-01-09T17:58:49Z' + - '14999' status: code: 200 message: OK @@ -756,9 +769,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -770,21 +784,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:51 GMT + - Fri, 14 Apr 2023 17:11:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 16AED872598E4E07A245718AA485FB1F Ref B: BL2AA2030105019 Ref C: 2023-01-09T17:58:50Z' + - '1199' status: code: 201 message: Created @@ -800,11 +810,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -817,26 +829,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:52 GMT + - Fri, 14 Apr 2023 17:11:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 7804E6356D65464383F2B1A2CDF42D56 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:58:53Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -865,20 +874,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1658' + - '1670' Content-Type: - application/json ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -886,36 +897,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:54.0264355Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:01.2071485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:54.0264355Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:01.2071485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9cec6c88-54d9-4a65-9e06-fa86b0e20f21?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1243' + - '1258' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:58:53 GMT + - Fri, 14 Apr 2023 17:11:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: E1F1779EC1224C3B8FEF35596C5E2DF7 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:58:53Z' + - '1199' status: code: 201 message: Created @@ -931,36 +940,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9cec6c88-54d9-4a65-9e06-fa86b0e20f21?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6\",\r\n - \ \"name\": \"53ced4db-0501-4173-b685-aa76b72945f6\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9cec6c88-54d9-4a65-9e06-fa86b0e20f21\",\r\n + \ \"name\": \"9cec6c88-54d9-4a65-9e06-fa86b0e20f21\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:11 GMT + - Fri, 14 Apr 2023 17:11:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 83C4074E218A4AD6A029A74F8B6B4A35 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:59:11Z' status: code: 200 message: OK @@ -976,64 +989,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/53ced4db-0501-4173-b685-aa76b72945f6\",\r\n - \ \"name\": \"53ced4db-0501-4173-b685-aa76b72945f6\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 17:59:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: EA12ABCE7335403BAD86BD5374813067 Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:59:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location -g --template-file --parameters --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-54-eae2b\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-01-7fce7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT29.498732S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.6602064S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1043,32 +1013,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:54.0264355Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:01.2071485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:54.0264355Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:01.2071485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2098' + - '2113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:41 GMT + - Fri, 14 Apr 2023 17:11:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5BB0F1F35D05474785DE822168E63C3F Ref B: BL2AA2030108049 Ref C: 2023-01-09T17:59:42Z' status: code: 200 message: OK @@ -1086,17 +1058,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-58-54-eae2b\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-01-7fce7\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT29.498732S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.6602064S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1106,32 +1079,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:58:54.0264355Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:01.2071485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:58:54.0264355Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:01.2071485Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2098' + - '2113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:43 GMT + - Fri, 14 Apr 2023 17:11:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 25F6259FDCBE43C79F8EF021FC60B388 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:59:42Z' status: code: 200 message: OK @@ -1151,9 +1126,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -1163,21 +1139,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:59:45 GMT + - Fri, 14 Apr 2023 17:11:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: ED496B8E2A7C45E7B44187115FF6F8C1 Ref B: BL2AA2030106027 Ref C: 2023-01-09T17:59:43Z' + - '14999' status: code: 200 message: OK @@ -1195,54 +1169,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:45 GMT + - Fri, 14 Apr 2023 17:11:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FA009B0B56E0480C8710EC7B26BFAF2E Ref B: BL2AA2030106025 Ref C: 2023-01-09T17:59:45Z' status: code: 200 message: OK @@ -1260,17 +1297,18 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:01.6872279Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:05.7081394Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:05.0008468Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:06.1299946Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000002\"\r\n}" headers: @@ -1281,19 +1319,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:46 GMT + - Fri, 14 Apr 2023 17:11:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 3024D609C47146F1B2C8A2115C7614B5 Ref B: BL2AA2030106025 Ref C: 2023-01-09T17:59:46Z' status: code: 200 message: OK @@ -1309,11 +1349,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -1326,26 +1368,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:48 GMT + - Fri, 14 Apr 2023 17:11: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 3566C8D55529435686605663E85819F9 Ref B: BL2AA2030105031 Ref C: 2023-01-09T17:59:47Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -1374,20 +1413,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1658' + - '1670' Content-Type: - application/json ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -1395,36 +1436,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:49.8127544Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:23.6905985Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:49.8127544Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:23.6905985Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/117baaf1-009f-4e28-8a4b-8b6b6eba3ea0?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f97b9480-7239-43eb-b6f3-794661222017?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1243' + - '1258' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:59:50 GMT + - Fri, 14 Apr 2023 17:11:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-msedge-ref: - - 'Ref A: 22FDA9C7D7A546D49970661C9249877B Ref B: BL2AA2030105031 Ref C: 2023-01-09T17:59:48Z' + - '1199' status: code: 201 message: Created @@ -1440,36 +1479,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/117baaf1-009f-4e28-8a4b-8b6b6eba3ea0?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f97b9480-7239-43eb-b6f3-794661222017?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/117baaf1-009f-4e28-8a4b-8b6b6eba3ea0\",\r\n - \ \"name\": \"117baaf1-009f-4e28-8a4b-8b6b6eba3ea0\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f97b9480-7239-43eb-b6f3-794661222017\",\r\n + \ \"name\": \"f97b9480-7239-43eb-b6f3-794661222017\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:00:08 GMT + - Fri, 14 Apr 2023 17:11:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AE57670A48514BCDAB463DD0979F2B75 Ref B: BL2AA2030105031 Ref C: 2023-01-09T18:00:08Z' status: code: 200 message: OK @@ -1485,19 +1528,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-59-50-d6e3e\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-24-95777\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT12.9146281S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.5166516S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1507,32 +1552,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:49.8127544Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:23.6905985Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:49.8127544Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:23.6905985Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2099' + - '2113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:00:09 GMT + - Fri, 14 Apr 2023 17:11:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 82D2C57DEBB840A58E34355251F79ABD Ref B: BL2AA2030105031 Ref C: 2023-01-09T18:00:09Z' status: code: 200 message: OK @@ -1550,17 +1597,18 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-17-59-50-d6e3e\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-24-95777\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT12.9146281S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.5166516S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -1570,32 +1618,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:59:49.8127544Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:23.6905985Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:59:49.8127544Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:23.6905985Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2099' + - '2113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:00:10 GMT + - Fri, 14 Apr 2023 17:11:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E9503E91223144EF9A252CD6B24A6593 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:00:10Z' status: code: 200 message: OK @@ -1615,35 +1665,34 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 18:00:12 GMT + - Fri, 14 Apr 2023 17:11:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: 2A87DB4DF5B9459A9DB8C97870B8AA9E Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:00:11Z' + - '14999' status: code: 202 message: Accepted @@ -1661,34 +1710,37 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n - \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n + \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:00:30 GMT + - Fri, 14 Apr 2023 17:12:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C4B6A46463C24D3090F3C583773EAC29 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:00:31Z' status: code: 200 message: OK @@ -1706,34 +1758,37 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n - \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n + \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:01:01 GMT + - Fri, 14 Apr 2023 17:12:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B3F4F341D2A74E188CA44863739EDF96 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:01:02Z' status: code: 200 message: OK @@ -1751,34 +1806,37 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n - \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n + \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:01:33 GMT + - Fri, 14 Apr 2023 17:13:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 23351AD46B8046BFAC417C5A8887E648 Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:01:33Z' status: code: 200 message: OK @@ -1796,34 +1854,37 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n - \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n + \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:02:04 GMT + - Fri, 14 Apr 2023 17:13:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 689E922378C944D494D513AF8A236BCE Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:02:04Z' status: code: 200 message: OK @@ -1841,34 +1902,37 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n - \ \"name\": \"cd2e8a77-502a-41ff-bd9a-cd831f0d69be\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n + \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:02:36 GMT + - Fri, 14 Apr 2023 17:14:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 039C76FC879942ABB4375939DBC4B52A Ref B: BL2AA2030106051 Ref C: 2023-01-09T18:02:36Z' status: code: 200 message: OK @@ -1884,33 +1948,86 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 + Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory + Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working + Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU + Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage + - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T17:11:05.6826955Z","changedTime":"2023-04-14T17:11:05.8331293Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T17:11:05.7081394Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T17:11:05.7081394Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T17:11:06.0999133Z","changedTime":"2023-04-14T17:11:06.2393765Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T17:11:06.1299946Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T17:11:06.1299946Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVRNc6M4EP0vPu%2bBDzu7mao5rADFMEFEQi1hbmA5sUEmqdixsafmv2%2fL48x6qva2B0qA1K9fv9fq75NhNe4fN0O%2fm3z5Plk1u%2f3HLph8maxO2UddrT2p6akJ1CntXjc63C%2fTQRzw%2b6OK0jt83qG3STHMtsybzrgiASS76QLMYwtqz4HGJWThk%2fQ6sPwuLxlAn9%2flctGViumiS7sS1FPRLXwmYUx9GovudZp6NefnN1IHlraKEg42YgklZbQ7IiapvfWA62u53eMeIzX%2bc2up6chCcnZ5uVb4j1LkRAugczE3e%2bMhBqSewyiBqhJep%2b1gfuFzzNX4rONelkFQu%2fihfHD7GeFdfVw%2b0LnW9P0GP8a81Wpejw1ic49ah41rsVAmKIN7jP3kp4j0INTIrR5oiOcy3gmXI%2bMyDVp9P97yA6ChigXjMMqlw9Ymrd26NVGjx1jgPofd%2b7LHf1d9HH9UskLMioeX%2bq%2f86cDDt53w9r7jd9UvwvcnAynWY9cF6nvD%2f6mtVFGe17%2fzn9tC9pa0IRMX3p%2f8YRybhJ5v%2bEdYZw29qrH%2bGdd7PC8SfnJ%2b2eRbYDYlCOTv6lfVytVwrU8EqLd3PDmevLKOI2pgBdZNSk%2b5b8SlRCT0AKDIolfr23j5YGLo2YC%2bd7iP%2bTNX85lXFx8HiRoJj35bQhK2vkUtEudnxrfrDPVN5E8uA54h6EHC4S3mKg3lT18%2f%2fc1WykiZ%2bP%2fqIzNSJioqMU5jzwDqiTHOZ2JCdhAPamg9FXOfRrU20QVvay77Upus1GvCMHcuBRGVyS49d9HAoHYq4%2f56aLvFbf%2fnyHeKsQRb%2fcAVxmFO96APqQCBd8TMas95dfELv11PmEgFZhDYlyIRO8TIkSM1XjYvLYvqzuX7dX8OHF5OXN8LiXUpQP80S7iyTLg7sXX%2bWKLBxxj0skd89K%2fURuU9O0Bo0Lv8HfFqLv1luhlxfmTrdmusmx8r%2f7hptf2cJUcG%2bShkP8098AtJI2aPm0fqztDpdd5cz1hSAA%2bL2FKhjpvnyjfp4H2d%2fDFpPnb798ZuGjfJ%2fucY0xpmTcVcy%2f3nGGMly8Bf3OUblgn46451gGMswbZjD0X30glL4qKnJTtnj8Zz0tuhTF4Ouspca5EGaPeE9F2Jyy39qAO1TLu3P6so2zd65t7x%2bdvnZ0oL%2bXIWEmY5pAFKsXNnFtX69zOQzES8nBagKO7fPytv88y%2ffp38%2bPEP"}' + headers: + cache-control: + - no-cache + content-length: + - '110961' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 17:14:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVRNc6M4EP0vPu%2BBDzu7mao5rADFMEFEQi1hbmA5sUEmqdixsafmv2/L48x6qva2B0qA1K9fv9fq75NhNe4fN0O/m3z5Plk1u/3HLph8maxO2UddrT2p6akJ1CntXjc63C/TQRzw%2B6OK0jt83qG3STHMtsybzrgiASS76QLMYwtqz4HGJWThk/Q6sPwuLxlAn9/lctGViumiS7sS1FPRLXwmYUx9GovudZp6NefnN1IHlraKEg42YgklZbQ7IiapvfWA62u53eMeIzX%2Bc2up6chCcnZ5uVb4j1LkRAugczE3e%2BMhBqSewyiBqhJep%2B1gfuFzzNX4rONelkFQu/ihfHD7GeFdfVw%2B0LnW9P0GP8a81Wpejw1ic49ah41rsVAmKIN7jP3kp4j0INTIrR5oiOcy3gmXI%2BMyDVp9P97yA6ChigXjMMqlw9Ymrd26NVGjx1jgPofd%2B7LHf1d9HH9UskLMioeX%2Bq/86cDDt53w9r7jd9UvwvcnAynWY9cF6nvD/6mtVFGe17/zn9tC9pa0IRMX3p/8YRybhJ5v%2BEdYZw29qrH%2BGdd7PC8SfnJ%2B2eRbYDYlCOTv6lfVytVwrU8EqLd3PDmevLKOI2pgBdZNSk%2B5b8SlRCT0AKDIolfr23j5YGLo2YC%2Bd7iP%2BTNX85lXFx8HiRoJj35bQhK2vkUtEudnxrfrDPVN5E8uA54h6EHC4S3mKg3lT18/c1WykiZ%2BP/qIzNSJioqMU5jzwDqiTHOZ2JCdhAPamg9FXOfRrU20QVvay77Upus1GvCMHcuBRGVyS49d9HAoHYq4/56aLvFbf/nyHeKsQRb/cAVxmFO96APqQCBd8TMas95dfELv11PmEgFZhDYlyIRO8TIkSM1XjYvLYvqzuX7dX8OHF5OXN8LiXUpQP80S7iyTLg7sXX%2BWKLBxxj0skd89K/URuU9O0Bo0Lv8HfFqLv1luhlxfmTrdmusmx8r/7hptf2cJUcG%2BShkP8098AtJI2aPm0fqztDpdd5cz1hSAA%2BL2FKhjpvnyjfp4H2d/DFpPnb798ZuGjfJ/ucY0xpmTcVcy/3nGGMly8Bf3OUblgn46451gGMswbZjD0X30glL4qKnJTtnj8Zz0tuhTF4Ouspca5EGaPeE9F2Jyy39qAO1TLu3P6so2zd65t7x%2BdvnZ0oL%2BXIWEmY5pAFKsXNnFtX69zOQzES8nBagKO7fPytv88y/fp38%2BPEP response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes1","name":"my-stackrg2statefulResourceDupes1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:14.9690142Z","changedTime":"2022-09-19T17:27:17.6143511Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefulResourceDupes2","name":"my-stackrg2statefulResourceDupes2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-13T19:57:15.0353481Z","changedTime":"2022-09-19T17:27:17.0262976Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls1","name":"my-stackrg2statefuls1","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:08.1162779Z","changedTime":"2022-09-13T19:54:33.9206806Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/statefulResources/my-stackrg2statefuls2","name":"my-stackrg2statefuls2","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-05-24T19:23:07.8286057Z","changedTime":"2022-09-13T19:54:33.7742797Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:52:59.7233356Z","changedTime":"2022-09-22T21:03:00.7113865Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:52:59.7654456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/versions/v1","name":"cli-test-resource-oneea3zlsu2j7c6vyxzx3q73xhzvcnanv67oldpy7h/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:00.308849Z","changedTime":"2022-09-22T21:03:02.8579728Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:00.3591638Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:00.3591638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:53:20.8616155Z","changedTime":"2022-09-22T21:03:23.7043993Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:20.9971278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1","name":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:53:22.6330923Z","changedTime":"2022-09-22T21:03:24.4619024Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:22.7939552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:22.7939552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:43:23.9436141Z","changedTime":"2022-09-23T17:53:26.6184341Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:23.9912568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/versions/v1","name":"cli-test-resource-oned4uqheqc6oomt227pnmtsdv3axrhzih26g3sb3e/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:43:24.4242455Z","changedTime":"2022-09-23T17:53:25.1300892Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:43:24.4756512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:43:24.4756512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:08.0194041Z","changedTime":"2022-09-20T18:43:09.7936453Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:08.1761191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/versions/v1","name":"cli-test-resource-one56qpre6ty4j46ylxlj3g2benb2a57hwkduplk75/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:09.8567223Z","changedTime":"2022-09-20T18:43:12.6267379Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:10.0051161Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:10.0051161Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-20T18:33:48.6040475Z","changedTime":"2022-09-20T18:43:50.1613957Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:48.6565598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1","name":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-20T18:33:49.0541693Z","changedTime":"2022-09-20T18:43:51.1725456Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:49.1096917Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:49.1096917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff/providers/Microsoft.Resources/templateSpecs/cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","name":"cli-test-template-speccvc27t3nk2cqernwlru4wteo5z6wu6cqx6n4f3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T18:18:25.6036732Z","changedTime":"2022-09-28T18:28:27.9711032Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T18:18:25.6692787Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T18:18:25.6692787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","name":"cli-test-template-specq7evhcpubf4c7p7sn2rjjoq5qa7z36umnvd5gn","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:03:56.5182103Z","changedTime":"2022-09-28T17:13:57.4821416Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:03:56.5668793Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:03:56.5668793Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm/providers/Microsoft.Resources/templateSpecs/cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","name":"cli-test-template-specr7inydgwmjzobkk7bel7nbxaxze45wdbcd4ed2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T19:03:18.2964427Z","changedTime":"2022-09-28T19:13:20.118238Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T19:03:18.347832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T19:03:18.347832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:55:52.9001982Z","changedTime":"2022-09-23T18:05:54.0144007Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:52.955599Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/versions/v1","name":"cli-test-resource-onemehi6m7jt3zmmnefpm3o3v67i72wtbxzjrfjz3p/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:55:53.4227285Z","changedTime":"2022-09-23T18:05:54.2805717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:55:53.4712263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:55:53.4712263Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:56:13.3781085Z","changedTime":"2022-09-23T18:06:16.0273154Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:13.5711092Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/versions/v1","name":"cli-test-resource-twohoujy7qtwjtlepk2lxohgpoykw3ocerzakuwcc4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:56:14.9790413Z","changedTime":"2022-09-23T18:06:16.7412286Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:56:15.1180021Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:56:15.1180021Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:15.1473765Z","changedTime":"2022-09-22T21:05:16.6760487Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:15.2840923Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/versions/v1","name":"cli-test-resource-oneqnc7btmsdaoksvcenx5z2zdijjik23tomfbvuus/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:16.5941968Z","changedTime":"2022-09-22T21:05:19.2099882Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:16.7215872Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:16.7215872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:55:35.9629942Z","changedTime":"2022-09-22T21:05:39.2140342Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:36.0988676Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1","name":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:55:37.3760106Z","changedTime":"2022-09-22T21:05:38.3038263Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:37.5051244Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:37.5051244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:59:25.2601434Z","changedTime":"2022-09-22T21:09:25.730859Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.3107026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/versions/v1","name":"cli-test-resource-one6iwtwcwczspuyzvts54vvvkru6jpqcreh5ezykf/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:59:25.7858623Z","changedTime":"2022-09-22T21:09:26.9730193Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:59:25.8271257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:59:25.8271257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:50:10.1051761Z","changedTime":"2022-09-23T18:00:11.4430093Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.1564067Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/versions/v1","name":"cli-test-resource-one37z2thw3knsdzzsaceiblvx4vqcsbrprm4733u6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:50:10.6336627Z","changedTime":"2022-09-23T18:00:11.9046461Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:50:10.6876835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:50:10.6876835Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:44:13.3201998Z","changedTime":"2022-09-22T20:54:13.8874735Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:13.3673581Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/versions/v1","name":"cli-test-resource-onexmd5d4meemjr5estpsnba6rtzbrpiglkup6otij/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:44:14.0285043Z","changedTime":"2022-09-22T20:54:14.2972248Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:44:14.0705304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:44:14.0705304Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda/providers/Microsoft.Resources/templateSpecs/cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","name":"cli-test-template-specjaou4t7edaq774rqyfsh25te6zgqan4zqopxwz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:41:31.0055559Z","changedTime":"2022-09-28T17:51:33.7507574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:41:31.0773828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:41:31.0773828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","name":"cli-test-template-specyeij7dvwp7usoirgi2b6gvq2nhuudf34in3gma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:13:03.2364845Z","changedTime":"2022-09-28T17:23:05.4032102Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:13:03.9819138Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:13:03.9819138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:58:49.0812691Z","changedTime":"2022-09-23T18:08:51.5660494Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:49.2330174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/versions/v1","name":"cli-test-resource-ones225gdoe7jv4niic3cz66q66tmacjzmtpax5qiu/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:58:50.5566895Z","changedTime":"2022-09-23T18:08:52.6028798Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:58:50.7017673Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:58:50.7017673Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:59:06.6120396Z","changedTime":"2022-09-23T18:09:07.0846576Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:06.6640209Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/versions/v1","name":"cli-test-resource-twojvnf7kl3fg5336i3h5rdvet43pvb56vhwmiaunj/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:59:07.0415917Z","changedTime":"2022-09-23T18:09:07.5413271Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:59:07.0859024Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:59:07.0859024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:14.5103519Z","changedTime":"2022-09-22T21:00:16.4281919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:14.6404166Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/versions/v1","name":"cli-test-resource-onev2qfiigxpdtem54v7bhft2s444awypf7nranvu6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:15.9489644Z","changedTime":"2022-09-22T21:00:17.4794849Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:16.077921Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:16.077921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:50:31.8419996Z","changedTime":"2022-09-22T21:00:32.6534256Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:31.8902914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1","name":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:50:32.3793095Z","changedTime":"2022-09-22T21:00:34.7042362Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:32.4215449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:32.4215449Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:29.7712218Z","changedTime":"2022-09-23T19:56:32.3298578Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:30.1457804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/versions/v1","name":"cli-test-resource-oneku57hd6shnkubnjveyzcwnm5u7kvh6tgtt7ymma/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:32.5671583Z","changedTime":"2022-09-23T21:40:15.2689047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:32.9284965Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:32.9284965Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T19:46:52.9155213Z","changedTime":"2022-09-23T19:56:55.6639537Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:52.9661808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/versions/v1","name":"cli-test-resource-twoyxf5solszsu6wtqwqzx3syplvqpyzibj32heijc/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T19:46:53.4514596Z","changedTime":"2022-09-23T19:56:55.3332919Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T19:46:53.4974289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T19:46:53.4974289Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:53:24.006293Z","changedTime":"2022-09-23T18:03:25.966671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.067346Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/versions/v1","name":"cli-test-resource-onejvnrwohr3rnmsbsjo2lamvw2ynrardh42yzvtxz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:53:24.5669913Z","changedTime":"2022-09-23T18:03:25.4216251Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:53:24.6142286Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:53:24.6142286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-23T17:40:53.019381Z","changedTime":"2022-09-23T17:50:54.326995Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:53.3937861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/versions/v1","name":"cli-test-resource-oneodaywfnpsn6q4pm6wc5ltb2fh2t5v2qhlujsahg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-23T17:40:55.9469088Z","changedTime":"2022-09-23T17:50:58.055667Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T17:40:56.3625047Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T17:40:56.3625047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-09T17:59:00.6696209Z","changedTime":"2023-01-09T17:59:02.483377Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:59:01.6872279Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:59:01.6872279Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-01-09T17:59:04.3609305Z","changedTime":"2023-01-09T17:59:05.4697376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:59:05.0008468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:59:05.0008468Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","name":"cli-test-template-spec4hq6nxapat6l7wz3oxqdxwxhlfft6cggfjnlsz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-28T17:29:31.261052Z","changedTime":"2022-09-28T17:39:34.0267936Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-28T17:29:31.311447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-28T17:29:31.311447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:46:59.0182597Z","changedTime":"2022-09-22T20:56:59.7292012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:46:59.162145Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/versions/v1","name":"cli-test-resource-one3zalj4om4ss574tblbstu2am7vai5yjkzrmaq4u/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:00.5044468Z","changedTime":"2022-09-22T20:57:02.0367706Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:00.6777691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:00.6777691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-22T20:47:19.8053357Z","changedTime":"2022-09-22T20:57:21.594336Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:19.849342Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1","name":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-22T20:47:20.2784858Z","changedTime":"2022-09-22T20:57:21.4116178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:20.3181008Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:20.3181008Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-16T19:47:38.9986082Z","changedTime":"2022-09-16T19:57:40.5769934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.0403934Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/templateSpecs/cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/versions/v1","name":"cli-test-template-spechl4vxfgnebd2mcmqawnwrlefbut4q7ojzvgkv3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-16T19:47:39.5526012Z","changedTime":"2022-09-16T19:57:41.8802618Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:47:39.602894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:47:39.602894Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:49:21.7216864Z","changedTime":"2022-09-16T19:59:21.8265221Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-07T21:01:59.3204909Z","changedTime":"2022-10-07T21:12:00.8800731Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:01:59.6113747Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack/providers/Microsoft.Resources/templateSpecs/one/versions/v1","name":"one/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-07T21:02:01.2402499Z","changedTime":"2022-10-07T21:12:03.262023Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-10-07T21:02:01.40825Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-07T21:02:01.40825Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:11:21.63301Z","changedTime":"2022-11-07T23:21:23.8127192Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:11:21.7788415Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:31.7357036Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two","name":"two","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:14:33.3098706Z","changedTime":"2022-11-07T23:54:38.728185Z","provisioningState":"Succeeded","tags":{"mine":"yes3"},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:33.3559217Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:44:38.4946136Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra/providers/Microsoft.Resources/templateSpecs/two/versions/v1","name":"two/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-11-07T23:34:18.2256663Z","changedTime":"2022-11-07T23:44:20.412737Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:34:18.2946975Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:34:18.2946975Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3/providers/Microsoft.Resources/templateSpecs/one","name":"one","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-11-07T23:50:54.4709507Z","changedTime":"2022-11-08T00:00:58.5607976Z","provisioningState":"Succeeded","systemData":{"createdBy":"majastrz@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:50:54.6019811Z","lastModifiedBy":"majastrz@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:52:34.1653562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.KeyVault/vaults/DanteStacksDFVault","name":"DanteStacksDFVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T18:13:37.5191999Z","changedTime":"2022-10-11T18:23:40.4880057Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:33:30.1457523Z","changedTime":"2022-09-22T00:43:31.3376432Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:33:30.1830493Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:33:30.1830493Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-01T00:26:22.1858393Z","changedTime":"2022-10-01T00:36:23.0100841Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-01T00:26:22.3227938Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-01T00:30:00.0739612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec","name":"TheUltimateTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T21:51:26.2061407Z","changedTime":"2022-09-21T22:01:30.0119624Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:26.6094206Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1/providers/Microsoft.Resources/templateSpecs/TheUltimateTemplateSpec/versions/TheUltimateVersionName","name":"TheUltimateTemplateSpec/TheUltimateVersionName","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T21:51:29.2580265Z","changedTime":"2022-09-21T22:01:32.888137Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:51:29.6346753Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:51:29.6346753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.KeyVault/vaults/dantedkeyvaulttodelete","name":"dantedkeyvaulttodelete","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-11T20:04:50.2067555Z","changedTime":"2022-10-11T20:14:52.6674727Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantetemplatesspec251","name":"dantetemplatesspec251","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-22T00:13:57.0900679Z","changedTime":"2022-09-22T00:23:58.9324599Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-22T00:13:57.2274355Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T00:13:57.2274355Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/dantets","name":"dantets","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-10-11T00:51:40.8537767Z","changedTime":"2022-10-11T01:01:42.1979179Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-11T00:51:40.9887943Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-11T00:51:40.9887943Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-09T21:34:47.5405364Z","changedTime":"2022-11-09T21:44:49.5072069Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:47.6254205Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-09T21:34:48.0500319Z","changedTime":"2022-11-09T21:44:54.0990929Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-09T21:34:48.094176Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T21:34:48.094176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-09-21T16:47:39.3806444Z","changedTime":"2022-09-21T16:57:40.4420517Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:39.76632Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-09-21T16:47:42.3489985Z","changedTime":"2022-09-21T16:57:44.826254Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-21T16:47:42.7210092Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T16:47:42.7210092Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec","name":"ABetterSpec","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-16T20:13:33.8744172Z","changedTime":"2022-11-16T20:23:37.41346Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:33.9246225Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2","name":"ABetterSpec/V2","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-16T20:13:34.3900039Z","changedTime":"2022-11-16T20:23:38.1359722Z","provisioningState":"Succeeded","systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:34.4404807Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-16T20:14:50.7659218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.KeyVault/vaults/rjwTestVault","name":"rjwTestVault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-12-08T19:43:55.8932577Z","changedTime":"2022-12-09T19:00:48.9801054Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/statefulResources/statefulResource","name":"statefulResource","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-28T19:14:43.2256104Z","changedTime":"2022-11-03T20:56:42.830371Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing/providers/Microsoft.KeyVault/vaults/DanteStacksTest24","name":"DanteStacksTest24","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-10-13T21:33:35.5962957Z","changedTime":"2022-10-13T21:43:39.5565685Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-16T19:50:36.390576Z","changedTime":"2022-09-16T20:00:38.1005083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:36.831257Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4","name":"DanteTemplateSpecy6r3n3xp5q4i4/DanteSpecVersiony6r3n3xp5q4i4","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-16T19:50:39.0499617Z","changedTime":"2022-09-16T20:00:41.0241311Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:39.4885723Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:39.4885723Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T20:51:24.9238903Z","changedTime":"2022-09-19T21:04:30.1904069Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:24.9744026Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T20:51:25.9982845Z","changedTime":"2022-09-19T21:01:26.9358074Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T20:51:26.0525162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T20:51:26.0525162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3","name":"resource3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-19T16:04:00.4740533Z","changedTime":"2022-09-19T16:14:01.3120012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:00.5159811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource3/versions/v1","name":"resource3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-19T16:04:01.3984131Z","changedTime":"2022-09-19T16:14:03.0429243Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T16:04:01.4540472Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T16:04:01.4540472Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1","name":"rs1","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T20:54:32.8791434Z","changedTime":"2022-09-21T21:04:44.0997103Z","provisioningState":"Succeeded","systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs1/versions/v1","name":"rs1/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T20:54:45.0021573Z","changedTime":"2022-09-21T21:04:46.280088Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T20:54:45.0310153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T20:54:45.0310153Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3","name":"rs3","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-09-21T21:25:01.7782962Z","changedTime":"2022-09-21T21:35:04.2499061Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:02.2248007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/rs3/versions/v1","name":"rs3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-09-21T21:25:05.1247629Z","changedTime":"2022-09-21T21:35:06.7139538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T21:25:05.5547193Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T21:25:05.5547193Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hp","name":"hp","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-09-16T19:43:22.2274812Z","changedTime":"2022-09-16T19:53:23.8408849Z","provisioningState":"Succeeded","tags":{"foo":"bar"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent","name":"parent","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-10-28T19:58:26.7234964Z","changedTime":"2022-10-28T20:08:28.7633623Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:27.216487Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/1.0","name":"parent/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:58:29.9567636Z","changedTime":"2022-10-28T19:59:57.616735Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:58:30.4039294Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:58:30.4039294Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2/providers/Microsoft.Resources/templateSpecs/parent/versions/2.0","name":"parent/2.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-10-28T19:59:58.9964154Z","changedTime":"2022-10-28T20:10:00.6048724Z","provisioningState":"Succeeded","systemData":{"createdBy":"bmoore@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:59:59.2118665Z","lastModifiedBy":"bmoore@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:59:59.2118665Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec","name":"StacksScenarioTestSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2022-11-21T23:55:54.0178734Z","changedTime":"2022-11-22T00:05:55.8841262Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:54.1663691Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2022-11-21T23:55:56.1800144Z","changedTime":"2022-11-22T00:05:57.8765808Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-21T23:55:56.3070631Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T00:01:00.5381881Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup/providers/Microsoft.KeyVault/vaults/armdemovault","name":"armdemovault","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-22T18:20:29.1893166Z","changedTime":"2022-09-22T18:30:31.8956814Z","provisioningState":"Succeeded","tags":{"foo":"bar"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' headers: cache-control: - no-cache content-length: - - '64781' + - '4342' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:02:38 GMT + - Fri, 14 Apr 2023 17:14:03 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C9F82B70C450416790602026BC6AFB4E Ref B: BL2AA2030107011 Ref C: 2023-01-09T18:02:37Z' status: code: 200 message: OK @@ -1930,9 +2047,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '' @@ -1942,23 +2060,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:02:42 GMT + - Fri, 14 Apr 2023 17:14:05 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: B4B69809F0FF4E30B47D6CD279CAD346 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:02:39Z' + - '14999' status: code: 202 message: Accepted @@ -1976,9 +2090,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -1988,21 +2103,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:02:57 GMT + - Fri, 14 Apr 2023 17:14:20 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5072CFD628CC44B388781D9EAC6BFF07 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:02:58Z' status: code: 202 message: Accepted @@ -2020,9 +2131,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2032,21 +2144,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:03:13 GMT + - Fri, 14 Apr 2023 17:14:35 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1EBF2E95EE464482BA84D12AFC675E7C Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:03:13Z' status: code: 202 message: Accepted @@ -2064,9 +2172,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2076,21 +2185,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:03:29 GMT + - Fri, 14 Apr 2023 17:14:51 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EDCD622AD0BF427B9FE7C6509FF53437 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:03:29Z' status: code: 202 message: Accepted @@ -2108,9 +2213,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2120,21 +2226,17 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:03:45 GMT + - Fri, 14 Apr 2023 17:15:06 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 96D43DC68B26455F822334D8B4E89083 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:03:44Z' status: code: 202 message: Accepted @@ -2152,9 +2254,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2164,19 +2267,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:04:00 GMT + - Fri, 14 Apr 2023 17:15:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A0414D1E85DB419D9C98262A545FFB39 Ref B: BL2AA2030109051 Ref C: 2023-01-09T18:04:00Z' status: code: 200 message: OK @@ -2192,11 +2291,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -2209,26 +2309,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:00 GMT + - Fri, 14 Apr 2023 17:15: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 8351D48F043048B6B0D8CB88C264F8D1 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:00Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", @@ -2247,20 +2344,21 @@ interactions: Connection: - keep-alive Content-Length: - - '738' + - '750' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -2268,36 +2366,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:01.7002962Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:22.8226744Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:01.7002962Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:22.8226744Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc05dd99-06ca-4cd9-9c24-8752efc8405a?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1182' + - '1197' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:02 GMT + - Fri, 14 Apr 2023 17:15:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: CE9654C9F547467A8A548EF1156982B7 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:01Z' + - '1199' status: code: 201 message: Created @@ -2313,81 +2409,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n - \ \"name\": \"59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 18:04:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 46A27419DF0D47EF87CB138F7F223EE2 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc05dd99-06ca-4cd9-9c24-8752efc8405a?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n - \ \"name\": \"59002b4e-7a03-4292-8680-b82cc36579a1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc05dd99-06ca-4cd9-9c24-8752efc8405a\",\r\n + \ \"name\": \"bc05dd99-06ca-4cd9-9c24-8752efc8405a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:49 GMT + - Fri, 14 Apr 2023 17:15:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FACDF51029954FB7998B41F2A414F544 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:49Z' status: code: 200 message: OK @@ -2403,19 +2457,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-02-102a3\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-23-1bf4a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT30.8894307S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.087176S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2423,32 +2478,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:01.7002962Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:22.8226744Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:01.7002962Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:22.8226744Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1626' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:50 GMT + - Fri, 14 Apr 2023 17:15:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: CE616631FD2A4EEBA2FA4DEA74FA6ED0 Ref B: BL2AA2030108039 Ref C: 2023-01-09T18:04:50Z' status: code: 200 message: OK @@ -2466,17 +2523,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-02-102a3\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-23-1bf4a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT30.8894307S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.087176S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2484,32 +2542,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:01.7002962Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:22.8226744Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:01.7002962Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:22.8226744Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1626' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:51 GMT + - Fri, 14 Apr 2023 17:15:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 522FA1C6031041519787E2693E6A6BB0 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:04:51Z' status: code: 200 message: OK @@ -2529,9 +2589,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -2541,21 +2602,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:04:52 GMT + - Fri, 14 Apr 2023 17:15:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: 6EACC4A60E6F4CCA82693A49712C2CF4 Ref B: BL2AA2030109023 Ref C: 2023-01-09T18:04:52Z' + - '14999' status: code: 200 message: OK @@ -2573,9 +2632,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -2587,19 +2647,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:54 GMT + - Fri, 14 Apr 2023 17:15:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 177C135B8F2A41B9BBF1536A88473DF5 Ref B: BL2AA2030110005 Ref C: 2023-01-09T18:04:54Z' status: code: 200 message: OK @@ -2615,12 +2673,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resource-groups - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' @@ -2633,26 +2692,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:55 GMT + - Fri, 14 Apr 2023 17:15:42 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: D4826B3FD28444B883DE17DAF46C5824 Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:04:54Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", @@ -2671,21 +2727,22 @@ interactions: Connection: - keep-alive Content-Length: - - '738' + - '750' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resource-groups - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -2693,36 +2750,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:56.0538795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:42.9654346Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:56.0538795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:42.9654346Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a178df3a-6227-4170-9fbd-25bc9c08ce0d?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3d0ad204-18f2-4025-a34d-7562b1e88bee?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1182' + - '1197' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:04:56 GMT + - Fri, 14 Apr 2023 17:15:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 805C208A42604D5E8CD3998FD266BBEC Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:04:55Z' + - '1199' status: code: 201 message: Created @@ -2738,37 +2793,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resource-groups - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a178df3a-6227-4170-9fbd-25bc9c08ce0d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3d0ad204-18f2-4025-a34d-7562b1e88bee?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a178df3a-6227-4170-9fbd-25bc9c08ce0d\",\r\n - \ \"name\": \"a178df3a-6227-4170-9fbd-25bc9c08ce0d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3d0ad204-18f2-4025-a34d-7562b1e88bee\",\r\n + \ \"name\": \"3d0ad204-18f2-4025-a34d-7562b1e88bee\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:05:14 GMT + - Fri, 14 Apr 2023 17:16:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9C5FFB4ABCBD41EC8C36A90F8779C673 Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:05:13Z' status: code: 200 message: OK @@ -2784,20 +2842,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --delete-resources --delete-resource-groups - --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-56-3ee83\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-43-865d1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT16.2396681S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.3044966S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2805,32 +2864,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:56.0538795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:42.9654346Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:56.0538795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:42.9654346Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1627' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:05:15 GMT + - Fri, 14 Apr 2023 17:16:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D4F94071CA934857BAC60BBB8624F8AE Ref B: BL2AA2030108011 Ref C: 2023-01-09T18:05:14Z' status: code: 200 message: OK @@ -2848,17 +2909,18 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-04-56-3ee83\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-43-865d1\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT16.2396681S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.3044966S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": @@ -2866,32 +2928,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:04:56.0538795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:42.9654346Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:04:56.0538795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:42.9654346Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1627' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:05:15 GMT + - Fri, 14 Apr 2023 17:16:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 449321DC7FF84CDAAF47AEC36A8CD882 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:05:15Z' status: code: 200 message: OK @@ -2911,35 +2975,34 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 18:05:16 GMT + - Fri, 14 Apr 2023 17:16:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - x-msedge-ref: - - 'Ref A: 29988110E59049D5B1EBCD0CCB449044 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:05:16Z' + - '14999' status: code: 202 message: Accepted @@ -2957,79 +3020,37 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '265' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 18:05:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: FA4009FE49DA4543942A8A1C91FA18C1 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:05:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub delete - Connection: - - keep-alive - ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n + \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:06:04 GMT + - Fri, 14 Apr 2023 17:16:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FC55D0189E58456884451338B196C62A Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:06:04Z' status: code: 200 message: OK @@ -3047,34 +3068,37 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n + \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:06:34 GMT + - Fri, 14 Apr 2023 17:16:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FB8C5987ADF044EB809351925AA291B7 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:06:34Z' status: code: 200 message: OK @@ -3092,34 +3116,37 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n + \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:07:05 GMT + - Fri, 14 Apr 2023 17:17:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7E8911AB98124222842B00EE9819ECA0 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:07:05Z' status: code: 200 message: OK @@ -3137,34 +3164,37 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n + \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:07:35 GMT + - Fri, 14 Apr 2023 17:17:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EAF28CE96C9F4EA8A983641E1DB58B23 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:07:35Z' status: code: 200 message: OK @@ -3182,79 +3212,37 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n + \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:08:06 GMT + - Fri, 14 Apr 2023 17:18:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 672EBF9D9311499880E5227F4A76328A Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:08:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub delete - Connection: - - keep-alive - ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n - \ \"name\": \"a216dc94-ad8f-4f5a-b4de-08d515be4403\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 09 Jan 2023 18:08:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 79F00E21AE93491593FA8D622039A032 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:08:36Z' status: code: 200 message: OK @@ -3272,9 +3260,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3286,19 +3275,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:08:37 GMT + - Fri, 14 Apr 2023 17:18:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1551C46FACB54F2390094816FE5205E1 Ref B: BL2AA2030108047 Ref C: 2023-01-09T18:08:37Z' status: code: 200 message: OK @@ -3314,33 +3301,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23568' + - '55218' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:08:38 GMT + - Fri, 14 Apr 2023 17:18:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F74EEBE385F34316BE9DDE240E1C57AC Ref B: BL2AA2030105037 Ref C: 2023-01-09T18:08:37Z' status: code: 200 message: OK @@ -3360,9 +3347,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '' @@ -3372,23 +3360,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:08:42 GMT + - Fri, 14 Apr 2023 17:18:23 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU0V05VUUJQTUtOT0U1WlZDWk9YRHxCRTI4OUY3QTNGRDAwQzRFLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVTM0hXWU5YWEdVWExTQlVXUURCS3w2QjVGMThGOTBFQkYzMEMyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: B7F7B7CAE25A4594A22F36F26AC19579 Ref B: BL2AA2030105023 Ref C: 2023-01-09T18:08:38Z' + - '14999' status: code: 202 message: Accepted @@ -3406,9 +3390,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU0V05VUUJQTUtOT0U1WlZDWk9YRHxCRTI4OUY3QTNGRDAwQzRFLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVTM0hXWU5YWEdVWExTQlVXUURCS3w2QjVGMThGOTBFQkYzMEMyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3418,19 +3403,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:08:58 GMT + - Fri, 14 Apr 2023 17:18:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EE35DA981FD3434F955366BD82BE416A Ref B: BL2AA2030105023 Ref C: 2023-01-09T18:08:57Z' status: code: 200 message: OK @@ -3452,9 +3433,10 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3466,21 +3448,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:08:59 GMT + - Fri, 14 Apr 2023 17:18: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-ratelimit-remaining-subscription-writes: - - '1196' - x-msedge-ref: - - 'Ref A: B6943C408AD349DDBA4FF215915DDCF8 Ref B: BL2AA2030106027 Ref C: 2023-01-09T18:08:58Z' + - '1199' status: code: 201 message: Created @@ -3496,43 +3474,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001' + could not be found.\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '199' + - '283' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:00 GMT + - Fri, 14 Apr 2023 17:18:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 013B83037FCF44EABEB7435F8B854E73 Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:01Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", @@ -3560,20 +3538,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1722' + - '1734' Content-Type: - application/json ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": @@ -3582,36 +3562,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:03.0587063Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:41.0345956Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:09:03.0587063Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:18:41.0345956Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1323' + - '1338' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:02 GMT + - Fri, 14 Apr 2023 17:18:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-msedge-ref: - - 'Ref A: 7B7A71DAF1144196B7082F1FB11DD06D Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:02Z' + - '1199' status: code: 201 message: Created @@ -3627,36 +3605,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n - \ \"name\": \"b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n + \ \"name\": \"b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:20 GMT + - Fri, 14 Apr 2023 17:18:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: FF1E176428784391B5919EFE96BB7F95 Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:21Z' status: code: 200 message: OK @@ -3672,36 +3654,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n - \ \"name\": \"b7d7682e-c49f-4709-932e-0db2cb4fcca4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n + \ \"name\": \"b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:51 GMT + - Fri, 14 Apr 2023 17:19:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 26F2AFC771EA4F8999C34F99919604FA Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:52Z' status: code: 200 message: OK @@ -3717,19 +3703,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location -g --template-file --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-09-03-5d0b2\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-18-41-7953d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT26.8363136S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT30.2933345S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n @@ -3740,32 +3728,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:03.0587063Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:41.0345956Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:09:03.0587063Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:18:41.0345956Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2078' + - '2093' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:52 GMT + - Fri, 14 Apr 2023 17:19:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 5DCEEF7D0CBC40BAB31113FF379F2F3A Ref B: BL2AA2030105029 Ref C: 2023-01-09T18:09:53Z' status: code: 200 message: OK @@ -3783,54 +3773,117 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"12a98b7b-dd08-49c0-94b6-4b1b48909d02"},{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"}],"resourceTypes":[{"resourceType":"tagnamespaces","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagnamespaces/tagnames","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces/tags","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2021-09-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - US","East US 2","West Central US","West US","West US 2","Central US"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - US","East US 2","East US 2 EUAP","West Central US","West US","West US 2","Central - US"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-05-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Qatar Central","Sweden Central","UAE + North","West Central US","West Europe","West US 2","West US","West US 3","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland + Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["East - Asia","Southeast Asia","East US","East US 2","West US","West US 2","West US - 3","Central US","North Central US","South Central US","North Europe","West + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East"],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2018-05-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deployments","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"SupportsTags, - SupportsExtension"},{"resourceType":"deployments/operations","locations":["East - US","East US 2","East US 2 EUAP"],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentStatuses","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-08-01","2018-05-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2022-03-01-preview"],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Japan East","Japan West","Korea + Central","Korea South","North Europe","Norway East","Poland Central","Qatar + Central","Sweden Central","UAE North","West Central US","West Europe","West + US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '7275' + - '20450' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:53 GMT + - Fri, 14 Apr 2023 17:19:29 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 202DD2C4F63343DF8FC7B06B8E51D141 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:09:54Z' status: code: 200 message: OK @@ -3848,16 +3901,17 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:08.5324908Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:44.5906037Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-01-09T18:09:08.5324908Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-04-14T17:18:44.5906037Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000005\"\r\n}" headers: @@ -3868,19 +3922,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:54 GMT + - Fri, 14 Apr 2023 17:19:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F44A5EB2054C4FF4B2E1AFF1D59DCFD9 Ref B: BL2AA2030110019 Ref C: 2023-01-09T18:09:54Z' status: code: 200 message: OK @@ -3898,9 +3954,10 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' @@ -3912,19 +3969,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:54 GMT + - Fri, 14 Apr 2023 17:19:30 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: B963F615368F4870AA08DD5088171902 Ref B: BL2AA2030110033 Ref C: 2023-01-09T18:09:55Z' status: code: 200 message: OK @@ -3942,17 +3997,18 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-01-09-18-09-03-5d0b2\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-18-41-7953d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT26.8363136S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT30.2933345S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n @@ -3963,32 +4019,34 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:09:03.0587063Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:41.0345956Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:09:03.0587063Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:18:41.0345956Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2078' + - '2093' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:09:55 GMT + - Fri, 14 Apr 2023 17:19:32 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C733D8187D6540A0B1B7E9B22DD40566 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:09:55Z' status: code: 200 message: OK @@ -4008,35 +4066,34 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 09 Jan 2023 18:09:56 GMT + - Fri, 14 Apr 2023 17:19:32 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - x-msedge-ref: - - 'Ref A: AFAEBE5B03A14581B96C826B693EF7B6 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:09:56Z' + - '14999' status: code: 202 message: Accepted @@ -4054,34 +4111,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:10:14 GMT + - Fri, 14 Apr 2023 17:19:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C96725228ABC4C05A0B3E961AF788B97 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:10:14Z' status: code: 200 message: OK @@ -4099,34 +4159,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:10:44 GMT + - Fri, 14 Apr 2023 17:20:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F8E63ADC38DA4B3398A5FB85DD7912F1 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:10:44Z' status: code: 200 message: OK @@ -4144,34 +4207,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:11:14 GMT + - Fri, 14 Apr 2023 17:20:49 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AEBA7F2D28774389A7D3C2780BC69A0F Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:11:15Z' status: code: 200 message: OK @@ -4189,34 +4255,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:11:45 GMT + - Fri, 14 Apr 2023 17:21:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9D7E062E79F649D79482A010CADAD8C3 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:11:45Z' status: code: 200 message: OK @@ -4234,34 +4303,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:12:15 GMT + - Fri, 14 Apr 2023 17:21:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7D4EFC5D58164A32A406C3D2C3B7D6F0 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:12:15Z' status: code: 200 message: OK @@ -4279,34 +4351,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:12:45 GMT + - Fri, 14 Apr 2023 17:22:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9376EE0189794213A61020EC7B8C45C3 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:12:46Z' status: code: 200 message: OK @@ -4324,34 +4399,37 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n + \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '265' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:13:16 GMT + - Fri, 14 Apr 2023 17:22:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 8884982C0DB34C44844A2E5992C82838 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:13:16Z' status: code: 200 message: OK @@ -4359,44 +4437,42 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - resource list Connection: - keep-alive ParameterSetName: - - --name --delete-all --yes + - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n - \ \"name\": \"c2a02de3-6948-44e4-a424-b400cd868c9f\",\r\n \"status\": \"succeeded\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '288' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:13:46 GMT + - Fri, 14 Apr 2023 17:22:52 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 22B876215C4D4F74913135BCD2055F10 Ref B: BL2AA2030109003 Ref C: 2023-01-09T18:13:47Z' status: code: 200 message: OK @@ -4414,33 +4490,32 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000006%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVRNc%2bI4EP0vnPfgD5xdpmoO6w8Fa2I5%2bmjJ%2bGYQE7CNkwqEGKbmv2%2bLIbOkam97UMmy1K9fv9fSj8mwHg8P26HbT778mKyb%2feFtH0y%2bTNYn%2blZXG08ZcmoCfcrb560JD6t8EEdcv1VJfofjFbo%2bK4dox7xpxHUcQLafLsA%2bLEEfOJBUAg0flddCz%2b8KyQC64q5Qi1ZqZso2byXox7Jd%2bEzBmPskFe3zNPdqzs8vcR30ZKlJzKFPWEZimezfETOuvc2A87PcHXCPxTX%2bc7M0ZGRhfHZ5udH4jxDkREogczG3B%2bshBuSew5BAtITn6XKwv%2fE55mp81nKPUghqFz%2fIe7dPY97W76t7MjeGvN7gp5i3Ws%2frsUFs7pHeYeNcLrQNZDDD2A9%2bOlYehAa51QMJ8RzlrXA5KFd5sDSz8ZYfAAl1KhiHUa0ctrF57eadTRozpgL3OexfVx3%2bu%2brj%2bKOSFWJWPLzUf%2bVPBh6%2b7IV38B2%2fq34Jfj9ayLGeflOivjf8H5eVLuV585n%2fvC9V18fLkIkL7w%2f%2bMI5NRs43%2fBOss4ZO11h%2fxM0Bz4uMn5xfffYtsFsJAvm7%2bnW1djVc6xMB6u29nxxPXvWOI2rQC6w7lp52a8QlscjIEUDHi05vbuPVvU2hYwP63uI%2b5qeu5jOvLj4OCjUSHvm2gixc%2bj1qkTk%2fKd9tKOqbqV9cBjwTowcZh5eU6zxUv3z98JeutVUq8%2f%2fVR9FYZjqRGGewZwD1xBjnc2xDdhT3elh6OuU%2bSWpjkwvezl72lbFUmk3MMHehRCwqSy89d9HAonaacn8zLNvFbf8XyHeKsTG2%2bpFrjMOcbqAPuQCBd8RGtee8uviFa9cTNtGBHQT2pcjEHjEK5EisR%2beyZ0nduny%2f78%2fI4enEzUworEsD%2bmdYxnXPhLsTO%2bdPHxvwMQa97BAf%2fZPG6qJjRwgtele8Il4t5noA5c3wzdhXCT0tTDTU%2bn1bDvim7PyXZY%2ffOIpUpwVAVKaMMNWNeO9W%2bXZ0ZzZr8vkMV33Gzk%2bRAI3vkj%2brJJ1N%2fpg0b%2fvDa9NvG%2fea%2fc%2bnzBiImoq5tvvPp4xJRsFf3BVbRgX8dcdawKcsw9Zj92X71Io%2bTsuOSHamD9Zz8veDzJ6OpqKuveIGSPuIMjxgaasdeasDLKV9%2bRMlOjQmct84%2fvb5mZBSPZ2FgqiAPLjKeFhUm89nIItEupqWoAlizL5rb%2fudf%2f06%2bfnzHw%3d%3d"}' headers: cache-control: - no-cache content-length: - - '288' + - '1635' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:13:47 GMT + - Fri, 14 Apr 2023 17:22:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: BA706407D1DB41CA9AB725447D3C7B6A Ref B: BL2AA2030107011 Ref C: 2023-01-09T18:13:47Z' status: code: 200 message: OK @@ -4448,7 +4523,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -4458,9 +4533,10 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVRNc%2BI4EP0vnPfgD5xdpmoO6w8Fa2I5%2BmjJ%2BGYQE7CNkwqEGKbmv2%2BLIbOkam97UMmy1K9fv9fSj8mwHg8P26HbT778mKyb/eFtH0y%2BTNYn%2BlZXG08ZcmoCfcrb560JD6t8EEdcv1VJfofjFbo%2BK4dox7xpxHUcQLafLsA%2BLEEfOJBUAg0flddCz%2B8KyQC64q5Qi1ZqZso2byXox7Jd%2BEzBmPskFe3zNPdqzs8vcR30ZKlJzKFPWEZimezfETOuvc2A87PcHXCPxTX%2Bc7M0ZGRhfHZ5udH4jxDkREogczG3B%2BshBuSew5BAtITn6XKwv/E55mp81nKPUghqFz/Ie7dPY97W76t7MjeGvN7gp5i3Ws/rsUFs7pHeYeNcLrQNZDDD2A9%2BOlYehAa51QMJ8RzlrXA5KFd5sDSz8ZYfAAl1KhiHUa0ctrF57eadTRozpgL3OexfVx3%2Bu%2Brj%2BKOSFWJWPLzUf%2BVPBh6%2B7IV38B2/q34Jfj9ayLGeflOivjf8H5eVLuV585n/vC9V18fLkIkL7w/%2BMI5NRs43/BOss4ZO11h/xM0Bz4uMn5xfffYtsFsJAvm7%2BnW1djVc6xMB6u29nxxPXvWOI2rQC6w7lp52a8QlscjIEUDHi05vbuPVvU2hYwP63uI%2B5qeu5jOvLj4OCjUSHvm2gixc%2Bj1qkTk/Kd9tKOqbqV9cBjwTowcZh5eU6zxUv3z98JeutVUq8/VR9FYZjqRGGewZwD1xBjnc2xDdhT3elh6OuU%2BSWpjkwvezl72lbFUmk3MMHehRCwqSy89d9HAonaacn8zLNvFbf8XyHeKsTG2%2BpFrjMOcbqAPuQCBd8RGtee8uviFa9cTNtGBHQT2pcjEHjEK5EisR%2BeyZ0nduny/78/I4enEzUworEsD%2BmdYxnXPhLsTO%2BdPHxvwMQa97BAf/ZPG6qJjRwgtele8Il4t5noA5c3wzdhXCT0tTDTU%2Bn1bDvim7PyXZY/fOIpUpwVAVKaMMNWNeO9W%2BXZ0ZzZr8vkMV33Gzk%2BRAI3vkj%2BrJJ1N/pg0b/vDa9NvG/ea/c%2BnzBiImoq5tvvPp4xJRsFf3BVbRgX8dcdawKcsw9Zj92X71Io%2BTsuOSHamD9Zz8veDzJ6OpqKuveIGSPuIMjxgaasdeasDLKV9%2BRMlOjQmct84/vb5mZBSPZ2FgqiAPLjKeFhUm89nIItEupqWoAlizL5rb/udf/06%2BfnzHw%3D%3D response: body: string: '{"value":[]}' @@ -4472,19 +4548,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:13:48 GMT + - Fri, 14 Apr 2023 17:22:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: EFDF03A77234447AA07247D7FB06890C Ref B: BL2AA2030107011 Ref C: 2023-01-09T18:13:48Z' status: code: 200 message: OK @@ -4500,33 +4574,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2","name":"my-stackrg2","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DeploymentScriptsRunnersStaticResources-eastus2","name":"DeploymentScriptsRunnersStaticResources-eastus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2","name":"dantedtestrg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1","name":"dantedtestrg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","name":"cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-09-16T19:47:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","name":"cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGuglfab7hvugei","name":"DanteDTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1","name":"rg1","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3","name":"rg3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","name":"cli-test-resource-oneoxdogyemduxnicdnpasboxxehj3xkwirs532vly","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","name":"cli-test-resource-twoovrmddjn3kqbcy3eveejknvwm5cvp6oooexsdcq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","name":"cli-test-resource-threemflcnrp5h2woxk7x5dfjmuxjqqhvwe6jh24br","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","name":"cli-test-cli_test_deployment_stacks-twodag5h25lik2j7wcvhhdts","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","name":"cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","name":"cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","name":"cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","name":"cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","name":"cli-test-cli_test_deployment_stacks-twor3pgvg5ytczt53ykxnnwq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","name":"cli-test-resource-one7h777xrubanjjumpm6qyv4ffxgepntyzxcunfyp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","name":"cli-test-resource-onejay5ygeztumhdrwrnai36vay4omk3x4qtzmiqfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","name":"cli-test-resource-onedow3se262un5kjedqyqegqggdkzso67brnp42lp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","name":"cli-test-resource-onefrueqoblj7zoosobmsbnblogllhyw54ejugl5sw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","name":"cli-test-resource-twokcip7oyo6re5otlyyetvhy6nvbp4746abmaq435","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","name":"cli-test-resource-three5nncix2dbada3eecfr3witrvbp7imsmbftrsg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg","name":"delete_all_rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","name":"cli-test-cli_test_deployment_stacks-twonfnbmfmbhmgdxq4th5cca","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","name":"cli-test-cli_test_deployment_stacks-twouya52nzgvotamiob44nbj","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","name":"cli-test-cli_test_deployment_stacks-two5uihrzn2e6w4vjoujz2dr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","name":"cli-test-cli_test_deployment_stacks-twotqwmfbqb3dtjyqrca32lb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","name":"cli-test-cli_test_deployment_stacks-twotqzzmv5bb4hqd3u2i7m46","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","name":"cli-test-cli_test_deployment_stacks-twoe2gdwsvtohcximqbacitk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","name":"cli-test-cli_test_deployment_stacks-two4sdufgfjbyk46w7dqlhtz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","name":"cli-test-cli_test_deployment_stacks-twokbqonyvh5su5la2dk7qne","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","name":"cli-test-cli_test_deployment_stacks-twotxjyzloxtb6gbkxorrgqp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","name":"cli-test-resource-oner4cro3bh6drqxspmtrsum5ot5kzpssvmv7qfi5m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","name":"cli-test-cli_test_deployment_stacks-twoc3asukmklifbap4ya6cu7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","name":"cli-test-resource-one4klmb5r7vykpzvyumkdjjdhzph7ui65uj4gjimt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","name":"cli-test-cli_test_deployment_stacks-twoy7b4szdbpifltnxf22dxf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","name":"cli-test-resource-onedyp4op3ybf4uq6ts4u4wyqgzrbircz5eb4ramdm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","name":"cli-test-cli_test_deployment_stacks-twobtx62sv7im6aic2hl3bda","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","name":"cli-test-resource-one6k3kud3pkls3j3mdmxiooei5apwxzst5yg7qanr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","name":"cli-test-cli_test_deployment_stacks-two3r4b7myqshkgqtegax6ff","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","name":"cli-test-resource-onehhzzxwxerox2av276cqjkpaz2bit2qbhibx5bud","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","name":"cli-test-cli_test_deployment_stacks-two72nzd4e5jtbmifaj5kqlm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","name":"cli-test-resource-one2oxdsip3kipedtig5jlf4iu3do745nvjehxiium","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","name":"cli-test-resource-one6pg5ng42e6ydrpr6rwup6vxdrketvevtrkhb4oy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","name":"cli-test-resource-twovk7vhmqsn4g4ykt72zxf2wbjj2nor6tofun2y5r","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","name":"cli-test-resource-threetbapykbpa5y2n6wogtkk4mruvnjzv2fuetkld","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","name":"cli-test-resource-one6acvxbjb3q35ol7vxaloq7ol35zxlxgzoa2c5va","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","name":"cli-test-resource-twousa54ctize3x4lwzs2p5ei7kf4rtt4z3ybxtmcu","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei","name":"DanteDTestRGOnlyuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack","name":"majastrz-stack","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql-dantetest","name":"shared-sql-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web-dantetest","name":"shared-web-dantetest","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","name":"cli-test-resource-oneo5s7agiqozionocy4ajh74vipuw4za55abpzmuy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","name":"cli-test-resource-oneoqnosii4sts2kcyw7roucyvst2rumhhs2exmarw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","name":"cli-test-resource-twogxrsdotfcy53edxe6qygmrryi37elkts73qthqk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","name":"rjwSink","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing2","name":"dante-testing2","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2","name":"majastrz-stack2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack2-extra","name":"majastrz-stack2-extra","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/majastrz-stack3","name":"majastrz-stack3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei","name":"StacksTestRGuglfab7hvugei","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","name":"cli-test-resource-oneex4zux3fns6nmfv5cj37hz52kxbysgzlyvcaxuo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","name":"cli-test-resource-twol5zxjzug6cmtrf2mbuwkgp45jslhhxmbhntrjyh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","name":"cli-test-resource-two2k54r3odljbzbx2pcjydq62kr4kpgu4vmqqpvkv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","name":"cli-test-resource-threeunxffou5lmf475ivdqghy4lyn3nb32b7a2j5l","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-sql","name":"shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shared-web","name":"shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UnitTest-eus2euap-6-221012T232253","name":"UnitTest-eus2euap-6-221012T232253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"RunnerCompleted":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web","name":"danted-shared-web","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql","name":"danted-shared-sql","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bmoore-eastus2","name":"bmoore-eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gokulRG","name":"gokulRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1","name":"GokulLocTest1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2","name":"GokulLocTest2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","name":"cli-test-resource-threee3tl6e43kiw7j73lbxxx23nvuyufftjb4csvq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/.rjwStartWithPeriod","name":".rjwStartWithPeriod","type":"Microsoft.Resources/resourceGroups","location":"northeurope","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '23604' + - '55254' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:13:49 GMT + - Fri, 14 Apr 2023 17:22:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1EB624F8440547F59E634BBA71478184 Ref B: BL2AA2030110011 Ref C: 2023-01-09T18:13:49Z' status: code: 200 message: OK @@ -4546,9 +4620,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: string: '' @@ -4558,199 +4633,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:13:52 GMT + - Fri, 14 Apr 2023 17:22:55 GMT expires: - '-1' location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - x-msedge-ref: - - 'Ref A: C5C89926EC164554995EB5EEC88A6209 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:13:49Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 09 Jan 2023 18:14:07 GMT - expires: - - '-1' - location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3287A7FE5B944E78A280CF90DB55E107 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:07Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 09 Jan 2023 18:14:23 GMT - expires: - - '-1' - location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 50DB3D8697084695A5315319187429B0 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:23Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 09 Jan 2023 18:14:38 GMT - expires: - - '-1' - location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3FD4D65E7CB04196BCAB40E6251DCAD4 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:38Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 09 Jan 2023 18:14:53 GMT - expires: - - '-1' - location: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C022D4496C2A4DF697AE9A227F54A3F7 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:14:53Z' + - '14999' status: code: 202 message: Accepted @@ -4768,9 +4663,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.2.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxEMjlERTYzQTQzQURBNUYyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4780,19 +4676,15 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:15:09 GMT + - Fri, 14 Apr 2023 17:23:11 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 28D6DE73E54B478882004D80E20668C8 Ref B: BL2AA2030105011 Ref C: 2023-01-09T18:15:09Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml index f4d40827bc9..a21f60ee960 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_management_group.yaml @@ -11,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -28,21 +30,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:29 GMT + - Mon, 17 Apr 2023 18:10: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: F4F664DDBA4044BBB4681214817D7F82 Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:30Z' status: code: 404 message: Not Found @@ -70,11 +68,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -88,35 +88,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T20:34:31.6588288Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"2023-04-17T18:10:15.5007801Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T18:10:15.5007801Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ebd900ed-f9de-46fd-9d8f-741ff16bddd7?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8af7d43-96ec-4ff0-9e71-6e998d404f0d?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1213' + - '1220' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:33 GMT + - Mon, 17 Apr 2023 18:10:16 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - '1199' - x-msedge-ref: - - 'Ref A: ECB316FEE7D845E4BA70CF7F64E1E0EA Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:30Z' status: code: 201 message: Created @@ -132,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ebd900ed-f9de-46fd-9d8f-741ff16bddd7?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8af7d43-96ec-4ff0-9e71-6e998d404f0d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/ebd900ed-f9de-46fd-9d8f-741ff16bddd7\",\r\n - \ \"name\": \"ebd900ed-f9de-46fd-9d8f-741ff16bddd7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8af7d43-96ec-4ff0-9e71-6e998d404f0d\",\r\n + \ \"name\": \"b8af7d43-96ec-4ff0-9e71-6e998d404f0d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:50 GMT + - Mon, 17 Apr 2023 18:10:33 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0F199E143CB240ABAE9E2B5ED5418821 Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:51Z' status: code: 200 message: OK @@ -177,19 +179,21 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-34-32-dcd26\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-18-10-16-b8cf5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT14.6205222S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7495815S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,32 +203,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:34:31.6588288Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T18:10:15.5007801Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T18:10:15.5007801Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1606' + - '1612' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:51 GMT + - Mon, 17 Apr 2023 18:10:33 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 7BDAF9DCB7F146EAB122742030B5EDBB Ref B: BL2AA2030105017 Ref C: 2023-01-09T20:34:51Z' status: code: 200 message: OK @@ -244,9 +250,10 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -268,21 +275,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:53 GMT + - Mon, 17 Apr 2023 18:10:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - '1199' - x-msedge-ref: - - 'Ref A: EDC3B26D7C2445DD914DD89D74A756F9 Ref B: BL2AA2030109039 Ref C: 2023-01-09T20:34:52Z' status: code: 200 message: OK @@ -302,9 +311,10 @@ interactions: ParameterSetName: - --id --management-group-id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -326,21 +336,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:55 GMT + - Mon, 17 Apr 2023 18:10:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' - x-msedge-ref: - - 'Ref A: EFA58052F80C49E48A627EA90F03DD9D Ref B: BL2AA2030107003 Ref C: 2023-01-09T20:34:54Z' + - '1199' status: code: 200 message: OK @@ -358,17 +370,18 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-34-32-dcd26\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-18-10-16-b8cf5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT14.6205222S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7495815S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -378,32 +391,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:34:31.6588288Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T18:10:15.5007801Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T18:10:15.5007801Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1606' + - '1612' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:56 GMT + - Mon, 17 Apr 2023 18:10:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 58695137BF3446C092F34C130652D2AD Ref B: BL2AA2030108023 Ref C: 2023-01-09T20:34:55Z' status: code: 200 message: OK @@ -421,17 +436,18 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-34-32-dcd26\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-18-10-16-b8cf5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT14.6205222S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7495815S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -441,32 +457,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:34:31.6588288Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T18:10:15.5007801Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:34:31.6588288Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T18:10:15.5007801Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1606' + - '1612' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:34:56 GMT + - Mon, 17 Apr 2023 18:10:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 53A70D8B28CA4CC6BAF565FE2895F677 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:34:57Z' status: code: 200 message: OK @@ -486,9 +504,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -498,21 +517,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:34:57 GMT + - Mon, 17 Apr 2023 18:10:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14996' - x-msedge-ref: - - 'Ref A: 1D507154DBCE468EB6A67A3D797837CD Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:34:57Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml index f62d0ec4de9..a950ab8b5f5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_resource_group.yaml @@ -11,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,19 +31,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:07 GMT + - Mon, 17 Apr 2023 16:09:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D66995EDE27F41E9867DE3FABD4823E5 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:07Z' status: code: 404 message: Not Found @@ -69,11 +69,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,14 +87,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T16:09:54.7622793Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T16:09:54.7622793Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d3911662-bcfe-44d4-8d75-4f0eba2d0839?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c46c2de5-87ad-41d5-8b48-fcf86bff1c38?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,21 +102,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:08 GMT + - Mon, 17 Apr 2023 16:09:55 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: 821B83BC9C424297801B637732927867 Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:08Z' + - '1199' status: code: 201 message: Created @@ -130,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d3911662-bcfe-44d4-8d75-4f0eba2d0839?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c46c2de5-87ad-41d5-8b48-fcf86bff1c38?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/d3911662-bcfe-44d4-8d75-4f0eba2d0839\",\r\n - \ \"name\": \"d3911662-bcfe-44d4-8d75-4f0eba2d0839\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c46c2de5-87ad-41d5-8b48-fcf86bff1c38\",\r\n + \ \"name\": \"c46c2de5-87ad-41d5-8b48-fcf86bff1c38\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:26 GMT + - Mon, 17 Apr 2023 16:10:11 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 641B253EB57B414E8B9D9A192AD3C2ED Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:26Z' status: code: 200 message: OK @@ -175,17 +179,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-20-12-09-e0e41\",\r\n - \ \"duration\": \"PT12.7157338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-16-09-54-70002\",\r\n + \ \"duration\": \"PT4.8422634S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -195,32 +201,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T16:09:54.7622793Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T16:09:54.7622793Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1591' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:26 GMT + - Mon, 17 Apr 2023 16:10:12 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 0E38DA59EB584D92B76ACDFE7529EDED Ref B: BL2AA2030105053 Ref C: 2023-01-09T20:12:27Z' status: code: 200 message: OK @@ -240,9 +248,10 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -264,21 +273,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:29 GMT + - Mon, 17 Apr 2023 16:10:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 7B345C3C26F04A8494489281726289C7 Ref B: BL2AA2030109019 Ref C: 2023-01-09T20:12:28Z' status: code: 200 message: OK @@ -298,9 +309,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -322,21 +334,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:33 GMT + - Mon, 17 Apr 2023 16:10:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 38E659CB0D1C40339212A5CFF0C0EAB9 Ref B: BL2AA2030106011 Ref C: 2023-01-09T20:12:31Z' status: code: 200 message: OK @@ -354,15 +368,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-20-12-09-e0e41\",\r\n - \ \"duration\": \"PT12.7157338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-16-09-54-70002\",\r\n + \ \"duration\": \"PT4.8422634S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -372,32 +387,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T16:09:54.7622793Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T16:09:54.7622793Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1591' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:33 GMT + - Mon, 17 Apr 2023 16:10:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 869FB1FCA4AB4BFEB6F55E1EC8210060 Ref B: BL2AA2030108039 Ref C: 2023-01-09T20:12:33Z' status: code: 200 message: OK @@ -415,15 +432,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-20-12-09-e0e41\",\r\n - \ \"duration\": \"PT12.7157338S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-16-09-54-70002\",\r\n + \ \"duration\": \"PT4.8422634S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -433,32 +451,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:12:09.2801527Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T16:09:54.7622793Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:12:09.2801527Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T16:09:54.7622793Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1591' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:12:34 GMT + - Mon, 17 Apr 2023 16:10:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 03F26666458C4051B72163AB1EBD9D47 Ref B: BL2AA2030107005 Ref C: 2023-01-09T20:12:34Z' status: code: 200 message: OK @@ -478,9 +498,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -490,21 +511,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:12:35 GMT + - Mon, 17 Apr 2023 16:10:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' - x-msedge-ref: - - 'Ref A: 8E053CBF91CB4BC7B6C509DFFFADA84A Ref B: BL2AA2030107005 Ref C: 2023-01-09T20:12:35Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml index 768dc462d3d..05d354e7761 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_export_template_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -28,26 +29,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:44:58 GMT + - Mon, 17 Apr 2023 15:12: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 4CFAF4B0E3654A89B1B89F5D605E3A28 Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:44:57Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -66,20 +64,21 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -88,35 +87,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T18:45:00.4460255Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n + \"2023-04-17T15:12:05.4891076Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:12:05.4891076Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a8f564e1-83a7-4881-bd88-4d186644184b?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/037b0199-752c-4e1c-bfe4-ddefd14c70f9?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1201' + - '1216' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:00 GMT + - Mon, 17 Apr 2023 15:12:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-msedge-ref: - - 'Ref A: D4A70544FFB84A39B24985B1E13B9BA3 Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:44:59Z' + - '1199' status: code: 201 message: Created @@ -132,36 +129,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a8f564e1-83a7-4881-bd88-4d186644184b?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/037b0199-752c-4e1c-bfe4-ddefd14c70f9?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/a8f564e1-83a7-4881-bd88-4d186644184b\",\r\n - \ \"name\": \"a8f564e1-83a7-4881-bd88-4d186644184b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/037b0199-752c-4e1c-bfe4-ddefd14c70f9\",\r\n + \ \"name\": \"037b0199-752c-4e1c-bfe4-ddefd14c70f9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:18 GMT + - Mon, 17 Apr 2023 15:12:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 456F51E1720A4938B6C8BF79E2681C4C Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:45:18Z' status: code: 200 message: OK @@ -177,19 +177,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-18-45-01-36158\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-15-12-06-82c39\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.6128869S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9367919S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,32 +200,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:45:00.4460255Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:12:05.4891076Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:12:05.4891076Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1608' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:18 GMT + - Mon, 17 Apr 2023 15:12:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F6458702E8694C219C443D884EFDA83E Ref B: BL2AA2030107023 Ref C: 2023-01-09T18:45:18Z' status: code: 200 message: OK @@ -244,9 +247,10 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -268,21 +272,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:21 GMT + - Mon, 17 Apr 2023 15:12:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: D866A712D96940E48A1C8DFD80737669 Ref B: BL2AA2030106019 Ref C: 2023-01-09T18:45:19Z' status: code: 200 message: OK @@ -302,9 +308,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001/exportTemplate?api-version=2022-08-01-preview response: body: string: "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n @@ -326,21 +333,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:22 GMT + - Mon, 17 Apr 2023 15:12:25 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-msedge-ref: - - 'Ref A: 2F35EC67378D45EB9D1EC48916CE5C8E Ref B: BL2AA2030109029 Ref C: 2023-01-09T18:45:21Z' status: code: 200 message: OK @@ -358,17 +367,18 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-18-45-01-36158\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-15-12-06-82c39\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.6128869S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9367919S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -378,32 +388,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:45:00.4460255Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:12:05.4891076Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:12:05.4891076Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1608' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:22 GMT + - Mon, 17 Apr 2023 15:12:26 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 99D97B210734465683EE58BBBE6C7FFA Ref B: BL2AA2030110037 Ref C: 2023-01-09T18:45:22Z' status: code: 200 message: OK @@ -421,17 +433,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-18-45-01-36158\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-15-12-06-82c39\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT9.6128869S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9367919S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -441,32 +454,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T18:45:00.4460255Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:12:05.4891076Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T18:45:00.4460255Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:12:05.4891076Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1593' + - '1608' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 18:45:23 GMT + - Mon, 17 Apr 2023 15:12:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F5CA37EB0CFD4C92AFE3E196C73F5CF9 Ref B: BL2AA2030106033 Ref C: 2023-01-09T18:45:23Z' status: code: 200 message: OK @@ -486,9 +501,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -498,21 +514,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 18:45:25 GMT + - Mon, 17 Apr 2023 15:12:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: 9D5C5A60706E4DDCB2A3456D5935C4D1 Ref B: BL2AA2030106033 Ref C: 2023-01-09T18:45:24Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_management_group.yaml index 643f855bfef..17e9ae614de 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_management_group.yaml @@ -11,12 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-list-deployment-stack-subscription000001'' @@ -29,21 +30,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:45:21 GMT + - Thu, 13 Apr 2023 16:36: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: CBB9A6C3EE044E09A812D16B73FF42ED Ref B: BL2AA2030105035 Ref C: 2022-10-05T20:45:21Z' status: code: 404 message: Not Found @@ -55,7 +52,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -66,57 +64,57 @@ interactions: Connection: - keep-alive Content-Length: - - '775' + - '822' Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"parameters\": - {\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-10-05T20:45:23.038492Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:45:23.038492Z\"\r\n },\r\n - \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-04-13T16:36:13.3990718Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-13T16:36:13.3990718Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/12d352dc-94ad-49f4-9fe6-ae5f4135bc50?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c85def79-95af-4127-a6f2-0d8aa6d48c84?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1124' + - '1222' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:45:23 GMT + - Thu, 13 Apr 2023 16:36:13 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 62ABE007EA9746549E18B713246899AA Ref B: BL2AA2030105035 Ref C: 2022-10-05T20:45:22Z' + - '1199' status: code: 201 message: Created @@ -132,37 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/12d352dc-94ad-49f4-9fe6-ae5f4135bc50?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c85def79-95af-4127-a6f2-0d8aa6d48c84?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/12d352dc-94ad-49f4-9fe6-ae5f4135bc50\",\r\n - \ \"name\": \"12d352dc-94ad-49f4-9fe6-ae5f4135bc50\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c85def79-95af-4127-a6f2-0d8aa6d48c84\",\r\n + \ \"name\": \"c85def79-95af-4127-a6f2-0d8aa6d48c84\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:45:41 GMT + - Thu, 13 Apr 2023 16:36:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4759DCA03CEC47FA8EBD9FF8601F5AD7 Ref B: BL2AA2030105035 Ref C: 2022-10-05T20:45:41Z' status: code: 200 message: OK @@ -178,54 +179,58 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file --parameters --yes + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-10-05-20-45-23-77958\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-10-05-20-45-23-77958\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-04-13-16-36-13-41d58\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.0553408S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:45:23.038492Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:45:23.038492Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \ \"duration\": \"PT6.7924854S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-13T16:36:13.3990718Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-13T16:36:13.3990718Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1735' + - '1614' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:45:42 GMT + - Thu, 13 Apr 2023 16:36:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 1A4B00BCB41840B59D184E2D294FE9FE Ref B: BL2AA2030105035 Ref C: 2022-10-05T20:45:42Z' status: code: 200 message: OK @@ -243,80 +248,71 @@ interactions: ParameterSetName: - --management-group-id User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: '{"value":[{"location":"westcentralus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/OBOTestStackGokul/snapshots/2022-09-13-19-44-18-f00d6","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/OBOTestStackGokul-2022-09-13-19-44-18-f00d6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT1M8.6222474S","outputs":{"rgName":{"type":"String","value":"my-stackrg2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefuls1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefuls2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-09-13T19:44:17.4342649Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-13T19:44:17.4342649Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/OBOTestStackGokul","type":"Microsoft.Resources/deploymentStacks","name":"OBOTestStackGokul"},{"location":"westcentralus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/OBOTestStackGokul2/snapshots/2022-09-13-19-57-06-c1f64","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/OBOTestStackGokul2-2022-09-13-19-57-06-c1f64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT24.8392997S","outputs":{"rgName":{"type":"String","value":"my-stackrg2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefulResourceDupes1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefulResourceDupes2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-09-13T19:57:05.7344335Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-13T19:57:05.7344335Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/OBOTestStackGokul2","type":"Microsoft.Resources/deploymentStacks","name":"OBOTestStackGokul2"},{"location":"westcentralus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/OBOTestStackGokul3/snapshots/2022-09-19-17-17-04-8210c","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/OBOTestStackGokul3-2022-09-19-17-17-04-8210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT38.2000378S","outputs":{"rgName":{"type":"String","value":"my-stackrg2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefulResourceDupes1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefulResourceDupes2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-09-19T17:17:03.8931356Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-19T17:17:03.8931356Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/OBOTestStackGokul3","type":"Microsoft.Resources/deploymentStacks","name":"OBOTestStackGokul3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteMGStack-2022-09-30-22-21-31-bde26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/","parameters":{"subModuleName":{"value":"dantedstackssubmodule"},"nestedSubId":{"value":"3f2a1503-8c47-4762-ae5d-9f9a2a5c6967"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyuglfab7hvugei"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/DanteMGStack/snapshots/2022-09-30-22-21-31-bde26'' - for more details. Correlation id: ''76f2f0a8-cf0b-4289-90ac-f69753de8985''","details":[{"code":"DeploymentStackDenyAssignmentFailure","message":"The - deny assignment of one or more resources could not be added or removed. Refer - to failed resources of snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/DanteMGStack/snapshots/2022-09-30-22-21-31-bde26'' - for more details.","details":[{"code":"DeploymentStackOperationFailed","message":"Object - reference not set to an instance of an object."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-30T22:21:30.7118511Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-30T22:21:30.7118511Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/DanteMGStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteMGStack"},{"location":"westus2","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionu5wkgeogslbeigazgh/snapshots/2022-10-05-18-03-14-c1f59","actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-10-05-18-03-14-c1f59","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT25.8037965S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T18:03:13.8304987Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T18:03:13.8304987Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionu5wkgeogslbeigazgh","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionu5wkgeogslbeigazgh"},{"location":"centralus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/9_19_test1/snapshots/2022-10-05-20-26-10-62f4c","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT3.5910418S","parameters":{"name":{"value":"resource2"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/9_19_test1/snapshots/2022-10-05-20-26-10-62f4c'' - for more details. Correlation id: ''ffbad98a-28bf-44b1-853d-8e7fe2e36077''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''location'' at line ''22'' - and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is - not expected at this location. Please see https://aka.ms/arm-template-expressions - for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T20:25:49.3328562Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:26:09.8664208Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"westus2","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptiono77xop3h4pl5yil/snapshots/2022-10-05-20-36-15-bd7f0","actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-20-36-15-bd7f0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.9941495S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptiono77xop3h4pl5yil/snapshots/2022-10-05-20-36-15-bd7f0'' - for more details. Correlation id: ''213acc6a-38c4-4583-8198-c924365beab3''","details":[{"code":"DeploymentFailed","message":"At + string: '{"value":[{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/newstack-2023-04-13-15-38-42-48e78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.4220465S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T19:12:17.8451767Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:38:42.8070775Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/newstack","type":"Microsoft.Resources/deploymentStacks","name":"newstack"},{"location":"eastus","tags":{"key1":"value1","key2":"value2"},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteMGStack-2023-02-21-23-46-21-32225","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"A + Stack","duration":"PT7.2905581S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specVersionName":{"value":"StacksSpecVersionMG765"},"specName":{"value":"StacksSpecNameMG765"},"specModName":{"value":"stacksSpecMGtestmod"},"location":{"value":"westus"},"modName":{"value":"stacksMGtestmod"},"subId":{"value":"92722693-40f1-44fe-8c39-9cf6b6353750"},"rgName":{"value":"StacksTestMG765"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''2bd36238-e4fc-4617-b2df-e9bac372eadc''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"InvalidDeploymentLocation","message":"Invalid + deployment location ''eastus''. The deployment ''STACKSMGTESTMOD'' already + exists in location ''westus2''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2023-02-21T23:46:21.0585659Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-21T23:46:21.0585659Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/DanteMGStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteMGStack"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/check1-2022-11-21-23-05-34-f9fa8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.5182892S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful6'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/StatefulResources/hpStateful6"},{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful7'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/StatefulResources/hpStateful7"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/check1/snapshots/2022-11-21-23-05-34-f9fa8'' + for more details. Correlation id: ''d4238c07-ab1e-4413-8c66-8ea611873ffc''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful6'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful7'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-21T21:07:18.8377395Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-21T23:05:34.2831077Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/check1","type":"Microsoft.Resources/deploymentStacks","name":"check1"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7554-2023-02-10-00-46-55-2d933","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT44.3878253S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"rgName":{"value":"StacksTestMG765"},"specModName":{"value":"stacksSpecMGtestmod"},"location":{"value":"westus"},"specName":{"value":"StacksSpecNameMG765"},"specVersionName":{"value":"StacksSpecVersionMG765"},"modName":{"value":"stacksMGtestmod"},"subId":{"value":"92722693-40f1-44fe-8c39-9cf6b6353750"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-10T00:46:54.6659494Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-10T00:46:54.6659494Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps7554","type":"Microsoft.Resources/deploymentStacks","name":"ps7554"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8060-2023-02-10-00-58-18-44820","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT46.3195826S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"modName":{"value":"stacksMGtestmod"},"specModName":{"value":"stacksSpecMGtestmod"},"specName":{"value":"StacksSpecNameMG765"},"location":{"value":"westus"},"subId":{"value":"92722693-40f1-44fe-8c39-9cf6b6353750"},"specVersionName":{"value":"StacksSpecVersionMG765"},"rgName":{"value":"StacksTestMG765"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-10T00:58:17.3527077Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-10T00:58:17.3527077Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps8060","type":"Microsoft.Resources/deploymentStacks","name":"ps8060"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps430-2023-02-11-00-44-36-29be1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT41.9230887S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"rgName":{"value":"StacksTestMG765"},"specModName":{"value":"stacksSpecMGtestmod"},"specName":{"value":"StacksSpecNameMG765"},"subId":{"value":"4ce8c9fe-cadc-47d6-9c76-335812fd59df"},"modName":{"value":"stacksMGtestmod"},"location":{"value":"westus"},"specVersionName":{"value":"StacksSpecVersionMG765"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9787/providers/Microsoft.Resources/templateSpecs/ps6987/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-11T00:43:50.4962555Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-11T00:44:36.5948715Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps430","type":"Microsoft.Resources/deploymentStacks","name":"ps430"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2857-2023-02-11-00-56-30-20947","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT49.9248467S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"subId":{"value":"4ce8c9fe-cadc-47d6-9c76-335812fd59df"},"rgName":{"value":"StacksTestMG765"},"modName":{"value":"stacksMGtestmod"},"specVersionName":{"value":"StacksSpecVersionMG765"},"location":{"value":"westus"},"specName":{"value":"StacksSpecNameMG765"},"specModName":{"value":"stacksSpecMGtestmod"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-11T00:56:22.1397217Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-11T00:56:22.1397217Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps2857","type":"Microsoft.Resources/deploymentStacks","name":"ps2857"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5058-2023-02-11-01-02-46-fd8a2","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT41.9318387S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specModName":{"value":"stacksSpecMGtestmod"},"rgName":{"value":"StacksTestMG765"},"specName":{"value":"StacksSpecNameMG765"},"modName":{"value":"stacksMGtestmod"},"specVersionName":{"value":"StacksSpecVersionMG765"},"subId":{"value":"4ce8c9fe-cadc-47d6-9c76-335812fd59df"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-11T01:02:46.2208027Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-11T01:02:46.2208027Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps5058","type":"Microsoft.Resources/deploymentStacks","name":"ps5058"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps311-2023-02-11-01-17-03-14892","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT46.0358215S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specName":{"value":"StacksSpecNameMG765"},"modName":{"value":"stacksMGtestmod"},"location":{"value":"westus"},"specModName":{"value":"stacksSpecMGtestmod"},"rgName":{"value":"StacksTestMG765"},"subId":{"value":"4ce8c9fe-cadc-47d6-9c76-335812fd59df"},"specVersionName":{"value":"StacksSpecVersionMG765"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-11T01:17:02.9514384Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-11T01:17:02.9514384Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps311","type":"Microsoft.Resources/deploymentStacks","name":"ps311"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9917-2023-02-11-01-23-45-20b9e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT44.571406S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"modName":{"value":"stacksMGtestmod"},"location":{"value":"westus"},"specModName":{"value":"stacksSpecMGtestmod"},"specName":{"value":"StacksSpecNameMG765"},"specVersionName":{"value":"StacksSpecVersionMG765"},"rgName":{"value":"StacksTestMG765"},"subId":{"value":"4ce8c9fe-cadc-47d6-9c76-335812fd59df"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestMG765/providers/Microsoft.Resources/templateSpecs/StacksSpecNameMG765/versions/StacksSpecVersionMG765"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2023-02-11T01:23:45.4993152Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2023-02-11T01:23:45.4993152Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/ps9917","type":"Microsoft.Resources/deploymentStacks","name":"ps9917"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-13-16-12-57-dcebe","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.9594651S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{"name":{"value":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T16:12:56.631925Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T16:12:56.631925Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionmgbizh3wglkkj3r","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionmgbizh3wglkkj3r"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-04-13-16-36-13-41d58","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.7924854S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T16:36:13.3990718Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T16:36:13.3990718Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/rjwTestPS-2022-11-09-01-59-45-a8807","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT8.228413S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/statefulResource'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/StatefulResources/statefulResource"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/rjwTestPS/snapshots/2022-11-09-01-59-45-a8807'' + for more details. Correlation id: ''028204d8-171e-4889-bcb5-02fed445019a''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Providers.Test/statefulResources/uniquestorage001'' under resource - group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T20:36:14.9969485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:36:14.9969485Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptiono77xop3h4pl5yil","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptiono77xop3h4pl5yil"},{"location":"westus2","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-10-05-20-45-23-77958","actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-10-05-20-45-23-77958","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.0553408S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T20:45:23.038492Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:45:23.038492Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"},{"location":"eastus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg1/snapshots/2022-09-13-20-48-37-088f0","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg1-2022-09-13-20-48-37-088f0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT23.9984782S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-13T20:42:49.8784028Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-13T20:48:36.9070109Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg1","type":"Microsoft.Resources/deploymentStacks","name":"stackmg1"},{"location":"eastus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg2/snapshots/2022-09-13-21-21-37-89f3f","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg2-2022-09-13-21-21-37-89f3f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.7341641S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-13T20:54:07.7123585Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-13T21:21:37.4267672Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg2","type":"Microsoft.Resources/deploymentStacks","name":"stackmg2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg9-2022-09-27-21-36-24-0b6be","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"locking","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg9/snapshots/2022-09-27-21-36-24-0b6be'' - for more details. Correlation id: ''991c36f4-cb17-4d99-8f35-cdf732142f77''","details":[{"code":"DeploymentStackDenyAssignmentFailure","message":"The - deny assignment of one or more resources could not be added or removed. Refer - to failed resources of snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg9/snapshots/2022-09-27-21-36-24-0b6be'' - for more details.","details":[{"code":"DeploymentStackOperationFailed","message":"Object - reference not set to an instance of an object."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:10:32.7321461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-27T21:36:24.4224213Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg9","type":"Microsoft.Resources/deploymentStacks","name":"stackmg9"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg10-2022-09-27-21-49-53-7fe6c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"locking","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg10/snapshots/2022-09-27-21-49-53-7fe6c'' - for more details. Correlation id: ''b415d72b-c098-4149-a548-ff2b471cd58b''","details":[{"code":"DeploymentStackDenyAssignmentFailure","message":"The - deny assignment of one or more resources could not be added or removed. Refer - to failed resources of snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg10/snapshots/2022-09-27-21-49-53-7fe6c'' - for more details.","details":[{"code":"DeploymentStackOperationFailed","message":"Object - reference not set to an instance of an object."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-27T21:49:52.6909428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-27T21:49:52.6909428Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg10","type":"Microsoft.Resources/deploymentStacks","name":"stackmg10"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg17-2022-10-03-19-10-10-693bc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"locking","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg17/snapshots/2022-10-03-19-10-10-693bc'' - for more details. Correlation id: ''3439ae3c-82c1-4e00-ab78-1aa8a1e363c6''","details":[{"code":"DeploymentStackDenyAssignmentFailure","message":"The - deny assignment of one or more resources could not be added or removed. Refer - to failed resources of snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg17/snapshots/2022-10-03-19-10-10-693bc'' - for more details.","details":[{"code":"DeploymentStackOperationFailed","message":"Object - reference not set to an instance of an object."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-03T19:10:09.3689491Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-03T19:10:09.3689491Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg17","type":"Microsoft.Resources/deploymentStacks","name":"stackmg17"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg20-2022-10-04-18-29-39-643a2","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"locking","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg20/snapshots/2022-10-04-18-29-39-643a2'' - for more details. Correlation id: ''4713cec5-2dd1-4e86-ad0c-6d3c79a9bdfe''","details":[{"code":"DeploymentStackDenyAssignmentFailure","message":"The - deny assignment of one or more resources could not be added or removed. Refer - to failed resources of snapshot ''/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg20/snapshots/2022-10-04-18-29-39-643a2'' - for more details.","details":[{"code":"DeploymentStackOperationFailed","message":"Object - reference not set to an instance of an object."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-04T18:29:38.2048795Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-04T18:29:38.2048795Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg20","type":"Microsoft.Resources/deploymentStacks","name":"stackmg20"},{"location":"eastus2","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/mgStack-UnitTest-eus2euap-221004T160549/snapshots/2022-10-04-23-06-04-06d44","actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mgStack-UnitTest-eus2euap-221004T16054-2022-10-04-23-06-04-06d44","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT8.3436983S","outputs":{"deploymentStackName":{"type":"String","value":"mgStack-UnitTest-eus2euap-221004T160549"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-04T23:06:03.8889477Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-04T23:06:03.8889477Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/mgStack-UnitTest-eus2euap-221004T160549","type":"Microsoft.Resources/deploymentStacks","name":"mgStack-UnitTest-eus2euap-221004T160549"},{"location":"eastus","properties":{"snapshotId":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg23/snapshots/2022-10-05-20-17-33-87da4","actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg23-2022-10-05-20-17-33-87da4","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT11.4571527S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T20:09:33.580644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:17:33.2989409Z"},"id":"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/stackmg23","type":"Microsoft.Resources/deploymentStacks","name":"stackmg23"}]}' + Resource ''Providers.Test/statefulResources/statefulResource'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-11-09T01:59:45.4267409Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T01:59:45.4267409Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/rjwTestPS","type":"Microsoft.Resources/deploymentStacks","name":"rjwTestPS"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/rjwTestPS2-2022-11-09-22-38-20-3fbb7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT8.643175S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/statefulResource'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/StatefulResources/statefulResource"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/rjwTestPS2/snapshots/2022-11-09-22-38-20-3fbb7'' + for more details. Correlation id: ''84483f0e-5cb0-45fb-9c2d-bb33f8dec5b0''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/statefulResource'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-11-09T22:38:20.0185961Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-09T22:38:20.0185961Z"},"id":"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/rjwTestPS2","type":"Microsoft.Resources/deploymentStacks","name":"rjwTestPS2"}]}' headers: cache-control: - no-cache content-length: - - '26309' + - '26042' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:45:43 GMT + - Thu, 13 Apr 2023 16:36:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-original-request-ids: - - 966e1859-de60-4111-af86-af7b628b5f63 - - 91c7ad5d-5e4e-42bb-9c0d-d7965b358113 - x-msedge-ref: - - 'Ref A: AABA369C0B1840A38D07E7F6FCB9EBF6 Ref B: BL2AA2030110045 Ref C: 2022-10-05T20:45:42Z' + - f9578f35-c78e-49c6-ad52-57950d9e2050 + - 07f20f57-8378-4cf0-82a4-78df013f2da6 + - 8893c6e7-1d1c-42fe-8898-5a22332554b7 status: code: 200 message: OK @@ -334,52 +330,55 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"snapshotId\": - \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001/snapshots/2022-10-05-20-45-23-77958\",\r\n - \ \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-10-05-20-45-23-77958\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-04-13-16-36-13-41d58\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.0553408S\",\r\n \"outputs\": {\r\n \"foo\": - {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n - \ \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-10-05T20:45:23.038492Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-10-05T20:45:23.038492Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n + \ \"duration\": \"PT6.7924854S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": + {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-13T16:36:13.3990718Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-04-13T16:36:13.3990718Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1735' + - '1614' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Oct 2022 20:45:44 GMT + - Thu, 13 Apr 2023 16:36:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 78A115DA32A5460D838A7A930CDB4C02 Ref B: BL2AA2030105037 Ref C: 2022-10-05T20:45:43Z' status: code: 200 message: OK @@ -399,10 +398,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -412,21 +411,19 @@ interactions: content-length: - '0' date: - - Wed, 05 Oct 2022 20:45:45 GMT + - Thu, 13 Apr 2023 16:36:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: 4ABB31AD0C6B4FEBB23C8E9A2D88F0C9 Ref B: BL2AA2030105037 Ref C: 2022-10-05T20:45:44Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml index 0ded477d01d..42c67e9aaa5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_resource_group.yaml @@ -11,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,19 +31,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:48:54 GMT + - Mon, 17 Apr 2023 15:45:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: F6503AF849924815A41A080BC2C9EA39 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:48:54Z' status: code: 404 message: Not Found @@ -69,11 +69,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,14 +87,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:45:21.3195176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:45:21.3195176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2c6a4123-2e2a-4662-ab10-7cd947a3de7e?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/209ffe2a-417c-4deb-b607-557221d056cb?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -100,21 +102,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:48:56 GMT + - Mon, 17 Apr 2023 15:45:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-msedge-ref: - - 'Ref A: A621112932D5492C83D563CD381D7BA6 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:48:55Z' + - '1199' status: code: 201 message: Created @@ -130,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2c6a4123-2e2a-4662-ab10-7cd947a3de7e?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/209ffe2a-417c-4deb-b607-557221d056cb?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/2c6a4123-2e2a-4662-ab10-7cd947a3de7e\",\r\n - \ \"name\": \"2c6a4123-2e2a-4662-ab10-7cd947a3de7e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/209ffe2a-417c-4deb-b607-557221d056cb\",\r\n + \ \"name\": \"209ffe2a-417c-4deb-b607-557221d056cb\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:49:13 GMT + - Mon, 17 Apr 2023 15:45:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E3FAA28E9C664CE79EC53D143D582909 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:49:14Z' status: code: 200 message: OK @@ -175,17 +179,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-01-09-19-48-57-14515\",\r\n - \ \"duration\": \"PT6.8281691S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-04-17-15-45-21-c78c7\",\r\n + \ \"duration\": \"PT6.3165835S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -195,9 +201,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:45:21.3195176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:45:21.3195176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -208,19 +214,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:49:14 GMT + - Mon, 17 Apr 2023 15:45:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 9A0A234BF568433D8E63AE67AFC44DB0 Ref B: BL2AA2030108051 Ref C: 2023-01-09T19:49:14Z' status: code: 200 message: OK @@ -238,16 +246,17 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n - \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-01-09-19-48-57-14515\",\r\n - \ \"duration\": \"PT6.8281691S\",\r\n \"denySettings\": {\r\n + \ \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-04-17-15-45-21-c78c7\",\r\n + \ \"duration\": \"PT6.3165835S\",\r\n \"denySettings\": {\r\n \ \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": @@ -258,9 +267,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n \ },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:45:21.3195176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:45:21.3195176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n }\r\n ]\r\n}" @@ -272,19 +281,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:49:16 GMT + - Mon, 17 Apr 2023 15:45:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C4832B3A5C3F4D398DAE3919E346BCCB Ref B: BL2AA2030108039 Ref C: 2023-01-09T19:49:15Z' status: code: 200 message: OK @@ -302,15 +313,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-01-09-19-48-57-14515\",\r\n - \ \"duration\": \"PT6.8281691S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-resourc-2023-04-17-15-45-21-c78c7\",\r\n + \ \"duration\": \"PT6.3165835S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -320,9 +332,9 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:48:57.0055215Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:45:21.3195176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:48:57.0055215Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:45:21.3195176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-resource-group000002\"\r\n}" headers: @@ -333,19 +345,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:49:17 GMT + - Mon, 17 Apr 2023 15:45:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 06416FED51B04339A0DB28FA88ABFAC0 Ref B: BL2AA2030105019 Ref C: 2023-01-09T19:49:16Z' status: code: 200 message: OK @@ -365,9 +379,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -377,21 +392,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:49:18 GMT + - Mon, 17 Apr 2023 15:45:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-msedge-ref: - - 'Ref A: F6AA20F382C74B6C836AE7647E389CEC Ref B: BL2AA2030105019 Ref C: 2023-01-09T19:49:18Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml index 69af52a06e8..e37c699c6c5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_deployment_stack_subscription.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-list-deployment-stack-subscription000001'' @@ -28,26 +29,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:38 GMT + - Fri, 14 Apr 2023 15:21:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: 951DE99675F241B49C91B922A9AFFEB7 Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:38Z' status: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -66,20 +64,21 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": @@ -88,35 +87,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T17:56:39.0894117Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:56:39.0894117Z\"\r\n + \"2023-04-14T15:21:50.0029824Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:21:50.0029824Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/790501d3-754a-4736-873d-2d67f0a1ea63?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/780f4423-897c-491c-bb6f-8e4a963f3c7e?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1203' + - '1218' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:38 GMT + - Fri, 14 Apr 2023 15:21:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-msedge-ref: - - 'Ref A: 546C8AE0F7074E8AA3993954EB62DD02 Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:38Z' + - '1198' status: code: 201 message: Created @@ -132,36 +129,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/790501d3-754a-4736-873d-2d67f0a1ea63?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/780f4423-897c-491c-bb6f-8e4a963f3c7e?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/790501d3-754a-4736-873d-2d67f0a1ea63\",\r\n - \ \"name\": \"790501d3-754a-4736-873d-2d67f0a1ea63\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/780f4423-897c-491c-bb6f-8e4a963f3c7e\",\r\n + \ \"name\": \"780f4423-897c-491c-bb6f-8e4a963f3c7e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:56 GMT + - Fri, 14 Apr 2023 15:22:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 29C9CF561A9D4193AA09AEC9635BE68E Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:56Z' status: code: 200 message: OK @@ -177,19 +177,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-01-09-17-56-39-46c4e\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-04-14-15-21-50-9b49c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.2615051S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0739318S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -199,32 +200,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:56:39.0894117Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T15:21:50.0029824Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:56:39.0894117Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:21:50.0029824Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1595' + - '1610' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:56 GMT + - Fri, 14 Apr 2023 15:22:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: E90E197541BA4987AACD507C96F49EE6 Ref B: BL2AA2030109009 Ref C: 2023-01-09T17:56:56Z' status: code: 200 message: OK @@ -240,207 +243,913 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: '{"value":[{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStackOld-2022-09-09-21-35-32-031fd","duration":"PT23.6044782S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStackOld/snapshots/2022-09-09-21-35-32-031fd'' - for more details. Correlation id: ''19768e63-85e7-4861-8a8b-b20f3997f68e''","details":[{"code":"DeploymentFailed","message":"At + string: '{"value":[{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-23T19:15:01.5981235Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-24T16:40:51.8924628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/TemplateSpecStack","type":"Microsoft.Resources/deploymentStacks","name":"TemplateSpecStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest2_tf-2021-09-13-21-44-13-097eb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.Resources/templateSpecs/hello'' under resource group - '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-09T21:34:38.8181773Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-09T21:35:31.9759219Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStackOld","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStackOld"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy12-2022-09-16-16-57-00-25162","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT24.1049468S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-13T20:56:41.7301542Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T16:57:00.1144885Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy12","type":"Microsoft.Resources/deploymentStacks","name":"dummy12"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource2-2022-09-16-17-12-54-54553","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT16.5114522S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource2/snapshots/2022-09-16-17-12-54-54553'' - for more details. Correlation id: ''11c99696-3d65-4aaa-a2f1-4a5040f513e0''","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidResourceGroupLocation","message":"Invalid + resource group location ''eastus''. The Resource group already exists in location + ''westus2''."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:44:13.4958458Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:44:13.4958458Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest2_tf"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_2-2021-09-15-15-29-15-9f56b","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"NoRegisteredProviderFound","message":"No - registered resource provider found for location ''westus'' and API version - ''2019-06-01'' for type ''storageAccounts''. The supported api-versions are - ''2018-11-01, 2017-10-01, 2017-06-01, 2016-12-01, 2016-07-01, 2016-05-01, - 2016-01-01, 2015-10-01, 2015-06-15, 2015-05-01-preview''. The supported locations - are ''westus, northcentralus''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:12:53.474358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:12:53.474358Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource2","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg21-2022-10-04-18-41-13-8e685","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT8.0826677S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-04T18:41:12.1458194Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-04T18:41:12.1458194Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackmg21","type":"Microsoft.Resources/deploymentStacks","name":"stackmg21"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg22-2022-10-05-00-15-01-61ad6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT32.0717947S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T00:14:58.810254Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T00:14:58.810254Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackmg22","type":"Microsoft.Resources/deploymentStacks","name":"stackmg22"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221004T1721-2022-10-05-00-21-45-da7af","duration":"PT14.6334568S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221004T172124"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-05T00:21:41.6712297Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T00:21:41.6712297Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221004T172124","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221004T172124"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/stackmg25-2022-10-05-20-15-47-5aef9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT10.4854316S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T18:28:03.5485958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:15:46.7621198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackmg25","type":"Microsoft.Resources/deploymentStacks","name":"stackmg25"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1545-2022-10-12-22-46-01-ee1a2","duration":"PT12.4298339S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T154545"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T22:46:01.2169233Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T22:46:01.2169233Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T154545a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T154545a"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1559-2022-10-12-22-59-30-0b0f3","duration":"PT10.4796281S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T155917"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T22:59:29.9753173Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T22:59:29.9753173Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T155917a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T155917a"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1601-2022-10-12-23-02-12-df6dc","duration":"PT9.921038S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T160157"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T23:02:12.2720455Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T23:02:12.2720455Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T160157a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T160157a"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/subStack-UnitTest-eus2euap-221012T1622-2022-10-12-23-23-08-8496a","duration":"PT8.8825832S","outputs":{"deploymentStackName":{"type":"String","value":"subStack-UnitTest-eus2euap-221012T162253"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-12T23:23:08.3304976Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T23:23:08.3304976Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack-UnitTest-eus2euap-221012T162253a","type":"Microsoft.Resources/deploymentStacks","name":"subStack-UnitTest-eus2euap-221012T162253a"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStackDF-2022-10-13-21-36-19-53826","duration":"PT2M42.1065336S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-sql"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-shared-web"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStackDF/snapshots/2022-10-13-21-36-19-53826'' - for more details. Correlation id: ''1996d667-a389-4db5-bbe5-6fdbb599459c''","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:31:59.0977693Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:29:15.4823796Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_2"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_3-2021-09-15-15-30-22-9519a","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:30:22.1215654Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:30:22.1215654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_3"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_4-2021-09-15-15-32-06-8b48e","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details."},{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:32:06.1775591Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:32:06.1775591Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_4"},{"location":"eastus","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mySubStack-2023-03-15-16-29-04-2904d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.2627767S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/uniquestorage001'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/statefulResources/uniquestorage001"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''3a3c19cd-3d81-4315-850c-9f2ae51ba54a''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-13T21:36:18.930454Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-13T21:36:18.930454Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStackDF","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStackDF"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackPollingTest-2022-11-14-22-49-22-b97d0","duration":"PT32.8771317S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"NoRegisteredProviderFound","message":"No - registered resource provider found for location ''eastus'' and API version - ''2021-02-01'' for type ''serverFarms''. The supported api-versions are ''2017-08-01, - 2016-08-01, 2016-03-01, 2015-08-01, 2015-07-01, 2015-06-01, 2015-05-01, 2015-04-01, - 2015-02-02, 2015-02-01, 2014-11-01, 2014-06-01, 2014-04-01, 2014-04-01-preview, - 2015-04-01-privatepreview, 2017-08-01-privatepreview, 2016-08-01-privatepreview, - 2016-03-01-privatepreview, 2015-08-01-privatepreview, 2015-07-01-privatepreview, - 2015-06-01-privatepreview, 2015-05-01-privatepreview, 2015-02-01-privatepreview, - 2014-11-01-privatepreview, 2014-06-01-privatepreview, 2014-04-01-privatepreview''. - The supported locations are ''westus, eastus, eastus2, eastasiastage''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulLocTest2/providers/Microsoft.Web/serverfarms/shared-app-service"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. Correlation id: ''318eac2b-e069-4d01-a80f-20d6cf011ace''","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Providers.Test/statefulResources/uniquestorage001'' + under resource group '''' was not found. For more details please go + to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-02-01T21:35:50.3861621Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:29:04.59173Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStack","type":"Microsoft.Resources/deploymentStacks","name":"mySubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.001939S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone/snapshots/2022-04-05-17-29-24-64a9d'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''236c6ae3-acd8-43c3-b27b-9dcf44e35d59''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-05T16:27:38.5417212Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-05T17:29:23.9447321Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone","type":"Microsoft.Resources/deploymentStacks","name":"hpone"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9251897S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22/snapshots/2022-05-26-20-18-12-269e3'' + for more details. Correlation id: ''845b9eba-1687-4504-916e-8d69d56d2847''","details":[{"code":"InvalidRequestContent","message":"The + request content was invalid and could not be deserialized: ''Required property + ''contentVersion'' not found in JSON. Path ''properties.template'', line 6, + position 5.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-18T20:23:06.5444995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T20:18:11.4113067Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22","type":"Microsoft.Resources/deploymentStacks","name":"hp22"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detach-test-2022-06-15-17-25-59-01c8c","duration":"PT34.0312008S","outputs":{"storageAccountAName":{"type":"String","value":"deploymentscopetesta"},"storageAccountBName":{"type":"String","value":"deploymentscopetestb"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:53:43.8289431Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T17:25:59.1555357Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detach-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detach-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detatch-test-2022-06-14-21-57-39-972ba","duration":"PT10.1409527S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test/snapshots/2022-06-14-21-57-39-972ba'' + for more details. Correlation id: ''723328db-c1c9-4b5d-9fa9-9429eb056224''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-b'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-a'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:57:38.2436258Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T21:57:38.2436258Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detatch-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-example-storageaccount-2022-06-14-22-13-56-d5b2f","duration":"PT12.7634725S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount/snapshots/2022-06-14-22-13-56-d5b2f'' + for more details. Correlation id: ''bbdbbf47-5555-4a8e-901c-4a6d53b094aa''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T22:13:54.9096146Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T22:13:54.9096146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount","type":"Microsoft.Resources/deploymentStacks","name":"dante-example-storageaccount"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.3648936S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13/snapshots/2022-06-17-18-53-18-03d4c'' + for more details. Correlation id: ''b864b76e-1dd6-41d5-a0b6-f08ab4aa49e3''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''sqlServerName'' at line + ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-17T18:53:16.7933655Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-17T18:53:16.7933655Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13","type":"Microsoft.Resources/deploymentStacks","name":"teststack13"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy-2022-06-23-17-09-19-b7d99","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.1677588S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy/snapshots/2022-06-23-17-09-19-b7d99'' + for more details. Correlation id: ''a0f6b921-5643-42c2-84b8-7091762fc357''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details."},{"code":"KeyVaultParameterReferenceNotFound","message":"The - specified KeyVault ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VaultsGroup/providers/Microsoft.KeyVault/vaults/armdemovault'' - could not be found. Please see https://aka.ms/arm-keyvault for usage details."}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-08T17:08:40.888718Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T22:49:22.1844201Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackPollingTest","type":"Microsoft.Resources/deploymentStacks","name":"testStackPollingTest"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStack-2022-09-06-23-21-52-99aff","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"A - New Stack","duration":"PT1M24.8213117S","parameters":{"keyVaultName":{"value":"dantekeyvault"},"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"secretValue":{"value":"Hello"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStack/snapshots/2022-09-06-23-21-52-99aff'' - for more details. Correlation id: ''1bfbeaa9-c7a1-42f0-9223-4f04fa67e227''","details":[{"code":"DeploymentFailed","message":"At + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:09:17.4941031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:09:17.4941031Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy","type":"Microsoft.Resources/deploymentStacks","name":"dummy"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteTestStack-2022-09-07-17-32-25-5a92d","duration":"PT9.0890768S","parameters":{"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"keyVaultName":{"value":"danted-stackstest1523"},"secretValue":{"value":"HelloToTheWorld"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack/snapshots/2022-09-07-17-32-25-5a92d'' + for more details. Correlation id: ''3334e5a3-5ab1-4a77-9ab0-3d02b5c5f8da''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The resource ''Microsoft.KeyVault/vaults/dantekeyvault'' + template validation failed: ''The resource ''Microsoft.KeyVault/vaults/danted-stackstest1523'' is not defined in the template. Please see https://aka.ms/arm-template for - usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:19:24.0431371Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-06T23:21:52.4273739Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStack"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackGokul-2022-05-24-19-22-56-259f5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-05-24T19:22:55.2064645Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-24T19:22:55.2064645Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackGokul","type":"Microsoft.Resources/deploymentStacks","name":"testStackGokul"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackGokul3f2a1503-8c47-4762-ae5d--2022-06-01-18-05-54-9b043","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT33.6830883S","outputs":{"rgName":{"type":"String","value":"my-stackrg2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefuls1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-stackrg2/providers/Providers.Test/StatefulResources/my-stackrg2statefuls2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-01T18:05:52.9874073Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-01T18:05:52.9874073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackGokul3f2a1503-8c47-4762-ae5d-9f9a2a5c6967","type":"Microsoft.Resources/deploymentStacks","name":"testStackGokul3f2a1503-8c47-4762-ae5d-9f9a2a5c6967"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedStack2-2022-09-02-21-43-58-519bc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"a - new stack","duration":"PT7.7278278S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedStack2/snapshots/2022-09-02-21-43-58-519bc'' - for more details. Correlation id: ''22779bdf-4094-4386-a969-50b7fe851001''","details":[{"code":"DeploymentFailed","message":"At + usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:34:18.5382285Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T17:32:24.3045971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteTestStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStorageStack-2022-09-07-18-33-27-a89a9","duration":"PT43.548586S","outputs":{},"parameters":{"namePrefix":{"value":"danted1234"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-07T18:05:16.4036646Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T18:33:25.9618998Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStorageStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStorageStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/9_19_test1-2022-09-26-16-20-50-2da1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.5093326S","parameters":{"name":{"value":"resource2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:47.4745761Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:47.4745761Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/deployments/subStack-2022-11-04-01-38-25-933c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","duration":"PT10.0476458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T01:38:22.5331641Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T01:38:22.5331641Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack","type":"Microsoft.Resources/deploymentStacks","name":"subStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT1.9671172S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''cefa0e14-4fbb-43e0-9588-0cee65bbc59c''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''ubuntusimplevm1storage'' + at line ''11'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":11,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-17T15:00:59.2195436Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-17T15:00:59.2195436Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/myWindowsSubStack","type":"Microsoft.Resources/deploymentStacks","name":"myWindowsSubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"duration":"PT2.0910917S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''e83b3b2a-c758-4692-94cf-96619c2695e4''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''ubuntusimplevm1storage'' + at line ''11'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":11,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-17T15:23:04.6074523Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-17T15:23:04.6074523Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/myWindosSubStack","type":"Microsoft.Resources/deploymentStacks","name":"myWindosSubStack"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/deployments/stuartko_DifferenOpTest-2023-02-03-01-15-58-49225","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","duration":"PT5.704015S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T01:13:43.7132906Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T01:15:58.4641266Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stuartko_DifferenOpTest","type":"Microsoft.Resources/deploymentStacks","name":"stuartko_DifferenOpTest"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/GokulteststackDA-2023-03-07-22-39-46-536b3","duration":"PT6.276029S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/LocationRestriction"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"InvalidPolicyDefinitionIdUpdate","message":"The + policy assignment ''location-lock'' create request is invalid. Cannot update + existing assignment''s policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2'' + with new policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/LocationRestriction''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''c327f566-317e-4dcc-a447-a8b5246ef34a''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidResourceGroupLocation","message":"Invalid - resource group location ''westus''. The Resource group already exists in location - ''eastus''."},{"code":"InvalidResourceGroupLocation","message":"Invalid resource - group location ''westus''. The Resource group already exists in location ''eastus''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-02T21:43:15.5849188Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-02T21:43:58.1336092Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedStack2","type":"Microsoft.Resources/deploymentStacks","name":"dantedStack2"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedTestStack-2022-09-06-21-35-55-aec3e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT35M26.5495658S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedtestrg1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedTestStack/snapshots/2022-09-06-21-35-55-aec3e'' - for more details. Correlation id: ''33cf9c25-49ee-482f-ba1b-65e818b5ce46''","details":[{"code":"DeploymentFailed","message":"Could - not deploy the specified template successfully. DeploymentId ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedTestStack-2022-09-06-21-35-55-aec3e'' - was canceled."}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T21:34:55.2106741Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-06T21:35:55.2953677Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedTestStack","type":"Microsoft.Resources/deploymentStacks","name":"dantedTestStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStack-2022-09-14-22-39-48-5d504","duration":"PT9.3005101S","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-14T22:31:42.3121374Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-14T22:39:46.5011699Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStack"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-16-17-00-26-1a829","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.6276422S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:00:25.8193712Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:00:25.8193712Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionj5gx4qjvfqxkyfo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionj5gx4qjvfqxkyfo"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource3-2022-09-16-17-14-08-00ad7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.9753559S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource3/snapshots/2022-09-16-17-14-08-00ad7'' - for more details. Correlation id: ''e56b3723-4bfc-4b27-a579-3cb3fda89f7b''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"NoRegisteredProviderFound","message":"No - registered resource provider found for location ''westus'' and API version - ''2019-06-01'' for type ''storageAccounts''. The supported api-versions are - ''2018-11-01, 2017-10-01, 2017-06-01, 2016-12-01, 2016-07-01, 2016-05-01, - 2016-01-01, 2015-10-01, 2015-06-15, 2015-05-01-preview''. The supported locations - are ''westus, northcentralus''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:14:07.4080299Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:14:07.4080299Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource3","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource4-2022-09-16-17-15-22-6a6dc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT2H18M38.4182915S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource4/snapshots/2022-09-16-17-15-22-6a6dc'' - for more details. Correlation id: ''403dbbe9-4f45-4fe2-b1ca-cf0420845ccd''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceDeploymentFailure","message":"The - resource provision operation did not complete within the allowed timeout period."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T17:15:21.5044931Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T17:15:21.5044931Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource4","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource4"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource5-2022-09-16-19-05-06-44f0e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT2H18M1.6666246S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource5/snapshots/2022-09-16-19-05-06-44f0e'' - for more details. Correlation id: ''c5b315ba-4a99-4761-8d04-088e5a528cd3''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceDeploymentFailure","message":"The - resource provision operation did not complete within the allowed timeout period."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:05:04.1952769Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:05:04.1952769Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource5","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource5"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource6-2022-09-16-19-13-24-2de81","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT14.1193528S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:12:10.3238535Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:13:24.1191473Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource6","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource6"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource8-2022-09-16-19-43-09-3f0cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT1M33.0635842S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{"name":{"value":"hp"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hp"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:13:39.4856955Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:43:08.7528621Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource8","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-16-19-49-18-f9d8f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5","duration":"PT19.4037672S","outputs":{"storageId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksp2o7hnb3mjkt7cqg7k566iyyqid3tv35sdlu2vvib4rvwcud5/providers/Providers.Test/statefulResources/uniquestorage001"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:49:17.3184598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:49:17.3184598Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionyxi7coerjgvmsrm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionyxi7coerjgvmsrm"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/stackdeleteresource9-2022-09-16-19-50-26-c6901","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT18.4220814S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/DanteTemplateSpecy6r3n3xp5q4i4/versions/DanteSpecVersiony6r3n3xp5q4i4"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:50:26.0678691Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:50:26.0678691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stackdeleteresource9","type":"Microsoft.Resources/deploymentStacks","name":"stackdeleteresource9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.0733839S","parameters":{"name":{"value":"cli-test-resource-onecjzkabt7jd3tfjwmf75x7rbcolpwlb23puuvvnd"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5ejpykmx5ntv5cb/snapshots/2022-09-16-19-56-49-75c06'' - for more details. Correlation id: ''d69e1f5f-0bc5-41d6-aa1c-721dc45cc742''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''location'' at line ''22'' - and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is - not expected at this location. Please see https://aka.ms/arm-template-expressions + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"InvalidPolicyDefinitionIdUpdate","message":"The + policy assignment ''location-lock'' create request is invalid. Cannot update + existing assignment''s policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2'' + with new policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/LocationRestriction''."}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-03-07T22:39:45.7871482Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-07T22:39:45.7871482Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/GokulteststackDA","type":"Microsoft.Resources/deploymentStacks","name":"GokulteststackDA"},{"location":"eastus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/newStack3-2023-03-30-15-59-54-91c60","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.677457S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-30T15:59:54.5274894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-30T15:59:54.5274894Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/newStack3","type":"Microsoft.Resources/deploymentStacks","name":"newStack3"},{"location":"eastus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpstack1-2023-04-05-17-01-47-4baaa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT5.4917049S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/hpsa11'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts/hpsa11"}],"error":{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed. Correlation id: ''e4d9a0c9-1b9b-4456-bc1e-bd4140ac6eae''.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Storage/storageAccounts/hpsa11'' + under resource group '''' was not found. For more details please go + to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-30T16:03:05.375117Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-05T17:01:47.4519668Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpstack1","type":"Microsoft.Resources/deploymentStacks","name":"hpstack1"},{"location":"centraluseuap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack2-2022-11-13-01-53-43-3d269","duration":"PT44.6905132S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specVersionName":{"value":"V2"},"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-13T01:39:37.2977065Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-13T01:53:43.0777381Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack2","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack2"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/gptestBugBash-2021-08-10-23-14-45-07694","parameters":{"rgname":{"value":"pstestBugBashRG"},"principalId":{"value":"3602fbdc-4558-4a64-966c-2629723a3189"},"rgLocation":{"value":"eastus2euap"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Authorization/locks/DontDelete"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Authorization/roleAssignments/44d2e010-b263-5c5f-98a9-4a7ee7eeca84"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Network/publicIPAddresses/pip"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-10T23:14:45.516492Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-10T23:14:45.516492Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptestBugBash","type":"Microsoft.Resources/deploymentStacks","name":"gptestBugBash"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testpollingstack-2021-08-11-19-12-44-422e5","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-11T19:12:44.3040355Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-11T19:12:44.3040355Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testpollingstack","type":"Microsoft.Resources/deploymentStacks","name":"testpollingstack"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidDeployment","message":"The + ''location'' property is not allowed for ''testdeploymentscope-2021-08-12-22-35-46-919e5'' + at resource group scope. Please see https://aka.ms/deploy-to-subscription + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-12T22:08:09.396501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-12T22:35:45.8498994Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testdeploymentscope","type":"Microsoft.Resources/deploymentStacks","name":"testdeploymentscope"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/gptestBugBash2-2021-09-08-19-29-49-1c296","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-16T21:24:23.2631976Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T19:29:49.4722587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptestBugBash2","type":"Microsoft.Resources/deploymentStacks","name":"gptestBugBash2"},{"location":"eastus2euap","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_canary-2021-10-27-15-31-52-867d5","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-27T15:31:52.2677322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-27T15:31:52.2677322Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_canary","type":"Microsoft.Resources/deploymentStacks","name":"hp2_bb_canary"},{"location":"uksouth","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT1M16.1681444S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''72a5e8cd-0963-4758-a620-f04a57aa4c24''","details":[{"code":"DeploymentQuotaExceeded","message":"Creating + the deployment ''mySubStackHP-2023-03-15-16-07-46-e4a09'' would exceed the + deployment location quota. The current scope allows deployments to be created + in at most ''10'' locations. The following locations are used for deployments: + ''UKWEST,WESTUS,EASTUS,WESTCENTRALUS,CENTRALUSEUAP,WESTUS2,EASTUS2,CENTRALUS,WESTEUROPE,EASTASIA''. + Please create your deployment in other locations. Please see https://aka.ms/arm-deploy-resources + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:07:46.2900974Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:07:46.2900974Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStackHP","type":"Microsoft.Resources/deploymentStacks","name":"mySubStackHP"},{"location":"uksouth","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT1M14.0387934S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''14e0a525-1242-4853-9d0e-07e25c4b4463''","details":[{"code":"DeploymentQuotaExceeded","message":"Creating + the deployment ''mySubStackHP2-2023-03-15-17-10-39-b34af'' would exceed the + deployment location quota. The current scope allows deployments to be created + in at most ''10'' locations. The following locations are used for deployments: + ''UKWEST,WESTUS,EASTUS,WESTCENTRALUS,CENTRALUSEUAP,WESTUS2,EASTUS2,CENTRALUS,WESTEUROPE,EASTASIA''. + Please create your deployment in other locations. Please see https://aka.ms/arm-deploy-resources + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:09:39.1083808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T17:10:39.5462239Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStackHP2","type":"Microsoft.Resources/deploymentStacks","name":"mySubStackHP2"},{"location":"westeurope","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/GokulVerboseTest-2023-03-09-21-16-48-1a02a","duration":"PT11.5034216S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-03-09T21:16:48.1011394Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-09T21:16:48.1011394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/GokulVerboseTest","type":"Microsoft.Resources/deploymentStacks","name":"GokulVerboseTest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9412-2021-08-05-21-43-40-ab2eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:43:40.3548862Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:43:40.3548862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9412","type":"Microsoft.Resources/deploymentStacks","name":"ps9412"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7734-2021-08-05-20-47-45-561b8","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T20:47:44.614607Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T20:47:44.614607Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7734","type":"Microsoft.Resources/deploymentStacks","name":"ps7734"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7678-2021-08-05-21-31-07-b56e1","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:07.1678095Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:07.1678095Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7678","type":"Microsoft.Resources/deploymentStacks","name":"ps7678"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8650-2021-08-05-21-31-55-06541","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:31:55.5907376Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:31:55.5907376Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8650","type":"Microsoft.Resources/deploymentStacks","name":"ps8650"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2660-2021-08-05-21-33-21-2a758","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:21.2647083Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:21.2647083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2660","type":"Microsoft.Resources/deploymentStacks","name":"ps2660"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps117-2021-08-05-21-33-39-54b95","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"}],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentActive","message":"Unable + to edit or replace deployment ''rg-nested'': previous deployment from ''8/5/2021 + 9:33:30 PM'' is still active (expiration time is ''8/12/2021 9:33:24 PM''). + Please see https://aka.ms/arm-deploy for usage details."}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:33:38.9942748Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:33:38.9942748Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps117","type":"Microsoft.Resources/deploymentStacks","name":"ps117"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/teststack36-2021-08-05-21-35-58-a85a6","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-05T21:35:58.4542015Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-05T21:35:58.4542015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack36","type":"Microsoft.Resources/deploymentStacks","name":"teststack36"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2841-2021-08-05-21-38-53-9edd2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:38:53.2752718Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:38:53.2752718Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2841","type":"Microsoft.Resources/deploymentStacks","name":"ps2841"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5377-2021-08-05-21-41-06-1ae62","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:41:06.394859Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:41:06.394859Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5377","type":"Microsoft.Resources/deploymentStacks","name":"ps5377"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1611-2021-08-05-21-44-02-3e9d9","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:44:01.8765993Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:44:01.8765993Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1611","type":"Microsoft.Resources/deploymentStacks","name":"ps1611"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2258-2021-08-05-21-45-03-07494","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-05T21:45:02.637839Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-05T21:45:02.637839Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2258","type":"Microsoft.Resources/deploymentStacks","name":"ps2258"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps897/providers/Microsoft.Resources/templateSpecs/ps3176/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210806T182846Z'', tracking Id ''67f3929b-9b87-4db1-bd3a-cd4c2b5fb92d'', + request correlation Id ''c153a3f3-aa18-46de-b79d-61000f79777d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:28:45.0078765Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:28:45.0078765Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7458","type":"Microsoft.Resources/deploymentStacks","name":"ps7458"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4097-2021-08-06-18-38-35-2fd49","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:38:34.7122081Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:38:34.7122081Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4097","type":"Microsoft.Resources/deploymentStacks","name":"ps4097"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7033-2021-08-06-18-39-11-eb9eb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T18:39:11.0116016Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T18:39:11.0116016Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7033","type":"Microsoft.Resources/deploymentStacks","name":"ps7033"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9009-2021-08-06-20-43-40-a4717","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:43:39.7636026Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:43:39.7636026Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9009","type":"Microsoft.Resources/deploymentStacks","name":"ps9009"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''foo'' + at line ''8'' and column ''16'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":16,"path":"properties.template.parameters.foo"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-06T20:54:09.0951289Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-06T20:54:09.0951289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps33","type":"Microsoft.Resources/deploymentStacks","name":"ps33"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3785/providers/Microsoft.Resources/templateSpecs/ps726/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210809T165838Z'', tracking Id ''a2c9239b-a7ef-4e80-8574-337dcb75130c'', + request correlation Id ''f3280879-aff0-4e1e-818b-a319ca25793d''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T16:58:37.3693411Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T16:58:37.3693411Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8838","type":"Microsoft.Resources/deploymentStacks","name":"ps8838"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7646-2021-08-09-18-35-38-d3af1","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-09T18:35:38.466307Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-09T18:35:38.466307Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7646","type":"Microsoft.Resources/deploymentStacks","name":"ps7646"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-09T18:53:13.9520002Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-09T18:53:52.7679913Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/gptest","type":"Microsoft.Resources/deploymentStacks","name":"gptest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps121-2021-08-10-16-47-05-37ded","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:47:05.6328647Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:47:05.6328647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps121","type":"Microsoft.Resources/deploymentStacks","name":"ps121"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1324-2021-08-10-16-57-42-dea35","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:57:42.1779526Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:57:42.1779526Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1324","type":"Microsoft.Resources/deploymentStacks","name":"ps1324"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8618-2021-08-10-16-59-27-c12a8","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T16:59:26.6868348Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T16:59:26.6868348Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8618","type":"Microsoft.Resources/deploymentStacks","name":"ps8618"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2140-2021-08-10-17-00-45-199b9","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:00:44.9396928Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:00:44.9396928Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2140","type":"Microsoft.Resources/deploymentStacks","name":"ps2140"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1282-2021-08-10-17-02-05-1aa22","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:02:05.0078009Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:02:05.0078009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1282","type":"Microsoft.Resources/deploymentStacks","name":"ps1282"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6421-2021-08-10-17-12-00-08994","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:11:53.6589803Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:12:00.2334862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6421","type":"Microsoft.Resources/deploymentStacks","name":"ps6421"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps703-2021-08-10-17-14-35-27adf","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:14:28.0893418Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:14:34.7758618Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps703","type":"Microsoft.Resources/deploymentStacks","name":"ps703"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3590-2021-08-10-17-16-31-728bc","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:16:23.3649618Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:16:30.8702865Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3590","type":"Microsoft.Resources/deploymentStacks","name":"ps3590"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6180-2021-08-10-17-17-43-35565","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T17:17:35.1627228Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T17:17:42.8833909Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6180","type":"Microsoft.Resources/deploymentStacks","name":"ps6180"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8891-2021-08-10-18-28-59-7f074","parameters":{"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:28:50.6716248Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:28:59.0248036Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8891","type":"Microsoft.Resources/deploymentStacks","name":"ps8891"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9502-2021-08-10-18-30-51-f4363","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:30:44.0823926Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:30:51.1062103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9502","type":"Microsoft.Resources/deploymentStacks","name":"ps9502"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8518-2021-08-10-18-31-36-738b3","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:31:30.1061333Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:31:35.7474604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8518","type":"Microsoft.Resources/deploymentStacks","name":"ps8518"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9760-2021-08-10-18-34-10-99678","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:34:03.3505028Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:34:09.6543048Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9760","type":"Microsoft.Resources/deploymentStacks","name":"ps9760"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1403-2021-08-10-18-36-34-0a2b3","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:36:33.8674243Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:36:33.8674243Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1403","type":"Microsoft.Resources/deploymentStacks","name":"ps1403"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2288-2021-08-10-18-37-50-af53e","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:37:43.399231Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:37:50.5717694Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2288","type":"Microsoft.Resources/deploymentStacks","name":"ps2288"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2697-2021-08-10-18-38-58-4de61","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:38:50.923982Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:38:57.9216075Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2697","type":"Microsoft.Resources/deploymentStacks","name":"ps2697"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6279-2021-08-10-18-41-01-8894f","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:40:54.4081654Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:41:01.5600887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6279","type":"Microsoft.Resources/deploymentStacks","name":"ps6279"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:43:33.8584658Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:43:35.3251073Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps629","type":"Microsoft.Resources/deploymentStacks","name":"ps629"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The value for the template parameter ''hostingPlanName'' + at line ''8'' and column ''28'' is not provided. Please see https://aka.ms/resource-manager-parameter-files + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":28,"path":"properties.template.parameters.hostingPlanName"}}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:44:38.3773944Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:44:41.4949636Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps799","type":"Microsoft.Resources/deploymentStacks","name":"ps799"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7392-2021-08-10-18-48-19-f0472","parameters":{"workerSize":{"value":0},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:48:10.458921Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:48:18.8177323Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7392","type":"Microsoft.Resources/deploymentStacks","name":"ps7392"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2459-2021-08-10-18-53-27-92f31","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:53:18.9832367Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:53:27.059363Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2459","type":"Microsoft.Resources/deploymentStacks","name":"ps2459"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1201-2021-08-10-18-54-50-031ef","parameters":{"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:54:44.5974816Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:54:50.7524237Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1201","type":"Microsoft.Resources/deploymentStacks","name":"ps1201"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8309-2021-08-10-18-56-21-a0e2c","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:56:11.6164653Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:56:20.8349942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8309","type":"Microsoft.Resources/deploymentStacks","name":"ps8309"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5471-2021-08-10-18-57-34-0cfea","parameters":{"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:57:28.1311482Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:57:34.1873988Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5471","type":"Microsoft.Resources/deploymentStacks","name":"ps5471"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3858-2021-08-10-18-59-14-c7bf4","parameters":{"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T18:59:07.7415257Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T18:59:14.2388574Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3858","type":"Microsoft.Resources/deploymentStacks","name":"ps3858"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9883-2021-08-10-19-02-49-94a13","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"},"sku":{"value":"Basic"},"workerSize":{"value":0}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:02:38.5171855Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:02:48.9963785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9883","type":"Microsoft.Resources/deploymentStacks","name":"ps9883"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8553-2021-08-10-19-07-51-cab34","parameters":{"workerSize":{"value":0},"sku":{"value":"Basic"},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:07:41.5246265Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:07:50.8631004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8553","type":"Microsoft.Resources/deploymentStacks","name":"ps8553"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3238-2021-08-10-19-14-19-0659c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:14:04.8826929Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:14:19.7316889Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3238","type":"Microsoft.Resources/deploymentStacks","name":"ps3238"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8739-2021-08-10-19-19-01-98f19","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:18:47.3392988Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:19:01.6646691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8739","type":"Microsoft.Resources/deploymentStacks","name":"ps8739"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8661-2021-08-10-19-25-48-d772b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:25:39.0012578Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:25:48.7417349Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8661","type":"Microsoft.Resources/deploymentStacks","name":"ps8661"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8648-2021-08-10-19-28-58-af5a8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:28:50.9004177Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:28:58.6751303Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8648","type":"Microsoft.Resources/deploymentStacks","name":"ps8648"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4195-2021-08-10-19-29-57-498d2","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:29:49.8696058Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:29:57.5935106Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4195","type":"Microsoft.Resources/deploymentStacks","name":"ps4195"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8149-2021-08-10-19-31-00-51299","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:30:52.1368857Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:31:00.4506911Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8149","type":"Microsoft.Resources/deploymentStacks","name":"ps8149"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6103-2021-08-10-19-32-09-4271b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:32:02.4841619Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:32:09.5357071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6103","type":"Microsoft.Resources/deploymentStacks","name":"ps6103"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4951-2021-08-10-19-33-14-25dc8","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:02.582595Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:33:14.2953799Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4951","type":"Microsoft.Resources/deploymentStacks","name":"ps4951"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4838-2021-08-10-19-34-01-07952","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:33:54.1090588Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:34:01.3780932Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4838","type":"Microsoft.Resources/deploymentStacks","name":"ps4838"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3331-2021-08-10-19-35-15-c67dd","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:35:02.6054825Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:35:15.555646Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3331","type":"Microsoft.Resources/deploymentStacks","name":"ps3331"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6896-2021-08-10-19-36-34-83a7e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:36:25.2152793Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:36:34.2551875Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6896","type":"Microsoft.Resources/deploymentStacks","name":"ps6896"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps646-2021-08-10-19-38-22-ea27a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:37:58.1809877Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:38:22.0777661Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps646","type":"Microsoft.Resources/deploymentStacks","name":"ps646"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5676-2021-08-10-19-39-56-a8ed7","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T19:39:31.4437924Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T19:39:55.8901961Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5676","type":"Microsoft.Resources/deploymentStacks","name":"ps5676"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5506-2021-08-10-21-28-43-37651","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-10T21:27:54.9492006Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-10T21:28:43.5045785Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5506","type":"Microsoft.Resources/deploymentStacks","name":"ps5506"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7309-2021-08-11-16-34-39-0073d","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-11T16:34:30.8983426Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-11T16:34:39.2257226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7309","type":"Microsoft.Resources/deploymentStacks","name":"ps7309"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9756-2021-08-12-21-07-49-45875","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:07:49.5048609Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:07:49.5048609Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9756","type":"Microsoft.Resources/deploymentStacks","name":"ps9756"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3805-2021-08-12-21-08-51-ba718","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded"},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:08:51.6360754Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:08:51.6360754Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3805","type":"Microsoft.Resources/deploymentStacks","name":"ps3805"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1"},"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2086/providers/Microsoft.Resources/templateSpecs/ps728/versions/v1''. + Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: + timestamp ''20210812T212429Z'', tracking Id ''d3790cbb-619b-4614-9590-abe27abed72c'', + request correlation Id ''43db6487-eb7d-44a1-8282-2b4412bf16e3''.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:24:28.3020542Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:24:28.3020542Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1420","type":"Microsoft.Resources/deploymentStacks","name":"ps1420"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7864-2021-08-12-21-26-53-fb192","parameters":{"sku":{"value":"Basic"},"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26668"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"StackDeployResourcesFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26668'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:26:53.1503896Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:26:53.1503896Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7864","type":"Microsoft.Resources/deploymentStacks","name":"ps7864"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5198-2021-08-12-21-49-26-7c74c","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-08-12T21:48:56.6418425Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-08-12T21:49:26.3527177Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5198","type":"Microsoft.Resources/deploymentStacks","name":"ps5198"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-08T21:32:19.1521143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-08T21:32:19.1521143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3","type":"Microsoft.Resources/deploymentStacks","name":"hptest3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''C:\\ds\\azure-powershell\\src\\Resources\\Resources.Test\\subscription_level_template.json'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:17:37.6549031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:20:12.9106332Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest4","type":"Microsoft.Resources/deploymentStacks","name":"hptest4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest5-2021-09-09-14-21-54-9698d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T14:21:53.953314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T14:21:53.953314Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest5","type":"Microsoft.Resources/deploymentStacks","name":"hptest5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest6-2021-09-09-15-15-24-11168","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T15:15:24.0993628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T15:15:24.0993628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest6","type":"Microsoft.Resources/deploymentStacks","name":"hptest6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest8-2021-09-09-16-19-04-df10a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T16:19:04.0955002Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T16:19:04.0955002Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest8","type":"Microsoft.Resources/deploymentStacks","name":"hptest8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_ds_ts-2021-11-08-15-41-12-4ec86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:15:16.2528398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T15:41:11.5261202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_ds_ts","type":"Microsoft.Resources/deploymentStacks","name":"hp_ds_ts"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest9-2021-09-10-17-58-29-cb546","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T17:58:29.2926762Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T17:58:29.2926762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest9","type":"Microsoft.Resources/deploymentStacks","name":"hptest9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/templateuri'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:36:18.5936444Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:36:18.5936444Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest10","type":"Microsoft.Resources/deploymentStacks","name":"hptest10"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:41:30.8699717Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T15:09:29.5633652Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest11","type":"Microsoft.Resources/deploymentStacks","name":"hptest11"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest12-2021-09-11-00-44-31-f5c52","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:44:31.1312029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:44:31.1312029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest12","type":"Microsoft.Resources/deploymentStacks","name":"hptest12"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest13-2021-09-11-00-47-06-13bdb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:47:05.9416747Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:47:05.9416747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest13","type":"Microsoft.Resources/deploymentStacks","name":"hptest13"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_tf_pu-2021-09-11-00-51-34-ecdfb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-11T00:51:33.6133384Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-11T00:51:33.6133384Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest3_tf-2021-09-13-21-54-02-90a56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:45:40.8643988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:54:02.2718143Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest3_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest3_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pf-2021-09-13-21-55-30-a210c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:55:29.5843685Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:55:29.5843685Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf-2021-09-13-21-56-20-83ef0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:56:20.3453623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T21:56:20.3453623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tf_pu-2021-09-13-22-03-08-472ec","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:02:18Z&se=2021-09-14T06:02:18Z&spr=https&sv=2020-08-04&sr=b&sig=IrnlVIh%2BNFyek5Zs8y5XpLsHTa1ziKDZaNb4SvfU%2FRg%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T21:58:30.7256389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:03:07.7363346Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu-2021-09-13-22-08-21-43ac7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:04:31.8384939Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:08:20.8163125Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pf-2021-09-13-22-09-27-9ecc9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:09:26.5852784Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:09:26.5852784Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_tu_pu-2021-09-13-22-10-35-c838d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-13T22:09:21Z&se=2021-09-14T06:09:21Z&spr=https&sv=2020-08-04&sr=b&sig=ppuJN7KbD267xkUUmt8%2BUICLcPzpqDNuQmzjVXwJQpo%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-13T22:06:54Z&se=2021-09-14T06:06:54Z&spr=https&sv=2020-08-04&sr=b&sig=7pL1X60S5%2BoilAaaatcCDusiNjHs7K694qzrBOATKNk%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:10:34.5431783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T22:10:34.5431783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_tu_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts-2021-09-14-16-08-34-33a22","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T22:13:57.2860671Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:08:34.1170869Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pf-2021-09-14-16-09-42-aa585","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:09:42.1350168Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:09:42.1350168Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pf","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hptest_sub_ts_pu-2021-09-14-16-11-04-efdc8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-14T16:10:04Z&se=2021-09-15T00:10:04Z&spr=https&sv=2020-08-04&sr=b&sig=MPJaz7zB3q72A9h20XPESP5Hee0Js3OlO4Xbn%2FHOYhI%3D"},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T16:11:03.6444153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T16:11:03.6444153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_ts_pu","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_ts_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43-2021-09-14-21-29-15-1dd41","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidDeployment","message":"The + ''location'' property must be specified for ''hp_bb''. Please see https://aka.ms/deploy-to-subscription + for usage details."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:12:46.9259815Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-14T21:29:15.25126Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D","contentVersion":"1.0.0.0"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-14T21:17:05Z&se=2021-09-15T05:17:05Z&spr=https&sv=2020-08-04&sr=b&sig=CxcnD9EBR7KQdTXfDuB1nps8%2Fk0Hx3%2BZj22JX9T8oGM%3D''. + The tracking Id is ''dfb0ca38-c947-4006-89a0-541407477527''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-14T21:26:57.0683044Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:04.2111734Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_bb_43_5-2021-09-15-15-34-02-3866f","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed."}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T15:34:01.7711848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T15:34:01.7711848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_43_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_43_5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_delete_sub_snap-2021-09-15-17-56-23-97152","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-15T17:56:22.8497356Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T17:56:22.8497356Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_delete_sub_snap","type":"Microsoft.Resources/deploymentStacks","name":"hp_delete_sub_snap"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack1-2021-09-15-23-48-00-f5e95","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Compute/virtualMachines/simple-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkInterfaces/myVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkSecurityGroups/default-NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/publicIPAddresses/myPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Storage/storageAccounts/storageforfilizsvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-template-created/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"deletedResources":[],"failedResources":[{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Compute/virtualMachines/simple-vm"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkInterfaces/myVMNic"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/networkSecurityGroups/default-NSG"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/publicIPAddresses/myPublicIP"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-in-Sub5/providers/Microsoft.Storage/storageAccounts/storageforfilizsvm"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. It is now detached."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-template-created/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"One + or more resources could not be deleted. See snapshotId for more details.","details":[{"code":"DeploymentStackPurgeResourcesFailed","message":"Unknown + error occurred while trying to purge resources. These resources are now detached."}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-15T18:25:28.0912168Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-15T23:47:59.9330343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack1","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack3-2021-09-16-15-43-38-e62dd","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinexistingrg"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-template-created'' is in deprovisioning state + and cannot perform this operation."},{"code":"ResourceGroupBeingDeleted","message":"The + resource group ''filiz-test-in-Sub5'' is in deprovisioning state and cannot + perform this operation."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T15:43:37.5222786Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T15:43:37.5222786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack3","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack4-2021-09-16-16-01-38-3cf92","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''filiz-test-in-Sub5'' could not be found."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T16:01:38.2413692Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T16:01:38.2413692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack4","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack6-2021-09-16-19-32-29-87c2a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T18:57:38.7233089Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:32:28.8343562Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack6","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Resources/deployments/filiz-test-stack7-2021-09-16-19-52-18-918e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","parameters":{"storageLocation":{"value":"westus2"},"minimumTlsVersion":{"value":"TLS1_0"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test/providers/Microsoft.Storage/storageAccounts/teststorageinnewrg2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T19:52:17.8874576Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T19:52:17.8874576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack7","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/filiz-test-stack8-2021-09-16-20-53-26-0c122","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentStackOperationFailed","message":"''subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Management/managementGroups/AzBlueprint/providers/Microsoft.Resources/deployments/nestedDeployment'' + does not represent a supported child Resource Id type/format"}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-16T20:53:26.1119005Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-16T20:53:26.1119005Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack8","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack8"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hptest_sub_create_ds-2021-09-17-19-34-45-a483c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","description":"learn + how deployment scopes work","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:13:34.5161207Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:34:44.2801342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest_sub_create_ds","type":"Microsoft.Resources/deploymentStacks","name":"hptest_sub_create_ds"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu-2021-09-17-19-49-17-85f69","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:49:16.8078832Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:49:16.8078832Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAEb%2fC1n2tMpVZSZmqYi3gZkiuvmylFJYx6S1LaAY%2f%2ft0%2b55Pck6%2bi1aSkwpoWUhtcNF2frSJI22gfSnF5UDXD6hEOTmQUnVQWwnSweygyyqRWFCuKCuljswkQz27CzIryYBjZSZwe0kXuI6Le30nw7Zl6lywmqZESD2kWDDJMtVZE8kqgYnUU8J%2f2PluiRTChXxBnIL6Rt8EQ8uwLGC4wDABF6SmpHl8kAXlG1aQcjhz5Bz%2bz4fzqtpSsWiN%2fjLuLyIj75%2fTYHo82l67mc2MtJENdYWFbf%2bE5yu4M%2bsfNoJiBXar%2bRSLVROO9%2fgzDz35vY%2bf37OzbGMzbDHYwn2LhXeOU44Cv35bxwukjjw9hcViAou09T06HjfLfBmY3lF8GBM4Woqq9xrc07Trk4bEAea5IDlSJP1Lv70M16F2%2fQU%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '198567' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 15:22:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - d98135f0-b6cd-49c9-8412-34bda764c9bc + - eebe3e0b-fcea-44e2-820a-719aaf366096 + - e8f75acb-82f3-4903-8bdc-61d5637f0105 + - 00df7aa5-e92c-428a-9ebd-399cbfe7bf0e + - 7acbabf8-0117-47ac-b103-9e87a10c2cd2 + - a61a79d7-883d-4543-8b0d-b7365bd24759 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAEb/C1n2tMpVZSZmqYi3gZkiuvmylFJYx6S1LaAY/t0%2B55Pck6%2Bi1aSkwpoWUhtcNF2frSJI22gfSnF5UDXD6hEOTmQUnVQWwnSweygyyqRWFCuKCuljswkQz27CzIryYBjZSZwe0kXuI6Le30nw7Zl6lywmqZESD2kWDDJMtVZE8kqgYnUU8J/2PluiRTChXxBnIL6Rt8EQ8uwLGC4wDABF6SmpHl8kAXlG1aQcjhz5Bz%2Bz4fzqtpSsWiN/jLuLyIj75/TYHo82l67mc2MtJENdYWFbf%2BE5yu4M%2BsfNoJiBXar%2BRSLVROO9/gzDz35vY%2Bf37OzbGMzbDHYwn2LhXeOU44Cv35bxwukjjw9hcViAou09T06HjfLfBmY3lF8GBM4Woqq9xrc07Trk4bEAea5IDlSJP1Lv70M16F2/QU%3D + response: + body: + string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf_pu-2021-09-17-19-50-04-8428f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:43:32Z&se=2021-09-18T03:43:32Z&spr=https&sv=2020-08-04&sr=b&sig=P2KRnYlXGmflM7iv2N%2FYNS8hPwZ2erIgdsV4kU7cGvM%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:50:04.0885604Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:50:04.0885604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf_pu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-pf-2021-09-17-19-51-01-adde5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:51:00.3893514Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:51:00.3893514Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf-pf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf-pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pf-2021-09-17-19-53-29-35b3d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:53:28.4521693Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:53:28.4521693Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu_pf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tu_pu-2021-09-17-19-56-23-1b2bc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","parametersLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplateparamsWithContentVersion?sp=r&st=2021-09-17T19:55:23Z&se=2021-09-18T03:55:23Z&spr=https&sv=2020-08-04&sr=b&sig=QnMqU5RvmGCDdROKXSBnlzT1NLiF0yWB7nx4XQbmj%2Bk%3D"},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate?sp=r&st=2021-09-17T19:47:55Z&se=2021-09-18T03:47:55Z&spr=https&sv=2020-08-04&sr=b&sig=rquw9ABEqUp8Poi27E0x3z%2B60tz6YxpjTfVeUY2aO1c%3D"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-17T19:54:42.7520085Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T19:56:22.212836Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tu_pu","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tu_pu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{"adVnetName":{"value":"ad-vnet"},"adVnetSubscriptionId":{"value":"ec0f79d3-16f0-4892-8165-f569a92c8273"},"dnsServerPrivateIp":{"value":"10.0.0.4"},"adminUsername":{"value":"bmoore"},"adSubnetName":{"value":"ad-vnet-subnet"},"adDomainName":{"value":"corp.mydomain.com"},"adVnetRG":{"value":"aad-stack"},"adminPassword":{"reference":{"keyVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsgroup/providers/Microsoft.KeyVault/vaults/bmoore-demo"},"secretName":"adminPass"}}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''dnsLabelPrefix'' at + line ''8'' and column ''27'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T19:56:48.2655372Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T19:56:48.2655372Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5ejpykmx5ntv5cb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5ejpykmx5ntv5cb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-09-16-20-08-51-ce0e9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.0892422S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-16T20:08:51.0755724Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T20:08:51.0755724Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptions5hyylvuxj4faysmdp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptions5hyylvuxj4faysmdp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteBlankStack-2022-09-16-23-47-41-5e051","duration":"PT7.1129529S","parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-16T23:47:40.4967826Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-16T23:47:40.4967826Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteBlankStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteBlankStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT1.7182791S","parameters":{"name":{"value":"resource2"},"rgLocation":{"value":"sup"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1/snapshots/2022-10-05-20-32-32-27029'' - for more details. Correlation id: ''454549dc-5e71-4c3c-b2b3-43bca78fe318''","details":[{"code":"LocationNotAvailableForResourceGroup","message":"The - provided location ''sup'' is not available for resource group. List of available - regions is ''eastasia,southeastasia,eastus,eastus2,westus,westus2,westus3,centralus,northcentralus,southcentralus,northeurope,westeurope,japaneast,japanwest,brazilsouth,australiasoutheast,australiaeast''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-19T15:52:21.0467759Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T20:32:32.0727294Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-16-57-56-e9c43","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe","duration":"PT6.8786056S","parameters":{"name":{"value":"cli-test-resource-two6osrj3tligfdtcy5rlqjfoyzxnbwmnmeapvkdt2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two6osrj3tligfdtcy5rlqjfoyzxnbwmnmeapvkdt2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two6osrj3tligfdtcy5rlqjfoyzxnbwmnmeapvkdt2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oner2jnzgo5dsar4u66gp5f7gw4qrqkbk7n2afbr4s"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3b2sylysnzgqqn7k3lyb5ftrsha5b5zykf7gprugrg275jrhe/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oner2jnzgo5dsar4u66gp5f7gw4qrqkbk7n2afbr4s/versions/v1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T16:57:36.2716797Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T16:57:56.0232934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionmkuehfx6hwipifk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionmkuehfx6hwipifk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-06-34-a1a70","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc","duration":"PT13.2674443S","parameters":{"name":{"value":"cli-test-resource-threeqv3lvsoj7cdpcdromrsefltwmtxjmagbktwdp"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeqv3lvsoj7cdpcdromrsefltwmtxjmagbktwdp"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeqv3lvsoj7cdpcdromrsefltwmtxjmagbktwdp/versions/v1"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned2424qsz63uosm4hn7k7whemcmjcjz74vypynsm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvunys2xats5ixetldmpyerjhe7mcihd2dunmpswwoktt4wlpc/providers/Microsoft.Resources/templateSpecs/cli-test-resource-oned2424qsz63uosm4hn7k7whemcmjcjz74vypynsm/versions/v1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:06:14.6595988Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:06:34.1532442Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionmzwglxbrrtbf5se","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionmzwglxbrrtbf5se"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-10-06-0d0c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4","duration":"PT3M23.0501268S","parameters":{"name":{"value":"cli-test-resource-threeykwg5my2zpfdj74ta2wv2lepx3zk6icbc7guz"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeykwg5my2zpfdj74ta2wv2lepx3zk6icbc7guz"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threeykwg5my2zpfdj74ta2wv2lepx3zk6icbc7guz/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoilwzioyz4ds75bj55xcaqg5xtd2ud2cccfm4ezc"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksmjbgcoca3ih5522ttsezewzd77newbsvxz7uljzevr4o42ox4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoilwzioyz4ds75bj55xcaqg5xtd2ud2cccfm4ezc/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:09:26.7434101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:10:06.1875441Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionzckp7la4pwskluz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionzckp7la4pwskluz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-31-12-8b874","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy","duration":"PT5M25.89651S","parameters":{"name":{"value":"cli-test-resource-three7o2rwory6iezqpwdwfrsjgp7yvsifmry347os"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three7o2rwory6iezqpwdwfrsjgp7yvsifmry347os"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three7o2rwory6iezqpwdwfrsjgp7yvsifmry347os/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomaravc7eik7ekx4q5awlmrqogyp3awydbhcvldm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksstk22vynjonyt3uhyr7upl3i6m34praxaittk4lz5mtpcwruy/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomaravc7eik7ekx4q5awlmrqogyp3awydbhcvldm/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:30:32.38851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:31:12.1404352Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionkdrgbj5ognpom6j","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionkdrgbj5ognpom6j"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-17-44-42-e9ffa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj","duration":"PT2M30.9847235S","parameters":{"name":{"value":"cli-test-resource-threek75bcxbvah77yvatscq5tyuk3fbqqhsq45cup"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threek75bcxbvah77yvatscq5tyuk3fbqqhsq45cup"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threek75bcxbvah77yvatscq5tyuk3fbqqhsq45cup/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two2tf7ve4ajub4lzk7lrdjlluem3wbszy5ss3kuxk"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksl2wh47yg5dn5tez3q7s6xxzsy352hd7356sit7yk6e7smjgaj/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two2tf7ve4ajub4lzk7lrdjlluem3wbszy5ss3kuxk/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T17:43:31.7295993Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T17:44:42.5225689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionzirya7ltnyfrjrk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionzirya7ltnyfrjrk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-18-22-37-7f3c8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.4735553S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksk7dhreu2ysr5jzua3qjkok3vdrqn7ei3234ydvfkvcyzf55mp/providers/Microsoft.Resources/templateSpecs/cli-test-template-specu5gzeiiuokf6oncksvatn5p5723oitrigrruvo/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:22:36.2230642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:22:36.2230642Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptiongfxlqvv2vtyurz7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptiongfxlqvv2vtyurz7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-18-33-44-dcc4b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw","duration":"PT8M23.9326765S","parameters":{"name":{"value":"cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three4ibqccv5ux6p35aapm473sdm3if6tgadkdcil/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoi3hfszg74pawdet67lw4weduikrzlcbu5m4repw"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twodg67fzd3hhvrwr7igfrrw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoi3hfszg74pawdet67lw4weduikrzlcbu5m4repw/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T18:33:02.8134694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:33:44.5184015Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionzqjh7x5s7gwyaoo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionzqjh7x5s7gwyaoo"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-20-19-04-45-241b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2","duration":"PT7M21.5758272S","parameters":{"name":{"value":"cli-test-resource-threejy4atc7ebqha337jz5wnwj4znm3fktgqr2iys"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threejy4atc7ebqha337jz5wnwj4znm3fktgqr2iys"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threejy4atc7ebqha337jz5wnwj4znm3fktgqr2iys/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twob6yi4atm5m42rqm4iw7bifpsvyezjxplk5xa3bp"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twokt3v4pbjrplbeegbyh5u2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twob6yi4atm5m42rqm4iw7bifpsvyezjxplk5xa3bp/versions/v1"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-20T19:04:03.7230574Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T19:04:44.7064451Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionfevunuisrnyt3a3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionfevunuisrnyt3a3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg-2022-09-21-17-15-21-791aa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT10.7361664S","parameters":{"name":{"value":"rg1"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg/snapshots/2022-09-21-17-15-21-791aa'' - for more details. Correlation id: ''7c4ad283-1c36-430b-81b8-ba3f7d4bedcf''","details":[{"code":"DeploymentFailed","message":"At + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":8,"linePosition":27,"path":"properties.template.parameters.dnsLabelPrefix"}}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-09-17T22:00:21.3463894Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-17T22:00:21.3463894Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/filiz-test-stack9","type":"Microsoft.Resources/deploymentStacks","name":"filiz-test-stack9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"AuthorizationFailed","message":"The + client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' + does not have authorization to perform action ''Microsoft.Resources/deployments/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000'' or the + scope is invalid. If access was recently granted, please refresh your credentials.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T19:48:19.4198449Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T19:48:19.4198449Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionx372y3tmwlenjxtfjj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-20-51-37-6d840","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T20:51:35.6106822Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T20:51:35.6106822Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionbn7htjhcjochcfslei"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-20-21-05-42-d1951","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:05:40.8310162Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:05:40.8310162Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionp456bhvimha6sx6sh2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/lollllllllll-2021-09-20-21-12-37-d55bb","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:12:35.6680098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:12:35.6680098Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/lollllllllll","type":"Microsoft.Resources/deploymentStacks","name":"lollllllllll"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-36-06-92078","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:36:04.5554974Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:36:04.5554974Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionq5aopyqtlorpo5wj2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-40-18-c95d5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:40:16.9285842Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:40:16.9285842Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontpcvphs5afbqe3mzv"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-20-21-42-53-6c05c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-20T21:42:52.0782141Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-20T21:42:52.0782141Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionp3hbkle7xzthh6xlt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-46-16-5b7d4","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-21T16:46:13.0543587Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-21T16:46:13.0543587Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionewmqzzykasnctmxw2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-21-16-48-03-0ab48","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-21T16:48:00.0416885Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-21T16:48:00.0416885Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionkpy73ror6yqiqpb7w"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-09-23-13-58-27-acca5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T13:58:19.9106289Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T13:58:19.9106289Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionrufrlzqfdg5636ne7e"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-09-33-d376f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:09:26.2162792Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:09:26.2162792Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionx36hhowd5zxoz6ws5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-11-05-a320b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:10:56.9901386Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:10:56.9901386Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionguk6suy7zpzbwvs5v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-14-24-ff660","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:14:16.6982424Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:14:16.6982424Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionjjk7y2qhtapjwdetg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-19-04-42851","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:18:57.6431545Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:18:57.6431545Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionpqi57y634sx5hd67b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-14-28-42-f95c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T14:28:35.7385575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T14:28:35.7385575Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionthdkysq5afynpyqfb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-09-23-15-36-34-a3232","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-23T15:36:25.6807389Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T15:36:25.6807389Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription4vrojotwcmtb7f2bi"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-27T20:32:39.4217317Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-27T20:32:39.4217317Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_bb_50","type":"Microsoft.Resources/deploymentStacks","name":"hp_bb_50"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-30T16:50:53.0934702Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T14:14:15.7887316Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hptest2","type":"Microsoft.Resources/deploymentStacks","name":"hptest2"},{"location":"eastus","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mySubStack-2023-03-15-16-29-04-2904d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.2627767S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/uniquestorage001'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/statefulResources/uniquestorage001"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''3a3c19cd-3d81-4315-850c-9f2ae51ba54a''","details":[{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"message":"No - HTTP resource was found that matches the request URI ''https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/rg1?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T17:15:20.4586627Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T17:15:20.4586627Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_test_rg_2-2022-09-21-17-22-24-ed643","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2M23.2901893S","outputs":{},"parameters":{"name":{"value":"rg3"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-21T17:17:59.5139579Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T17:22:24.003861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT5.8582903S","parameters":{"name":{"value":"cli-test-resource-onegkgdi4yotzdtexrsdb7qut76zn42rwbqefofirf"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionsfdyznoddy7ealq/snapshots/2022-09-22-20-32-02-822ed'' - for more details. Correlation id: ''43eb9464-9862-4a29-a2ec-2698f6eaebf1''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''location'' at line ''22'' - and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is - not expected at this location. Please see https://aka.ms/arm-template-expressions + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Providers.Test/statefulResources/uniquestorage001'' + under resource group '''' was not found. For more details please go + to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-02-01T21:35:50.3861621Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:29:04.59173Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/mySubStack","type":"Microsoft.Resources/deploymentStacks","name":"mySubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.001939S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone/snapshots/2022-04-05-17-29-24-64a9d'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''236c6ae3-acd8-43c3-b27b-9dcf44e35d59''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-05T16:27:38.5417212Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-05T17:29:23.9447321Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpone","type":"Microsoft.Resources/deploymentStacks","name":"hpone"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT2.9251897S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22/snapshots/2022-05-26-20-18-12-269e3'' + for more details. Correlation id: ''845b9eba-1687-4504-916e-8d69d56d2847''","details":[{"code":"InvalidRequestContent","message":"The + request content was invalid and could not be deserialized: ''Required property + ''contentVersion'' not found in JSON. Path ''properties.template'', line 6, + position 5.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-18T20:23:06.5444995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T20:18:11.4113067Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp22","type":"Microsoft.Resources/deploymentStacks","name":"hp22"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-04-27-17-16-32-c05e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT46.17268S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks6fq7lg6a2c4oyl3tm4nclfpwjghhuuos22zvw66monjatto4w/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpwlpcdu3ucnpgghodkeam3nnwaqdsi5z5ynglm/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg/snapshots/2022-04-27-17-16-32-c05e0'' + for more details.","details":[{"code":"DeploymentFailed","message":"Unable + to retrieve the template content from the resource ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks6fq7lg6a2c4oyl3tm4nclfpwjghhuuos22zvw66monjatto4w/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpwlpcdu3ucnpgghodkeam3nnwaqdsi5z5ynglm/versions/v1''. + Either the template spec version does not exist, or the user does not have + access. Please see https://aka.ms/arm-deploy for usage details. Error Code: + ''ServerTimeout'', Detailed Error: The request timed out. Diagnostic information: + timestamp ''20220427T171653Z'', subscription id ''a1bfa635-f2bf-42f1-86b5-848c674fc321'', + tracking id ''dc9b4f61-4ce3-4ffc-b98e-70ecee88b3d7'', request correlation + id ''627c1564-4808-480c-9296-e597bcbaa4a1''. Diagnostic information: timestamp + ''20220427T171653Z'', tracking Id ''dc9b4f61-4ce3-4ffc-b98e-70ecee88b3d7'', + request correlation Id ''627c1564-4808-480c-9296-e597bcbaa4a1''."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:16:29.2922667Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:16:29.2922667Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5zuz6yhbgxceujg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-27-17-17-28-e6e77","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT16.7042892S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:17:25.9228775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:17:25.9228775Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription4bas6bgmmdut36t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription4bas6bgmmdut36t"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detach-test-2022-06-15-17-25-59-01c8c","duration":"PT34.0312008S","outputs":{"storageAccountAName":{"type":"String","value":"deploymentscopetesta"},"storageAccountBName":{"type":"String","value":"deploymentscopetestb"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:53:43.8289431Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-15T17:25:59.1555357Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detach-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detach-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-detatch-test-2022-06-14-21-57-39-972ba","duration":"PT10.1409527S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test/snapshots/2022-06-14-21-57-39-972ba'' + for more details. Correlation id: ''723328db-c1c9-4b5d-9fa9-9429eb056224''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-b'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest-a'' under + resource group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T21:57:38.2436258Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T21:57:38.2436258Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-detatch-test","type":"Microsoft.Resources/deploymentStacks","name":"dante-detatch-test"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dante-example-storageaccount-2022-06-14-22-13-56-d5b2f","duration":"PT12.7634725S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount/snapshots/2022-06-14-22-13-56-d5b2f'' + for more details. Correlation id: ''bbdbbf47-5555-4a8e-901c-4a6d53b094aa''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-06-14T22:13:54.9096146Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-14T22:13:54.9096146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dante-example-storageaccount","type":"Microsoft.Resources/deploymentStacks","name":"dante-example-storageaccount"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT4.3648936S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13/snapshots/2022-06-17-18-53-18-03d4c'' + for more details. Correlation id: ''b864b76e-1dd6-41d5-a0b6-f08ab4aa49e3''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''sqlServerName'' at line + ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-06-17T18:53:16.7933655Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-17T18:53:16.7933655Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/teststack13","type":"Microsoft.Resources/deploymentStacks","name":"teststack13"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dummy-2022-06-23-17-09-19-b7d99","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.1677588S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy/snapshots/2022-06-23-17-09-19-b7d99'' + for more details. Correlation id: ''a0f6b921-5643-42c2-84b8-7091762fc357''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:09:17.4941031Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:09:17.4941031Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dummy","type":"Microsoft.Resources/deploymentStacks","name":"dummy"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteTestStack-2022-09-07-17-32-25-5a92d","duration":"PT9.0890768S","parameters":{"objectId":{"value":"5d175732-fcca-47ea-b831-c6012c843923"},"secretName":{"value":"MySecret"},"keyVaultName":{"value":"danted-stackstest1523"},"secretValue":{"value":"HelloToTheWorld"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack/snapshots/2022-09-07-17-32-25-5a92d'' + for more details. Correlation id: ''3334e5a3-5ab1-4a77-9ab0-3d02b5c5f8da''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''Microsoft.KeyVault/vaults/danted-stackstest1523'' + is not defined in the template. Please see https://aka.ms/arm-template for + usage details.''."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-06T23:34:18.5382285Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T17:32:24.3045971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteTestStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteTestStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteStorageStack-2022-09-07-18-33-27-a89a9","duration":"PT43.548586S","outputs":{},"parameters":{"namePrefix":{"value":"danted1234"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-09-07T18:05:16.4036646Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-07T18:33:25.9618998Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteStorageStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteStorageStack"},{"location":"centralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/9_19_test1-2022-09-26-16-20-50-2da1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.5093326S","parameters":{"name":{"value":"resource2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:47.4745761Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:47.4745761Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/9_19_test1","type":"Microsoft.Resources/deploymentStacks","name":"9_19_test1"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/deployments/subStack-2022-11-04-01-38-25-933c7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","duration":"PT10.0476458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage3"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T01:38:22.5331641Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T01:38:22.5331641Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/subStack","type":"Microsoft.Resources/deploymentStacks","name":"subStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/testStackPollingTest-2022-11-15-18-00-23-43c41","duration":"PT22.548223S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:55:43.6664349Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:23.6612325Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/testStackPollingTest","type":"Microsoft.Resources/deploymentStacks","name":"testStackPollingTest"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT1.9671172S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''cefa0e14-4fbb-43e0-9588-0cee65bbc59c''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''ubuntusimplevm1storage'' + at line ''11'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:32:02.0782009Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:32:02.0782009Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionsfdyznoddy7ealq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionsfdyznoddy7ealq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.3087632S","parameters":{"name":{"value":"cli-test-resource-onersf4dv6movto25zukrlgjn6ez373e2nziueypg3"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionskmhuw2rtr6wm7k/snapshots/2022-09-22-20-35-12-41fba'' - for more details. Correlation id: ''4b8f357e-9f1e-4e64-b3f7-cd6d54165142''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''location'' at line ''22'' - and column ''21'' is not valid: The template function ''RESOURCEGROUP'' is - not expected at this location. Please see https://aka.ms/arm-template-expressions + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":11,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-17T15:00:59.2195436Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-17T15:00:59.2195436Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/myWindowsSubStack","type":"Microsoft.Resources/deploymentStacks","name":"myWindowsSubStack"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"duration":"PT2.0910917S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''e83b3b2a-c758-4692-94cf-96619c2695e4''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''ubuntusimplevm1storage'' + at line ''11'' and column ''9'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions + for usage details.. Please see https://aka.ms/arm-template-expressions for + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":11,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-17T15:23:04.6074523Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-17T15:23:04.6074523Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/myWindosSubStack","type":"Microsoft.Resources/deploymentStacks","name":"myWindosSubStack"},{"location":"eastus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/deployments/stuartko_DifferenOpTest-2023-02-03-01-15-58-49225","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","duration":"PT5.704015S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T01:13:43.7132906Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T01:15:58.4641266Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/stuartko_DifferenOpTest","type":"Microsoft.Resources/deploymentStacks","name":"stuartko_DifferenOpTest"},{"location":"eastus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/GokulteststackDA-2023-03-07-22-39-46-536b3","duration":"PT6.276029S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/LocationRestriction"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"InvalidPolicyDefinitionIdUpdate","message":"The + policy assignment ''location-lock'' create request is invalid. Cannot update + existing assignment''s policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2'' + with new policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/LocationRestriction''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''c327f566-317e-4dcc-a447-a8b5246ef34a''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"InvalidPolicyDefinitionIdUpdate","message":"The + policy assignment ''location-lock'' create request is invalid. Cannot update + existing assignment''s policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2'' + with new policy definition ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/LocationRestriction''."}]}]}},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-03-07T22:39:45.7871482Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-07T22:39:45.7871482Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/GokulteststackDA","type":"Microsoft.Resources/deploymentStacks","name":"GokulteststackDA"},{"location":"eastus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/newStack3-2023-03-30-15-59-54-91c60","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.677457S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-30T15:59:54.5274894Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-30T15:59:54.5274894Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/newStack3","type":"Microsoft.Resources/deploymentStacks","name":"newStack3"},{"location":"eastus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpstack1-2023-04-05-17-01-47-4baaa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT5.4917049S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/hpsa11'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts/hpsa11"}],"error":{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed. Correlation id: ''e4d9a0c9-1b9b-4456-bc1e-bd4140ac6eae''.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Storage/storageAccounts/hpsa11'' + under resource group '''' was not found. For more details please go + to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-30T16:03:05.375117Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-05T17:01:47.4519668Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpstack1","type":"Microsoft.Resources/deploymentStacks","name":"hpstack1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-01T13:57:41.1847322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T13:57:41.1847322Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription3mvfn2m64rncsvh"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-01T14:07:15.4046137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-01T14:07:15.4046137Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionr2b7gps6mqwzwxg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp2_bb_50-2021-11-05-16-55-41-e4b25","parameters":{"bar":{"value":"xyz"},"foo":{"value":"abc"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T16:55:41.0189076Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T16:55:41.0189076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp2_bb_50","type":"Microsoft.Resources/deploymentStacks","name":"hp2_bb_50"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-04T16:26:50.5947681Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-11T16:24:03.7631746Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_df_1","type":"Microsoft.Resources/deploymentStacks","name":"hp_df_1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks35jzerqghlxs6t25f7sgeo3mg47vhx7blxsffr4twrtt2wqfh/providers/Microsoft.Resources/templateSpecs/cli-test-template-specnvhjdhzrakkbsok5zx7qzqotfml5msqbgpcecp/versions/v1/versions/v1'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T14:37:19.2142448Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T14:37:19.2142448Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription4prufmvnho2jfjl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription4prufmvnho2jfjl"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_prod_sub_create-2021-11-17-20-45-56-90d18","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T14:25:40.0202065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T20:45:56.782397Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create","type":"Microsoft.Resources/deploymentStacks","name":"hp_prod_sub_create"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"InvalidTemplateSpec","message":"The + template link ID ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbivxu37ndb4tvejilvp63yzfosdccbk4ls6jt24gm5dzslijo/providers/Microsoft.Resources/templateSpecs/cli-test-template-specoujjg46knuthvu6udgbdf45rslcbhf3f2h7ya2/versions/v1/versions/v1'' + is not a valid template spec version. Please see https://aka.ms/arm-template + for usage details.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T14:41:02.4356082Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T14:41:02.4356082Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionhlc4qs7c5exp7o3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-03-31-6de98","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T15:01:33.1770554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T15:03:30.7704565Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiona2fsaz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-18-15-08-45-d31ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-18T15:07:17.9213523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-18T15:08:18.4975412Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4mqjir","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4mqjir"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3086-2021-10-19-16-45-55-7b78d","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4478/providers/Microsoft.Resources/templateSpecs/ps4103/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T16:45:54.3518991Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T16:45:54.3518991Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3086","type":"Microsoft.Resources/deploymentStacks","name":"ps3086"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1836-2021-10-19-16-52-31-5f56a","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T16:52:30.9693468Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T16:52:30.9693468Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1836","type":"Microsoft.Resources/deploymentStacks","name":"ps1836"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6074-2021-10-19-17-06-24-0725f","parameters":{},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2020/providers/Microsoft.Resources/templateSpecs/ps6264/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:06:23.7002099Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:06:23.7002099Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6074","type":"Microsoft.Resources/deploymentStacks","name":"ps6074"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps175-2021-10-19-17-12-30-13a35","parameters":{"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:12:29.3345984Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:12:29.3345984Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps175","type":"Microsoft.Resources/deploymentStacks","name":"ps175"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4274-2021-10-19-17-15-01-bf8cf","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7420/providers/Microsoft.Resources/templateSpecs/ps3580/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:14:49.4351416Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:15:01.180634Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4274","type":"Microsoft.Resources/deploymentStacks","name":"ps4274"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1583-2021-10-19-17-19-07-a7ceb","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:18:25.7212979Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:19:07.1648963Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1583","type":"Microsoft.Resources/deploymentStacks","name":"ps1583"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1867-2021-10-19-17-19-47-c2408","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:19:46.7570435Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:19:46.7570435Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1867","type":"Microsoft.Resources/deploymentStacks","name":"ps1867"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps437-2021-10-19-17-20-07-b9cb3","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:20:06.8260216Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:20:06.8260216Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps437","type":"Microsoft.Resources/deploymentStacks","name":"ps437"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3906-2021-10-19-17-24-02-c7d1e","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:23:50.912183Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:24:02.5159965Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3906","type":"Microsoft.Resources/deploymentStacks","name":"ps3906"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps781-2021-10-19-17-31-31-e074b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:30:54.8199045Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:31:31.5117985Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps781","type":"Microsoft.Resources/deploymentStacks","name":"ps781"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5796-2021-10-19-17-32-20-2861b","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:32:19.6402071Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:32:19.6402071Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5796","type":"Microsoft.Resources/deploymentStacks","name":"ps5796"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5420-2021-10-19-17-32-38-34362","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:32:37.6073194Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:32:37.6073194Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5420","type":"Microsoft.Resources/deploymentStacks","name":"ps5420"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3205-2021-10-19-17-40-19-0072a","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:40:18.9660861Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:40:18.9660861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3205","type":"Microsoft.Resources/deploymentStacks","name":"ps3205"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4696-2021-10-19-17-41-14-f8cda","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-10-19T17:41:13.3903692Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-10-19T17:41:13.3903692Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4696","type":"Microsoft.Resources/deploymentStacks","name":"ps4696"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-13-54-08-2b923","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-21T13:53:05.5338226Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T13:54:07.7508046Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfgagz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-21-14-48-03-88639","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-21T14:47:02.3811951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T14:48:02.5162767Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionjyw5ut"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-27-15-26-45-2c28d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-27T15:25:42.4421091Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-27T15:26:44.5347824Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionb2aqz7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/shouldnotexist-2021-11-01-16-25-26-833dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T18:41:02.8192804Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-01T16:25:25.8944733Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/shouldnotexist","type":"Microsoft.Resources/deploymentStacks","name":"shouldnotexist"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-10-29-17-19-25-1c304","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:19:25.0094772Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:19:25.0094772Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription56r32mivz7ic36w","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription56r32mivz7ic36w"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-28-02-94702","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:27:42.3445727Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:01.9714966Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionpj6t3z"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-27-43-a68dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:27:42.8855732Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:27:42.8855732Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioni4b323umyy3k574"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-28-06-2533f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:28:06.3731401Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:06.3731401Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionpojm5de5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-28-09-31c8c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:28:09.2279775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:28:09.2279775Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionyjeko7ve3l36w3v6h"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-42-24-2f8ab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:23.4565657Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:23.4565657Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionfsl2g3jp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-42-24-0564d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:24.0694861Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:24.0694861Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionphx6bp5e4tel4fwla"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-42-32-63c5a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:42:31.3859118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:42:31.3859118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnu2d3d"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-45-19-16e68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:44:59.3519432Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:19.3365624Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionowqqhr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-10-29-17-45-02-64560","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:02.0061035Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:02.0061035Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7uldyssruansxuj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7uldyssruansxuj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-10-29-17-45-24-f4ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:23.4694512Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:23.4694512Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionjx6cmmgp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-10-29-17-45-32-133fc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:31.4559907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:31.4559907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsbjahxgudnqrgvihgq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-10-29-17-45-32-e6c58","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:45:31.392848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:45:31.392848Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionnxupp5ejzazb2rb7i"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-17-56-19-4e06e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T17:55:17.899007Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T17:56:19.0801133Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription2itu4q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription2itu4q"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-10-29-18-53-09-45891","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-10-29T18:52:08.0432709Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-29T18:53:08.8891818Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony7lebm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-01-15-20-30-c3f89","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-01T15:19:26.5294367Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-01T15:20:30.1078116Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription3p34wp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription3p34wp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpts1-2021-11-05-14-45-36-2ba95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp_ts_1/versions/v1"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-01T16:26:23.8125615Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T14:45:36.2610103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpts1","type":"Microsoft.Resources/deploymentStacks","name":"hpts1"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/repro-2021-11-02-15-13-51-7e792","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverfarms/mysite"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details."},{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}]}},"systemData":{"createdBy":"fitopata@microsoft.com","createdByType":"User","createdAt":"2021-11-02T15:02:38.9889696Z","lastModifiedBy":"fitopata@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T15:13:51.4211642Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/repro","type":"Microsoft.Resources/deploymentStacks","name":"repro"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-16-47-05-b613c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-02T16:45:59.8209721Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T16:47:05.4842135Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbaje7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-02-17-15-54-8a1cc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-02T17:14:47.1456522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T17:15:53.8410163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionv2kamx"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-03-14-36-55-0dd0a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-03T14:35:51.3843559Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T14:36:55.445654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionv7lkhp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-14-58-49-c5759","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-04T14:57:45.2338258Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T14:58:48.7272611Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnsdzen"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-04-15-10-05-118df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-04T15:09:02.03315Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T15:10:05.0413021Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongu3gks"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-05-13-53-48-5597a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-05T13:52:45.154655Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-05T13:53:48.4051267Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxyjf27"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-08-17-51-41-6eeb0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-08T17:50:37.8777875Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-08T17:51:41.7610477Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionn3qvsz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9271-2021-11-11-22-18-03-98c08","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:16:44.9692359Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:18:02.6858472Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9271","type":"Microsoft.Resources/deploymentStacks","name":"ps9271"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4125-2021-11-11-22-19-41-17735","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7664/providers/Microsoft.Resources/templateSpecs/ps5253/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:19:13.5864143Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:19:41.4727654Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4125","type":"Microsoft.Resources/deploymentStacks","name":"ps4125"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6480-2021-11-11-22-21-19-29234","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:21:19.0918203Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:21:19.0918203Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6480","type":"Microsoft.Resources/deploymentStacks","name":"ps6480"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7927-2021-11-11-22-21-54-25b10","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:21:53.3918115Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:21:53.3918115Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7927","type":"Microsoft.Resources/deploymentStacks","name":"ps7927"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBZb4JAAIT%2fC2n71JXDAzQxDQUPrKAV7xez7i50g7LrLodg%2fO%2fVdjKPk3wzc1NScs2mNE2k0rspm0G4XIVKT%2fnJMi57qnqGKYzJmaRZA9a5IA3EzqrMjxIJyjPKUqlC%2fRjBTrMNIuMYgZYR6cDqHNvAalmoY7Yi1DR0lQtWUEyEVH2KBJMsyhoLIlkuEJEqJvzEqiclzCBK5AfkFBSP9APQNzTDAJoFNB1wQQpKyrcXmVC%2bZAlJ%2b%2bOW9Ox%2fDWwvz9dUTGrNDFbmJNRis8LT0eXSdOrleKzhUpbUYgGWSYXGCw3be2ejFyf2aQsPbL69ERJe6bt7dIh9x51r3W1UyXql%2b1c0w%2b6%2bRtwJV4R%2fuYNivt5OLifGg2uQTIZ2EpgDp3LtEkt%2fehpxsSuHh1l3s6Pls9xrEz%2bs3N8VKM52HAsSw4zgvwmPt%2b2Fr9x%2fAQ%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '130131' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 15:22:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 2d32aef2-e343-4073-9cbc-17d8dde59659 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBZb4JAAIT/C2n71JXDAzQxDQUPrKAV7xez7i50g7LrLodg/O/VdjKPk3wzc1NScs2mNE2k0rspm0G4XIVKT/nJMi57qnqGKYzJmaRZA9a5IA3EzqrMjxIJyjPKUqlC/RjBTrMNIuMYgZYR6cDqHNvAalmoY7Yi1DR0lQtWUEyEVH2KBJMsyhoLIlkuEJEqJvzEqiclzCBK5AfkFBSP9APQNzTDAJoFNB1wQQpKyrcXmVC%2BZAlJ%2B%2BOW9Ox/DWwvz9dUTGrNDFbmJNRis8LT0eXSdOrleKzhUpbUYgGWSYXGCw3be2ejFyf2aQsPbL69ERJe6bt7dIh9x51r3W1UyXql%2B1c0w%2B6%2BRtwJV4R/uYNivt5OLifGg2uQTIZ2EpgDp3LtEkt/ehpxsSuHh1l3s6Pls9xrEz%2Bs3N8VKM52HAsSw4zgvwmPt%2B2Fr9x/AQ%3D%3D + response: + body: + string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1257-2021-11-11-22-29-34-32f37","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:29:06.805572Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:29:33.6304101Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1257","type":"Microsoft.Resources/deploymentStacks","name":"ps1257"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8692-2021-11-11-22-36-25-9087d","parameters":{"workerSize":{"value":0},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2021-11-11T22:36:24.6329286Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2021-11-11T22:36:24.6329286Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8692","type":"Microsoft.Resources/deploymentStacks","name":"ps8692"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-15-07-37-06804","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T15:06:34.4666682Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T15:07:36.8624014Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhuwxf4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-20-18-81368","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T20:19:17.0338745Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T20:20:18.1175672Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionqxi3cc"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-20-42-21-f515c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T20:41:20.4753415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T20:42:21.4238094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontzqaxa"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-15-21-12-24-ad962","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-15T21:11:23.4123304Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T21:12:24.6476543Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionei4mxl"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ghImplicit-2021-11-16-23-31-28-914b9","parameters":{"resourceGroups":{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}]}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details."}]}]}]}},"systemData":{"createdBy":"tsunkaraneni@microsoft.com","createdByType":"User","createdAt":"2021-11-16T23:17:33.6981155Z","lastModifiedBy":"tsunkaraneni@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-16T23:31:28.1053874Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ghImplicit","type":"Microsoft.Resources/deploymentStacks","name":"ghImplicit"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-20-18-26-378e6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T20:17:25.3276637Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T20:18:26.5874089Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionegwphp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionegwphp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''resource-group'' could not be found.","details":[],"additionalInfo":[]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T20:58:13.256519Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T20:44:40.7588571Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_prod_sub_create_checje","type":"Microsoft.Resources/deploymentStacks","name":"hp_prod_sub_create_checje"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-17-21-03-16-860a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-17T21:02:09.9177231Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-17T21:03:16.4615691Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncio6eg"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-20-42-37-e61e7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T20:41:35.3698362Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T20:42:37.6788971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription53xmqc","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription53xmqc"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-hp-2021-11-22-16-13-15-0eef8","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:13:15.1673603Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:13:15.1673603Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-hp","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-hp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-02-19-64f5e","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T21:01:12.9792533Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T21:02:19.3094872Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongj7jxt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-18-21-09-35-16ebd","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-18T21:08:34.3282811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-18T21:09:35.8321305Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfayx2g"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-19-15-47-39-bcc03","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-19T15:46:36.9976152Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T15:47:38.9223058Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongsl66g"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-2-2021-11-22-16-13-37-7052c","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:13:37.2232093Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:13:37.2232093Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-2","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-2"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/deployment-scope-check-3-2021-11-22-16-20-06-ca8e4","resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed.","details":[{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed.","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/deploymentscopetest'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:17:46.80745Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:20:05.9319831Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-3","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/deployment-scope-check-4-2021-11-29-21-39-53-0b595","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:24:17.4398839Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:39:53.5762409Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/deployment-scope-check-4","type":"Microsoft.Resources/deploymentStacks","name":"deployment-scope-check-4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-16-36-51-5d65c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T16:35:48.7273275Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T16:36:51.51709Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionitmkv7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-22-20-12-41-5ff21","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:12:40.5996915Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:12:40.5996915Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionva3sz7wrzqtf33l"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-22-20-22-41-73158","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-22T20:21:38.9965642Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-22T20:22:40.9252552Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionarqnxn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-18-24-26d26","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:18:23.5873971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:18:23.5873971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionsiz2prxi6vbxyh2etp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-21-41-10fda","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:21:40.7597628Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:21:40.7597628Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionf75asqy2mhgj2sqpsm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-33-24-43bef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:33:23.6396632Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:33:23.6396632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription6vdfchz43hjnt7kwxo"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-37-39-6d955","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:37:38.8156461Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:37:38.8156461Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono5wqh3aoiohzvzfcfm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-38-50-889de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:38:50.3614385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:38:50.3614385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionjuctbdvbkjguzitx7f"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-41-06-92248","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:41:05.5285802Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:41:05.5285802Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionh5bkrfgbccrtfbdhz5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-42-38-ba2a6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:42:37.8691995Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:42:37.8691995Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionknaejm3og5bas5jkpz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-11-23-17-44-03-9ce80","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:44:02.9006464Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:44:02.9006464Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionzzplkusf2zvsmhzggk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-51-59-ff40b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:51:59.16261Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:51:59.16261Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionvowj2gofyk6buj2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-52-22-3d72e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:21.6718689Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:21.6718689Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription32tbzwoxcw3o47p"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-52-30-e1430","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:52:29.8700557Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:52:29.8700557Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription73aijj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription73aijj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-23-17-56-09-844fa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoqgwqussexxg66ymrst543wpub3upnbdmkmhiyfocpa3xxemt","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:09.0326907Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:09.0326907Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionh4n5xztslllhw4x"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-56-18-0ce56","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:18.6935485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:18.6935485Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioni6kvoq"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-17-56-31-0c0df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:31.5462705Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:31.5462705Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7fxkppfo7zjxops"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2021-11-23-17-56-34-7899c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:33.4824847Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:33.4824847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscriptionj7fhg6ue"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-17-56-38-552ef","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:56:37.4966065Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:56:37.4966065Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription5jbz4eroeykx26fve"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-17-59-27-8d937","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T17:58:26.3342468Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T17:59:27.4845119Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbzsjj5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-18-06-21-55c40","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T18:05:20.1114392Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T18:06:20.8912269Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsybkq5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-25-55-8fd86","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:12.9619798Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:54.9529578Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionga7dp7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-23-19-25-37-ffb78","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:36.6371094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:36.6371094Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfh6wfecrtjj5zdx"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-11-23-19-25-59-c950b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:25:59.2032539Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:25:59.2032539Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionikiwhbxw5ndot3xit"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-23-19-31-44-5240a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-23T19:30:41.5756247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T19:31:43.7650206Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionlqiyme"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2021-11-24-19-16-36-e6867","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:35.7893118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:35.7893118Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription66ypa5upg2pfb3t"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-16-58-c2832","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:57.5576844Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:57.5576844Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionywq5r7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-16-59-f87dd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:16:58.7502198Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:16:58.7502198Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionfadujkg3a6q4fjk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-11-24-19-19-34-88ace","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:19:33.747136Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:19:33.747136Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionkgifwkoqops7vm3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-24-19-31-08-86781","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-24T19:30:05.2703765Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-24T19:31:08.3046328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptioncbshrd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-19-13-40-17aac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T19:12:38.6813601Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T19:13:40.0640104Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvr4edm"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_without_g-2021-11-29-21-42-10-c2009","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T21:42:09.5934083Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T21:42:09.5934083Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_without_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_without_g"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_with_g-2021-12-07-20-49-53-051df","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-03T15:28:17.4309366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:49:52.8940999Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_g","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_g"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-14-59-8a737","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:13:57.3024898Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:14:59.1562923Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionbfjyut"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-11-29-22-29-28-b2644","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-11-29T22:28:26.0648359Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-29T22:29:28.6266343Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionnqdmkd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-15-00-43-29357","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T14:59:40.9859015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T15:00:42.9381807Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsrtls3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2021-12-02-17-53-24-e989d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:23.9806146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:23.9806146Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionzfynbbwfl4dxu3c"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-53-33-f4862","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:53:32.9424808Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:53:32.9424808Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmbw2n4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-02-17-56-03-19895","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-02T17:55:01.8710575Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-02T17:56:03.5791959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhdjd3v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-07-20-00-51-b5ff5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-07T19:59:50.6643582Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-07T20:00:51.6062934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4fxqgd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4fxqgd"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp_with_sub-2021-12-08-16-32-43-c2452","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T16:32:42.9595282Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T16:32:42.9595282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_with_sub","type":"Microsoft.Resources/deploymentStacks","name":"hp_with_sub"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-17-15-19-2cd64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T17:14:18.8752611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T17:15:19.7054891Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiony5ldy5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-12-17-a4884","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:11:14.7778945Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:16.8398105Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionw5ivt6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-25-34cfc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:24.7886153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:24.7886153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiontqixn5ilo5hqdews7b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2021-12-08-18-12-27-1f788","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:26.9790623Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:26.9790623Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiongvjpymhca6dfuqoka7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2021-12-08-18-12-30-8c463","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:12:30.1262328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:12:30.1262328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionepsh6zjkaskaeu3if"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-18-18-13-d1105","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T18:17:11.0038958Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T18:18:13.0350768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvbg4nd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-08-21-56-34-9ba7f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-08T21:55:32.8240914Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-08T21:56:34.8040817Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4jhuf4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4jhuf4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-18-08-12-2075b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T18:07:09.9834741Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T18:08:12.7517585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionahpf7q"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-15-19-18-02-c11d3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-15T19:17:01.3010016Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-15T19:18:02.1098855Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontd4wii"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-24-43-76005","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:23:44.1601094Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:24:43.7751834Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionabpjp6"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-39-21-17769","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:38:20.0706502Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:39:21.1471439Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvufmyb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2021-12-21-22-46-47-56b9b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-12-21T22:45:47.6087235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-21T22:46:47.4344306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionluulko","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionluulko"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-53-43-0f40f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:42.6439783Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:42.6439783Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiong2ggle"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-05-15-53-50-4e74f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:53:50.1247419Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:53:50.1247419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioniq5a5dy3j2c6niw"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-15-57-25-e6d2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T15:56:24.3582098Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T15:57:25.4526327Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionmdlsnz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-05-16-03-42-c8508","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-05T16:02:42.8167456Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-05T16:03:42.3665918Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionducg7f","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionducg7f"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-11-18-36-06-dda2b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-11T18:35:05.7116139Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-11T18:36:06.2338629Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfgqsud"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-14-18-15-27-acdd6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-14T18:14:26.0487064Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-14T18:15:27.3400342Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription4i5azd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription4i5azd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-10-04-cc503","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:09:02.7770183Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:10:04.5304519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionz52gwn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-20-17-35-50-c43db","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-20T17:34:37.6417781Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-20T17:35:49.9794586Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvrvr2z"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-17-54-52-14e95","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T17:53:52.4200522Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T17:54:52.1105374Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionfw7ehk"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-18-18-34-422f3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T18:17:33.515563Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T18:18:34.5338837Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiongqk6z5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-29-54-523ac","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:28:53.5745706Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:29:54.3253438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionxnsk3a"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-21-20-37-38-3d91a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-21T20:36:39.5196848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-21T20:37:38.8504394Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiontpp2a2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-26-00-05-11-e8bab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T00:04:10.5949153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-26T00:05:11.5105878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionajnwak","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionajnwak"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hpmatrix_sub_create_tf-2022-01-28-16-32-13-851e0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","description":"john + doe","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-26T19:08:31.1000817Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:32:13.4336579Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hpmatrix_sub_create_tf","type":"Microsoft.Resources/deploymentStacks","name":"hpmatrix_sub_create_tf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-28-16-25-40-dac1c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-28T16:24:39.5681099Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-28T16:25:40.5841768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiond4eoud"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/hp-template-sub-2022-02-25-19-24-11-02c37","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplate"},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:25:27.5973396Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-25T19:24:11.172495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp-template-sub","type":"Microsoft.Resources/deploymentStacks","name":"hp-template-sub"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-47-02-aa353","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:01.4659459Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:01.4659459Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionttxowuccsnmrsca"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-47-09-1fc68","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:47:09.1565385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:47:09.1565385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionvnmmdb"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-01-31-20-49-55-f898a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksixdxr522wqd67xg6alem5x3t5krdgprl5epfvcxbajmtv524b","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:49:54.3536113Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:49:54.3536113Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription5asxa3myyxfyofd","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription5asxa3myyxfyofd"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-20-50-04-c02d1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:03.393749Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:03.393749Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionhotem7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionhotem7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-20-50-11-cf3cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.4900414Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.4900414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionqwutbkouacph3pr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-20-50-11-b3e71","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T20:50:10.8186278Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T20:50:10.8186278Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription27jhysvm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription27jhysvm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackssp3hyepijtqinygsfestxpmy2baujbgyx35kixbfktjtlyhed","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm/snapshots/2022-01-31-21-09-46-a690b'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:45.6147851Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:45.6147851Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription46ncqkgl4xiighm","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscription46ncqkgl4xiighm"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-snapsho-2022-01-31-21-09-44-2850a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.5220936Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.5220936Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-snapshot-subscription64cljb42","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-snapshot-subscription64cljb42"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-09-44-8c7f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:43.6644255Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:43.6644255Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionsn3rfp"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-09-51-7f2c6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.4231225Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.4231225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontkdtbagmlsyno6njn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-09-52-1e397","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:09:51.3977049Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:09:51.3977049Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondwow5r3xvmct24n"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksqtskf55ul4u6tdlzndkdkphwnzrug2zlaz5gejlf4r4b32rfn","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of deploymentStack update failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov/snapshots/2022-01-31-21-15-31-65bdc'' + for more details.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template parameters ''foo, bar'' in the + parameters file are not valid; they are not present in the original template + and can therefore not be provided at deployment time. The only supported parameters + for this template are ''location, storageAccountName''. Please see https://aka.ms/arm-deploy/#parameter-file + for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":0,"linePosition":0,"path":""}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:30.9753025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:30.9753025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionemts7ybhsorjfov"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-15-47-c195b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:27.8976011Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.3485819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondbvorp"}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&%24skiptoken=JZBbb4IwAEb%2fC1n2tMrFG5qYpcP7gGwq3l6W2hasKK1tAcX436fb93ySc%2fLdjIxetM%2byVBndm7EazBfR3Ogae62F6prmCWUooSea6RqqcklrmJ9Mle8UlkxoxjNlInsXo1a9CWJnF4OGE9vAbe2awG24uNVuxLju2KaQvGCESmUGDEuueKxrM6p4LjFVJqHiyK9Py1wjnKp3JBgoHvRD0HMsxwGWCywbCEkLRsvXF5UyseApzXrjhprA%2fw3gJM%2bXTE4rqx1G7encStpX4o%2fO57pXLcZji5SqZC7PO2t4weOZReDWW9nFkX9AuQGr78kIy00Z9Lf4Jwk8ddhGnXV8VVVkBxUGS7itsPSuERHIHxRfs2iK9FmQS5BOhzAl1cBj%2fX4ZJqFve2e5sYYw3KcH8uk%2f84z7m4HkCSaJpAnSlPzlP56Gs8C4%2fwI%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '106836' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Apr 2023 15:22:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 830de125-6d7e-4f87-ae11-e237dd1402cf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview&$skiptoken=JZBbb4IwAEb/C1n2tMrFG5qYpcP7gGwq3l6W2hasKK1tAcX436fb93ySc/LdjIxetM%2ByVBndm7EazBfR3Ogae62F6prmCWUooSea6RqqcklrmJ9Mle8UlkxoxjNlInsXo1a9CWJnF4OGE9vAbe2awG24uNVuxLju2KaQvGCESmUGDEuueKxrM6p4LjFVJqHiyK9Py1wjnKp3JBgoHvRD0HMsxwGWCywbCEkLRsvXF5UyseApzXrjhprA/w3gJM%2BXTE4rqx1G7encStpX4o/O57pXLcZji5SqZC7PO2t4weOZReDWW9nFkX9AuQGr78kIy00Z9Lf4Jwk8ddhGnXV8VVVkBxUGS7itsPSuERHIHxRfs2iK9FmQS5BOhzAl1cBj/X4ZJqFve2e5sYYw3KcH8uk/84z7m4HkCSaJpAnSlPzlP56Gs8C4/wI%3D + response: + body: + string: '{"value":[{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-01-31-21-15-47-372f7","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:47.1545726Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:47.1545726Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionvhlamdfam2di6327v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-01-31-21-15-52-4485d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:52.0489531Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:52.0489531Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptiondio6hv5bbtenwfn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-15-57-551cf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:57.5343753Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:57.5343753Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionojaq6tv6hjecor4cxj"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-01-31-21-16-00-8a2b9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:15:59.6123268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:15:59.6123268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionxbn3n33a3yl4aazwty"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-01-31-21-19-31-cc84c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-01-31T21:18:31.5879148Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-01-31T21:19:31.6976428Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionk6jn5l"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT5.0963878S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp77/snapshots/2022-05-27-18-18-53-83c61'' + for more details. Correlation id: ''2a21bfec-0641-46c5-af29-d041271ae7cf''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template resource ''sqlServerName'' at line + ''15'' and column ''26'' is not valid: The template function ''RESOURCEGROUP'' + is not expected at this location. Please see https://aka.ms/arm-template-expressions for usage details.. Please see https://aka.ms/arm-template-expressions for - usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":22,"linePosition":21,"path":"properties.template.parameters.location"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:35:11.9447454Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:35:11.9447454Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionskmhuw2rtr6wm7k","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionskmhuw2rtr6wm7k"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-47-14-972ba","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4","duration":"PT15.6814346S","parameters":{"name":{"value":"cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoh6qzvze5mxzam7dhngnb4/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twooq5wdadv27o5i2cctctmx6g2xiax6wzgxjrzuig/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:47:13.8112644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:47:13.8112644Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription7k7qua5kilauxar","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription7k7qua5kilauxar"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-50-28-2582d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp","duration":"PT8.085962S","parameters":{"name":{"value":"cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twopq4avso5d2hsidmo7ynwp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twourdmi5ox3ivhyycurdi3lzko52hls6i2hy7v57t/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:50:27.947971Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:50:27.947971Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionxgidi443gs7bsju","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionxgidi443gs7bsju"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-53-16-ac27a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom","duration":"PT9.1791963S","parameters":{"name":{"value":"cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolnbkidtfl3yajdad23mom/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twow3xrzrhuj6bsn4jlihpj4taymg7745gyuh4kuap/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:53:15.3432029Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:53:15.3432029Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionoim424rwyat4pwz","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionoim424rwyat4pwz"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-22-20-55-32-72c5c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam","duration":"PT11.6937557S","parameters":{"name":{"value":"cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoqw4twrlopyi5rfoq65fam/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twou3fmstavhccquivhu3j6xchxott3txbkiug6o3v/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-22T20:55:31.1604426Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-22T20:55:31.1604426Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionmwtu6gya3efz7ei","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionmwtu6gya3efz7ei"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-09-23-14-29-46-343d9","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT20.9428413S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T14:29:45.8083108Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T14:29:45.8083108Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioneyvesfasnb47vyl","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioneyvesfasnb47vyl"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.3819009S","parameters":{"name":{"value":"deleteall"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_3/snapshots/2022-09-23-15-30-01-c5b29'' - for more details. Correlation id: ''614d86e2-5120-4d85-a67d-c70f9fed1a4a''","details":[{"code":"LocationNotAvailableForResourceType","message":"The - provided location ''WestUS2'' is not available for resource type ''Microsoft.Storage/storageAccounts''. - List of available regions for the resource type is ''westus,northcentralus''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:27:17.8584378Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:30:01.1602379Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.0477532S","parameters":{"name":{"value":"deleteall"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_4/snapshots/2022-09-23-15-31-02-0a73b'' - for more details. Correlation id: ''83a96118-0887-45dd-8b72-5163f9f71249''","details":[{"code":"LocationNotAvailableForResourceType","message":"The - provided location ''WestUS2'' is not available for resource type ''Microsoft.Storage/storageAccounts''. - List of available regions for the resource type is ''westus,northcentralus''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:31:01.1416964Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:31:01.1416964Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_4"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.7912441S","parameters":{"name":{"value":"deleteall"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_5/snapshots/2022-09-23-15-32-16-563db'' - for more details. Correlation id: ''87e972c5-2495-487a-b3f9-a9f593db1286''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The resource ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts/eninevrndijga'' - at line ''37'' and column ''13'' doesn''t depend on parent resource ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/resourceGroups/deleteall''. - Please add dependency explicitly using the ''dependsOn'' syntax. Please see - https://aka.ms/arm-template/#resources for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":37,"linePosition":13,"path":"properties.template.resources[0].resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:32:15.128266Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:32:15.128266Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_5"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.8943491S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_7/snapshots/2022-09-23-15-35-01-2ed1f'' - for more details. Correlation id: ''015350a9-8b6c-4381-804f-8a32cfbfd413''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''eninevrndijga'' at line - ''37'' and column ''13'' is not valid: Unable to parse language expression - ''resourceId(''Microsoft.Resources/resourceGroups'', [parameters(''name'')])'': - expected token ''Identifier'' and actual ''LeftSquareBracket''.. Please see - https://aka.ms/arm-template-expressions for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":37,"linePosition":13,"path":"properties.template.resources[0].resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:35:01.0066347Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:35:01.0066347Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_7","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_7"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.9477734S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_8/snapshots/2022-09-23-15-36-16-e2688'' - for more details. Correlation id: ''3ce67eef-85da-4ccc-83bc-b3622e65fa4c''","details":[{"code":"InvalidTemplate","message":"Deployment - template validation failed: ''The template resource ''eninevrndijga'' at line - ''37'' and column ''13'' is not valid: Unable to parse language expression - ''resourceId(''Microsoft.Resources/resourceGroups'', [parameters(''name'')]))'': - expected token ''Identifier'' and actual ''LeftSquareBracket''.. Please see - https://aka.ms/arm-template-expressions for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":37,"linePosition":13,"path":"properties.template.resources[0].resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:36:15.3298933Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:36:15.3298933Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_8","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_8"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg_9-2022-09-23-15-54-16-fb8a5","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT2H18M57.7724546S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/delete_all_rg"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9/snapshots/2022-09-23-15-54-16-fb8a5'' - for more details. Correlation id: ''599c7fa6-ce79-4c13-95e1-184261b2236b''","details":[{"code":"DeploymentFailed","message":"At - least one resource deployment operation failed. Please list deployment operations - for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceDeploymentFailure","message":"The - resource provision operation did not complete within the allowed timeout period."},{"message":"No - HTTP resource was found that matches the request URI ''https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/delete_all_rg?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-23T15:37:47.4052402Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-23T15:54:15.6351745Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_9"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dantedSubStack23-2022-10-03-21-53-51-75f93","duration":"PT24.0446749S","parameters":{"specVersionName":{"value":"V2"},"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-10-03T15:34:07.8286194Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-03T21:53:51.2117933Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/dantedSubStack23","type":"Microsoft.Resources/deploymentStacks","name":"dantedSubStack23"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check-2022-10-12-18-07-27-4c9ae","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT11.4765991S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-06T15:30:30.9903848Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-12T18:07:27.3697786Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check","type":"Microsoft.Resources/deploymentStacks","name":"check"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/temp-2022-10-06-15-30-48-73c1f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.0257586S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-06T15:30:47.4274263Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-06T15:30:47.4274263Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/temp","type":"Microsoft.Resources/deploymentStacks","name":"temp"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack2-2022-11-17-02-42-35-fa0fa","duration":"PT13M49.1696423S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"},"specVersionName":{"value":"V2"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"}],"deletedResources":[],"failedResources":[{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The - client ''danted@microsoft.com'' with object id ''5d175732-fcca-47ea-b831-c6012c843923'' - has permission to perform action ''Microsoft.Resources/templateSpecs/delete'' - on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec''; + usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":15,"linePosition":26,"path":"properties.template.parameters.sqlServerName"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T15:44:34.5616677Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-27T18:18:51.5771521Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp77","type":"Microsoft.Resources/deploymentStacks","name":"hp77"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-11-17-06-09-dc3dc","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.3437174S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:19.5709979Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:08.2890473Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptionuyruv3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptionuyruv3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-05-36-5884b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT14.3473298S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:34.9404604Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:05:34.9404604Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription7je46pkv4ly2w7sdt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription7je46pkv4ly2w7sdt"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-11-17-05-59-02f1d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.5794656S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:05:57.7866312Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:05:57.7866312Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionawdwgojr2azfies","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionawdwgojr2azfies"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-06-09-8433b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.3102277S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:06:08.197594Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:08.197594Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptiono2u76jatulle7jxhjf","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptiono2u76jatulle7jxhjf"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-06-11-ddf64","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.1844204S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:06:09.3601536Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:06:09.3601536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription4wd5bhjmz6soao5lee","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription4wd5bhjmz6soao5lee"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-11-17-09-08-2aedf","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.8135181S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:08:15.9398492Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:07.7562419Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscription5hi54v","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscription5hi54v"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-08-37-7e9d6","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT10.6105923S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:08:35.4317746Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:08:35.4317746Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptiontds4i2di4gqv4ikk4","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptiontds4i2di4gqv4ikk4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2022-04-11-17-09-06-0fa1a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.1000913S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:03.1785622Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:03.1785622Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionny3opsthmn5kvl7","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionny3opsthmn5kvl7"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-09-11-08ec1","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT14.0165756S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:08.9243576Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:08.9243576Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionoulsxedw52jvdiqpjn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionoulsxedw52jvdiqpjn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-04-11-17-09-15-a6fb0","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.8216339S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:09:13.4236281Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:09:13.4236281Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscriptionn23qblpzc27zivvotn","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscriptionn23qblpzc27zivvotn"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-11-52-2b52e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT12.009615S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:11:50.1377153Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:11:50.1377153Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionnlqtjrafznkqelasu","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionnlqtjrafznkqelasu"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-11-17-14-01-9c921","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.7837082S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-11T17:13:59.5897268Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T17:13:59.5897268Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionpuoh26b6axfjpjbgs","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionpuoh26b6axfjpjbgs"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT3.4349888S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp23/snapshots/2022-04-19-19-53-26-26125'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''411f217a-ffdc-43fe-bf71-24b75e6b2a55''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-19T19:53:24.0334447Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:53:24.0334447Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp23","type":"Microsoft.Resources/deploymentStacks","name":"hp23"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"duration":"PT6.175094S","parameters":{},"templateLink":{"uri":"https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat"},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp82/snapshots/2022-04-21-18-57-25-ae0bd'' + for more details.","details":[{"code":"InvalidContentLink","message":"Unable + to download deployment content from ''https://hpstorageaccount1000.blob.core.windows.net/hpcontainer/simpletemplat''. + The tracking Id is ''0fc50863-9f11-491c-be2f-26bc1813e556''. Please see https://aka.ms/arm-deploy + for usage details.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-21T18:57:22.9382114Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-21T18:57:22.9382114Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp82","type":"Microsoft.Resources/deploymentStacks","name":"hp82"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4306-2022-04-22-16-48-19-6e0e2","duration":"PT23.6963395S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:46:37.4846781Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:48:18.2376819Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4306","type":"Microsoft.Resources/deploymentStacks","name":"ps4306"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4441-2022-04-22-16-51-09-f271e","duration":"PT26.0686067S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps2399/providers/Microsoft.Resources/templateSpecs/ps2494/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:50:33.598735Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:51:08.7092523Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4441","type":"Microsoft.Resources/deploymentStacks","name":"ps4441"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8719-2022-04-22-16-53-52-88805","duration":"PT31.0064039S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:53:50.4870495Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:53:50.4870495Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8719","type":"Microsoft.Resources/deploymentStacks","name":"ps8719"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1307-2022-04-22-16-55-15-023dd","duration":"PT29.0285475S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T16:55:12.7052984Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T16:55:12.7052984Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1307","type":"Microsoft.Resources/deploymentStacks","name":"ps1307"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3275-2022-04-22-17-03-16-899fe","duration":"PT25.4700707S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:02:41.1244637Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:03:15.1082627Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3275","type":"Microsoft.Resources/deploymentStacks","name":"ps3275"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2022-2022-04-22-17-08-10-c1758","duration":"PT9.3108048S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"bar":{"value":"xyz"},"foo":{"value":"abc"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:08:07.8577681Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:08:07.8577681Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2022","type":"Microsoft.Resources/deploymentStacks","name":"ps2022"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1913-2022-04-22-17-31-58-8ecee","duration":"PT26.4054684S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:30:23.5098344Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:31:56.7883282Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1913","type":"Microsoft.Resources/deploymentStacks","name":"ps1913"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5815-2022-04-22-17-34-13-629ba","duration":"PT27.825526S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8794/providers/Microsoft.Resources/templateSpecs/ps283/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:33:25.815992Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:34:12.9983797Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5815","type":"Microsoft.Resources/deploymentStacks","name":"ps5815"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps832-2022-04-22-17-37-11-73ef9","duration":"PT30.1533737S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:37:09.0011353Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:37:09.0011353Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps832","type":"Microsoft.Resources/deploymentStacks","name":"ps832"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps8224-2022-04-22-17-38-26-a1b80","duration":"PT32.0832653S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-22T17:38:24.0548236Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-22T17:38:24.0548236Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps8224","type":"Microsoft.Resources/deploymentStacks","name":"ps8224"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5967-2022-04-25-17-00-49-29ee3","duration":"PT30.705107S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T16:55:03.7751295Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:00:46.5883527Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5967","type":"Microsoft.Resources/deploymentStacks","name":"ps5967"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1886-2022-04-25-17-02-47-b923e","duration":"PT27.2589278S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8033/providers/Microsoft.Resources/templateSpecs/ps1794/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:02:07.7242282Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:02:45.470847Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1886","type":"Microsoft.Resources/deploymentStacks","name":"ps1886"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2292-2022-04-25-17-05-31-ded65","duration":"PT31.3371289S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:05:28.4068234Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:05:28.4068234Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2292","type":"Microsoft.Resources/deploymentStacks","name":"ps2292"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2994-2022-04-25-17-06-45-05ecf","duration":"PT27.2821172S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:06:43.0639185Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:06:43.0639185Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2994","type":"Microsoft.Resources/deploymentStacks","name":"ps2994"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9521-2022-04-25-17-14-25-5f3bb","duration":"PT26.7493798S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:13:52.3029272Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:14:24.7369532Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9521","type":"Microsoft.Resources/deploymentStacks","name":"ps9521"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2090-2022-04-25-17-22-25-70ea1","duration":"PT12.0704318S","parameters":{"hostingPlanName":{"value":"xDeploymentTestHost26669"},"workerSize":{"value":0},"sku":{"value":"Basic"},"siteLocation":{"value":"East + US"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2090/snapshots/2022-04-25-17-22-25-70ea1'' + for more details.","details":[{"code":"DeploymentFailed","message":"At least + one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T17:22:23.3588989Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T17:22:23.3588989Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2090","type":"Microsoft.Resources/deploymentStacks","name":"ps2090"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9456-2022-04-25-18-36-57-b58e4","duration":"PT25.5752395S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:35:09.0556409Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:36:55.1551166Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9456","type":"Microsoft.Resources/deploymentStacks","name":"ps9456"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1667-2022-04-25-18-38-51-288d4","duration":"PT27.0929961S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4008/providers/Microsoft.Resources/templateSpecs/ps6226/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:38:15.3633486Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:38:50.4274414Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1667","type":"Microsoft.Resources/deploymentStacks","name":"ps1667"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6461-2022-04-25-18-41-35-25f36","duration":"PT29.6086821S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:41:32.3821421Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:41:32.3821421Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6461","type":"Microsoft.Resources/deploymentStacks","name":"ps6461"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps5986-2022-04-25-18-42-54-b2f45","duration":"PT32.3488547S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:42:51.7871722Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:42:51.7871722Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps5986","type":"Microsoft.Resources/deploymentStacks","name":"ps5986"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps7543-2022-04-25-18-51-57-40c41","duration":"PT27.9803613S","parameters":{"storageAccountName":{"value":"armbuilddemo18123"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/location-lock"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:51:17.1733876Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:51:54.3634901Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps7543","type":"Microsoft.Resources/deploymentStacks","name":"ps7543"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1458-2022-04-25-18-58-47-b449d","duration":"PT11.0873053S","parameters":{"siteLocation":{"value":"East + US"},"hostingPlanName":{"value":"xDeploymentTestHost26669"},"workerSize":{"value":0},"sku":{"value":"Basic"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1458/snapshots/2022-04-25-18-58-47-b449d'' + for more details.","details":[{"code":"DeploymentFailed","message":"At least + one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Web/serverFarms/xDeploymentTestHost26669'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-04-25T18:58:45.4438949Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-04-25T18:58:45.4438949Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1458","type":"Microsoft.Resources/deploymentStacks","name":"ps1458"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/138-2022-05-03-15-28-20-9c41a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.5683401S","outputs":{"storageAccountName":{"type":"String","value":"deploymentscopetest"},"storageAccountName2":{"type":"String","value":"deploymentscopetest2"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest2/providers/Microsoft.Authorization/locks/MySiteLock"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-28T15:34:54.6527163Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-03T15:28:19.3881678Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/138","type":"Microsoft.Resources/deploymentStacks","name":"138"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-04-29-19-18-40-e7ed3","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT13.505281S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-29T19:18:37.5350519Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T19:18:37.5350519Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscriptionz6g2vuwbhp7fmt5io","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscriptionz6g2vuwbhp7fmt5io"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-snaps-2022-04-29-19-33-32-ff4ce","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.9340789S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-29T19:32:21.7900515Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T19:33:32.0280202Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-snapshot-subscriptiondmgvvw","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-snapshot-subscriptiondmgvvw"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT3.2123482S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/test/snapshots/2022-05-02-19-29-16-14593'' + for more details. Correlation id: ''7309e325-1184-4262-b29e-c7f55bea232c''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''Template schema ''https://schema.management.azure.com/schemas/2021-05-01/deploymentTemplate.json#'' + is not supported. Supported versions are ''2014-04-01-preview,2015-01-01,2018-05-01,2019-04-01,2019-08-01''. + Please see https://aka.ms/arm-template for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":4,"linePosition":98,"path":"properties.template.$schema"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-05-02T19:27:11.4571246Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-02T19:29:15.1538791Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/test","type":"Microsoft.Resources/deploymentStacks","name":"test"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_test_rg_9-2022-09-26-16-20-08-0fd67","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT31.0501257S","parameters":{"name":{"value":"delete_all_rg"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9/snapshots/2022-09-26-16-20-08-0fd67'' + for more details. Correlation id: ''af5a19f7-4daa-4a57-9285-41698413c9a5''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"message":"No + HTTP resource was found that matches the request URI ''https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.Resources/resourceGroups/delete_all_rg?api-version=2018-05-01''."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:05.958234Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:05.958234Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_test_rg_9","type":"Microsoft.Resources/deploymentStacks","name":"hp_test_rg_9"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2022-09-26-16-47-14-d493f","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.1915998S","outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:47:12.3295438Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:47:12.3295438Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription7aynifdnb5o32wy3b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription7aynifdnb5o32wy3b"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/trackedRGHP-2022-09-26-17-34-48-77a36","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT4M21.518069S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP"}],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T17:25:51.184283Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T17:34:47.5970069Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/trackedRGHP","type":"Microsoft.Resources/deploymentStacks","name":"trackedRGHP"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Resources/deployments/trackedRGHP2-2022-09-26-17-40-21-f9767","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","duration":"PT6M25.7125642S","outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Resources/templateSpecs/wave"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel4"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T17:37:43.244932Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T17:40:20.437079Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/trackedRGHP2","type":"Microsoft.Resources/deploymentStacks","name":"trackedRGHP2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-09-26-18-44-07-fe03d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","duration":"PT20.5842006S","parameters":{"rgname":{"value":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij"},"tsname":{"value":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:05.1416959Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:05.1416959Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionj3uf6k5wdpltres","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionj3uf6k5wdpltres"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps9176-2022-09-29-17-48-20-dc0b3","duration":"PT10.5021189S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9176/snapshots/2022-09-29-17-48-20-dc0b3'' + for more details. Correlation id: ''eb5901b5-dbe7-4f31-980c-5d3e4c2f999c''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T17:48:16.3934247Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T17:48:16.3934247Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps9176","type":"Microsoft.Resources/deploymentStacks","name":"ps9176"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/rname-2022-09-29-17-53-53-c6692","duration":"PT9.8309056S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rname/snapshots/2022-09-29-17-53-53-c6692'' + for more details. Correlation id: ''604554ce-7b3d-427b-abda-d737afab3673''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T17:53:50.0219942Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T17:53:50.0219942Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rname","type":"Microsoft.Resources/deploymentStacks","name":"rname"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6607-2022-09-29-18-16-34-5443d","duration":"PT10.7104429S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6607/snapshots/2022-09-29-18-16-34-5443d'' + for more details. Correlation id: ''1468979d-9248-4f86-b789-9e49fec1772c''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceNotFound","message":"The + Resource ''Microsoft.Storage/storageAccounts/bezstorage007'' under resource + group '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T18:16:30.6584934Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T18:16:30.6584934Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6607","type":"Microsoft.Resources/deploymentStacks","name":"ps6607"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps311-2022-09-29-19-26-43-f5333","duration":"PT11.1852537S","parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps311/snapshots/2022-09-29-19-26-43-f5333'' + for more details. Correlation id: ''d7ee5cbd-c1f5-4e24-96e3-669e57b58be4''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"RoleDefinitionLimitExceeded","message":"Role + definition limit exceeded. No more role definitions can be created."}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T19:26:39.5039157Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T19:26:39.5039157Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps311","type":"Microsoft.Resources/deploymentStacks","name":"ps311"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1272-2022-09-29-20-08-21-68e7e","duration":"PT8.8745404S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:08:18.5062505Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:08:18.5062505Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1272","type":"Microsoft.Resources/deploymentStacks","name":"ps1272"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1292-2022-09-29-20-10-24-2677c","duration":"PT10.0211213S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:10:21.2044074Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:10:21.2044074Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1292","type":"Microsoft.Resources/deploymentStacks","name":"ps1292"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2395-2022-09-29-20-18-32-eb1f3","duration":"PT10.1153363S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:18:29.2038306Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:18:29.2038306Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2395","type":"Microsoft.Resources/deploymentStacks","name":"ps2395"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps1437-2022-09-29-20-55-10-992de","duration":"PT9.6629483S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:55:07.1552838Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:55:07.1552838Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps1437","type":"Microsoft.Resources/deploymentStacks","name":"ps1437"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3697-2022-09-29-20-59-18-ff07e","duration":"PT7.6068354S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T20:58:59.0460377Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T20:59:17.4247133Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3697","type":"Microsoft.Resources/deploymentStacks","name":"ps3697"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4987-2022-09-29-21-03-39-71f4c","duration":"PT8.1566476S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-29T21:03:20.5426523Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-29T21:03:38.4199538Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4987","type":"Microsoft.Resources/deploymentStacks","name":"ps4987"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps6728-2022-09-30-16-06-51-dd76d","duration":"PT7.7596451S","parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-09-30T16:06:25.054911Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-09-30T16:06:50.0217499Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps6728","type":"Microsoft.Resources/deploymentStacks","name":"ps6728"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2022-10-05-15-49-10-d5e06","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","duration":"PT21.7560333S","parameters":{"rgname":{"value":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b"},"tsname":{"value":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:08.4192544Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:08.4192544Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionkla64dpkjtekqlr","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionkla64dpkjtekqlr"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps3545-2022-10-27-15-37-33-3cacb","duration":"PT11.3230296S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps1961/providers/Microsoft.Resources/templateSpecs/ps323/versions/v1"},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3545/snapshots/2022-10-27-15-37-33-3cacb'' + for more details. Correlation id: ''71896f95-2b7e-4b81-a084-3ed3324cbf8c''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"ResourceGroupNotFound","message":"Resource + group ''StacksTestRGiyrmpdcyfhgl6'' could not be found."}]}]}},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:37:28.7957759Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:37:28.7957759Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps3545","type":"Microsoft.Resources/deploymentStacks","name":"ps3545"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps4476-2022-10-27-15-40-23-1fd56","duration":"PT8.4024741S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:39:59.3336413Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:40:21.6001638Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps4476","type":"Microsoft.Resources/deploymentStacks","name":"ps4476"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/ps2600-2022-10-27-15-40-42-a26b9","duration":"PT23.4755593S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","createdByType":"Application","createdAt":"2022-10-27T15:40:38.8519053Z","lastModifiedBy":"546094f3-32fa-493c-824c-bd9575b0d2fe","lastModifiedByType":"Application","lastModifiedAt":"2022-10-27T15:40:38.8519053Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/ps2600","type":"Microsoft.Resources/deploymentStacks","name":"ps2600"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation-2022-11-02-15-11-55-72693","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6.9967863S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedPrincipals":["7c1752e8-668a-4aed-9405-20d1e9daf1e6"]},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-02T15:07:01.4801558Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-02T15:11:54.0026423Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_2-2022-11-03-16-35-30-42dfa","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT31.9224311S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-02T15:10:47.4355981Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:35:29.2845863Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_2","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_3-2022-11-03-16-35-43-c828c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8M55.1244079S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"deletedResources":[],"failedResources":[{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The + client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' + has permission to perform action ''Providers.Test/statefulResources/delete'' + on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6''; however, the access is denied because of the deny assignment with name ''Deny - assignment ''8cfe55d8-1eda-1efe-8cc6-85c0f0970dab'' created by Deployment - Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack1''.'' - and Id ''8cfe55d81eda1efe8cc685c0f0970dab'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The - client ''danted@microsoft.com'' with object id ''5d175732-fcca-47ea-b831-c6012c843923'' - has permission to perform action ''Microsoft.Resources/templateSpecs/versions/delete'' - on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2''; + assignment ''956788b5-e25c-cee3-1192-252580cd6937'' created by Deployment + Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_4''.'' + and Id ''956788b5e25ccee31192252580cd6937'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"error":{"code":"DenyAssignmentAuthorizationFailed","message":"The + client ''harshpatel@microsoft.com'' with object id ''2d79a9af-9d95-4170-89e0-efab097c7daf'' + has permission to perform action ''Providers.Test/statefulResources/delete'' + on scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7''; however, the access is denied because of the deny assignment with name ''Deny - assignment ''f406f1a4-6d46-fe81-93cd-9240a086b669'' created by Deployment - Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack1''.'' - and Id ''f406f1a46d46fe8193cd9240a086b669'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"error":{"code":"DeploymentStackDeleteFailed","message":"One - or more stages of deploymentStack deletion failed. Correlation id: ''cbcfe71b-d246-4cd0-a555-1685a4efd13e''","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"One - or more resources could not be deleted.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An + assignment ''458d9276-e99d-d46f-9fee-924b27d058df'' created by Deployment + Stack ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_2''.'' + and Id ''458d9276e99dd46f9fee924b27d058df'' at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7''."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"error":{"code":"DeploymentStackDeleteFailed","message":"One + or more stages of deploymentStack deletion failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3/snapshots/2022-11-03-16-38-14-c6537'' + for more details. Correlation id: ''6c457a1b-e929-42f0-b299-0e408917a60a''","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"One + or more resources could not be deleted. Refer to failed resources of snapshot + ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3/snapshots/2022-11-03-16-38-14-c6537'' + for more details.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An unknown error occurred while trying to delete resources. These resources are - still present in the stack but can be deleted manually."}]}]}},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:14:32.3597463Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T02:42:35.658271Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack2","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack2"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check1-2022-10-21-16-12-47-5aa65","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT15.9640536S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-21T16:10:19.7569856Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-21T16:12:47.7991398Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check1","type":"Microsoft.Resources/deploymentStacks","name":"check1"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Microsoft.Resources/deployments/rjwKitchenSink-2022-10-28-19-29-32-259ae","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","duration":"PT1M35.287478S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"InvalidCreateOrUpdateDenyAssignmentRequest","message":"The - specified deny assignment ConditionVersion ''2.0'' is not supported"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwKitchenSink/snapshots/2022-10-28-19-29-32-259ae'' - for more details. Correlation id: ''f9bcb291-1f4b-4dc3-882e-bc44157ccc0e''"}},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-10-28T19:08:06.2118901Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-28T19:29:32.4315845Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwKitchenSink","type":"Microsoft.Resources/deploymentStacks","name":"rjwKitchenSink"},{"location":"westcentralus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink","duration":"PT2.9082187S","denySettings":{"mode":"denyWriteAndDelete","applyToChildScopes":false},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyWriteAndDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One - or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwDenyAllTest/snapshots/2022-11-03-21-16-23-8b5d2'' - for more details. Correlation id: ''a994822a-6b4b-4236-97f1-611f4cdf3cf3''","details":[{"code":"InvalidTemplateDeployment","message":"The - template deployment failed with error: ''Deny assignment check failed for - template resource ''statefulResource'' of type ''Providers.Test/StatefulResources''. - The client ''rwilke@microsoft.com'' with object id ''45edf20d-af28-4a3a-9a80-12016d6ef590'' - has the permission to perform action ''Providers.Test/StatefulResources/write'' - at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwSink/providers/Providers.Test/StatefulResources/statefulResource'' - but is blocked by deny assignment.''.","details":[],"additionalInfo":[]}]}},"systemData":{"createdBy":"rwilke@microsoft.com","createdByType":"User","createdAt":"2022-11-03T20:46:34.1399826Z","lastModifiedBy":"rwilke@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T21:16:23.6968551Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/rjwDenyAllTest","type":"Microsoft.Resources/deploymentStacks","name":"rjwDenyAllTest"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack4-2022-11-07-23-43-33-fe43e","duration":"PT3M50.188348S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{"specVersionName":{"value":"V2"},"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"failed","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:43:32.9040621Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:43:32.9040621Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack4","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack4"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack1-2022-11-17-02-41-21-15531","duration":"PT50.4578436S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{"templateSpecName":{"value":"ABetterSpec"},"location":{"value":"westus"},"specVersionName":{"value":"V2"}},"resources":[{"status":"managed","denyStatus":"notSupported","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-16T20:13:25.9019178Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T02:41:19.7248514Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack1","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack1"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStack-2023-01-04-21-06-54-5e7e8","duration":"PT37.6513712S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specVersionName":{"value":"V2"},"location":{"value":"westus"},"templateSpecName":{"value":"ABetterSpec"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2023-01-04T21:06:54.2114103Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-04T21:06:54.2114103Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStack"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSubStackTest-2023-01-04-22-54-10-ce4e5","duration":"PT49.0292039S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"specVersionName":{"value":"V2"},"location":{"value":"westus"},"templateSpecName":{"value":"ABetterSpec"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGuglfab7hvugei/providers/Microsoft.Resources/templateSpecs/ABetterSpec/versions/V2"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2023-01-04T22:54:10.448512Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-04T22:54:10.448512Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSubStackTest","type":"Microsoft.Resources/deploymentStacks","name":"DanteSubStackTest"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-01-09-17-56-39-46c4e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.2615051S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-09T17:56:39.0894117Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-09T17:56:39.0894117Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"}]}' + still present in the stack but can be deleted manually."}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:35:40.6964229Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:35:40.6964229Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_3","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_3"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_4-2022-11-03-16-40-35-fc335","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT11.762819S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:40:33.0681835Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:40:33.0681835Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_4","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_4"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/hp_investigation_5-2022-11-03-16-46-01-2e0fd","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.6762159S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedPrincipals":["7c1752e8-668a-4aed-9405-20d1e9daf1e6"]},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-03T16:41:34.2429594Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T16:45:59.9578596Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/hp_investigation_5","type":"Microsoft.Resources/deploymentStacks","name":"hp_investigation_5"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_10-2022-11-07-23-01-46-cbb0c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6M55.4791159S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T22:49:55.0248823Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:01:45.7935127Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_10","type":"Microsoft.Resources/deploymentStacks","name":"misc_10"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_11-2022-11-07-23-02-00-6b52e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT1M45.9466554S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_11/snapshots/2022-11-07-23-02-00-6b52e'' + for more details. Correlation id: ''879b19c3-e361-4385-978d-102b2919439a''","details":[{"code":"DeploymentFailed","message":"Could + not deploy the specified template successfully. DeploymentId ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_11-2022-11-07-23-02-00-6b52e'' + was canceled."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:01:57.5407868Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:01:57.5407868Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_11","type":"Microsoft.Resources/deploymentStacks","name":"misc_11"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_12-2022-11-07-23-13-07-c2f39","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT8.788458S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsa12"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:13:04.0313262Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:13:04.0313262Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_12","type":"Microsoft.Resources/deploymentStacks","name":"misc_12"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_13-2022-11-07-23-14-35-b6848","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT9.1095473S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsa12"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:14:32.7471811Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:14:32.7471811Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_13","type":"Microsoft.Resources/deploymentStacks","name":"misc_13"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_14-2022-11-07-23-17-03-0d0de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT5.5337977S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:16:04.2198436Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:17:02.4614826Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_14","type":"Microsoft.Resources/deploymentStacks","name":"misc_14"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_15-2022-11-07-23-23-41-7813e","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT33.118398S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"storageAccountName":{"type":"String","value":"hpsaya4ieas2hwqse"}},"parameters":{},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:23:38.1823385Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:23:38.1823385Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_15","type":"Microsoft.Resources/deploymentStacks","name":"misc_15"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT4.4528846S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. See snapshot ''/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_16/snapshots/2022-11-07-23-26-30-f4b8e'' + for more details. Correlation id: ''cbb0a607-9c93-4f1b-8a39-839d80389078''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The resource ''Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse'' + at line ''40'' and column ''9'' is defined multiple times in a template. Please + see https://aka.ms/arm-template/#resources for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":40,"linePosition":9,"path":"properties.template.resources[0]"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:26:27.1893369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-07T23:26:27.1893369Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_16","type":"Microsoft.Resources/deploymentStacks","name":"misc_16"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_17-2022-11-14-21-57-48-ae42a","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT6.4730847S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-07T23:28:18.0835118Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T21:57:46.7942297Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_17","type":"Microsoft.Resources/deploymentStacks","name":"misc_17"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/DanteSimpleStack-2022-11-17-23-11-44-6dde9","duration":"PT10.5007301S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"danted@microsoft.com","createdByType":"User","createdAt":"2022-11-14T21:11:15.4433745Z","lastModifiedBy":"danted@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-17T23:11:41.3794663Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/DanteSimpleStack","type":"Microsoft.Resources/deploymentStacks","name":"DanteSimpleStack"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/check1-2022-11-21-19-16-59-f8379","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT7.0905608S","denySettings":{"mode":"none","applyToChildScopes":true},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-14T22:09:29.4800338Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-21T19:16:57.3198147Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/check1","type":"Microsoft.Resources/deploymentStacks","name":"check1"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2022-11-18-18-32-53-a940c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT9.2954782S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-18T18:32:50.0279025Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-18T18:32:50.0279025Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription52hjsgo5m67rapt6ru","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-get-deployment-stack-subscription52hjsgo5m67rapt6ru"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/new22-2022-11-21-19-23-36-b319c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT7.2966917S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-11-21T19:18:07.377069Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-21T19:23:35.0087774Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/new22","type":"Microsoft.Resources/deploymentStacks","name":"new22"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.8202463S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''e9d555fd-0698-40dc-abb6-273fb3b64f46''","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template variable ''storageAccountName'' + is not valid: The template function ''RESOURCEGROUP'' is not expected at this + location. Please see https://aka.ms/arm-template-expressions for usage details.. + Please see https://aka.ms/arm-template-expressions for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":44,"linePosition":96,"path":"properties.template.variables.storageAccountName"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-12-16T20:19:30.8890698Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-16T20:19:30.8890698Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/denydeletecheck","type":"Microsoft.Resources/deploymentStacks","name":"denydeletecheck"},{"location":"westus2","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/denydeletecheck3-2022-12-16-20-28-16-51f65","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.3384264S","denySettings":{"mode":"denyDelete","applyToChildScopes":false},"parameters":{},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful7'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/StatefulResources/hpStateful7"},{"error":{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful6'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Providers.Test/StatefulResources/hpStateful6"}],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''f8469cfa-779f-4a6f-92dc-90efe123c732''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/arm-deployment-operations for usage + details.","details":[{"code":"ResourceNotFound","message":"The Resource ''Providers.Test/statefulResources/hpStateful7'' + under resource group '''' was not found. For more details please go + to https://aka.ms/ARMResourceNotFoundFix"},{"code":"ResourceNotFound","message":"The + Resource ''Providers.Test/statefulResources/hpStateful6'' under resource group + '''' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-12-16T20:28:16.1221091Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-16T20:28:16.1221091Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/denydeletecheck3","type":"Microsoft.Resources/deploymentStacks","name":"denydeletecheck3"},{"location":"westus","properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/angperezSubStack-2023-01-24-18-20-54-e2d85","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT34.2959261S","denySettings":{"mode":"denyDelete","applyToChildScopes":false,"excludedActions":[]},"parameters":{},"resources":[{"status":"managed","denyStatus":"notSupported","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1"},{"status":"managed","denyStatus":"notSupported","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2"},{"status":"managed","denyStatus":"denyDelete","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackUpdateFailed","message":"One + or more stages of the deploymentStack failed. Correlation id: ''ba850e2d-94ed-4084-8065-4e63b504171b''","details":[{"code":"DeploymentFailed","message":"At + least one resource deployment operation failed. Please list deployment operations + for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"InvalidJsonResourceType","message":"Value + for resource type Microsoft.WindowsAzure.Networking.Nrp.Frontend.Contract.Csm.Public.PublicIpAddress + is invalid, exception: Requested value ''Basically'' was not found."}]}]}},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-24T18:08:20.5939543Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T18:20:54.6553982Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/angperezSubStack","type":"Microsoft.Resources/deploymentStacks","name":"angperezSubStack"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/misc_18-2023-02-01-21-02-21-4182d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT5.1698435S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-02-01T20:56:02.684948Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-01T21:02:21.3226642Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/misc_18","type":"Microsoft.Resources/deploymentStacks","name":"misc_18"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/e2e2-2023-02-16-00-11-30-8bb7d","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"P47DT16H41M56.4359069S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. Resource is still present in stack."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful6"},{"error":{"code":"DeletionFailed","message":"Resource + could not be deleted. Resource is still present in stack."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/StatefulResources/hpStateful7"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One + or more resources could not be deleted. Correlation id: ''0f4fd80d-ee6b-40eb-91a6-451a8e16eec9''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An + unknown error occurred while trying to purge resources. These resources are + still present in the stack but can be deleted manually."}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-02-16T00:03:14.8484611Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-16T00:11:29.9079116Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/e2e2","type":"Microsoft.Resources/deploymentStacks","name":"e2e2"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-13-13-21-16-1af5b","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","duration":"PT6.1541792S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"name":{"value":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:15.9585329Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:15.9585329Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionnprwfmnsyu2tm7d","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionnprwfmnsyu2tm7d"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-13-13-23-58-b87d8","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","duration":"PT6.510752S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"name":{"value":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:58.5362973Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:58.5362973Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionafyerwthugddbyu","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionafyerwthugddbyu"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-13-13-29-29-14497","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","duration":"PT10.4325625S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"name":{"value":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:29.2255386Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:29.2255386Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription5mf4itzslu67ux3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscription5mf4itzslu67ux3"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-13-13-35-15-35aab","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","duration":"PT6.0585574S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"name":{"value":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:15.3803266Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:15.3803266Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptionc3cxcipuxzixv2b","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptionc3cxcipuxzixv2b"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-13-14-46-04-87507","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","duration":"PT5.6764481S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"name":{"value":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:04.2669806Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:04.2669806Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscriptioni24zy5x7syz65f3","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-delete-deployment-stack-subscriptioni24zy5x7syz65f3"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-13-20-49-39-28a63","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","duration":"PT5M23.9134858S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya/providers/Microsoft.Resources/templateSpecs/cli-test-template-specrgxwimp7sxdno5rrrnjjxvpui7ulim33cih2wx"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemkbldjcfl7r4aznkuuaajf5x6htx5xetaym5vc4"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T20:48:46.3734231Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T20:49:38.9238328Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptiona4bxqnig2gm3i34","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptiona4bxqnig2gm3i34"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT2.0433238S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus2"},"kind":{"value":"StorageV2"}},"resources":[],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[],"error":{"code":"DeploymentStackDeploymentFailed","message":"One + or more resources could not be deployed. Correlation id: ''dc2dbc31-7ba3-4b94-aaa6-14aaad221759''.","details":[{"code":"InvalidTemplate","message":"Deployment + template validation failed: ''The template variable ''storageAccountName'' + is not valid: The template function ''RESOURCEGROUP'' is not expected at this + location. Please see https://aka.ms/arm-functions for usage details.. Please + see https://aka.ms/arm-functions for usage details.''.","details":[],"additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":23,"linePosition":86,"path":"properties.template.variables.storageAccountName"}}]}]}},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T21:07:45.421646Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T21:12:09.1971458Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionu5o6mmlkyexuix2","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionu5o6mmlkyexuix2"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-13-57-25-d1999","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT5.0088722S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{},"parameters":{"name":{"value":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:57:05.6250657Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:57:25.372541Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionnm7zsoglcr7zhao","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionnm7zsoglcr7zhao"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/deployments/biceptest-2023-04-14-13-59-28-f7e98","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","duration":"PT5.6560912S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"location":{"value":"westus2"},"kind":{"value":"StorageV2"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:59:28.1485647Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:59:28.1485647Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/biceptest","type":"Microsoft.Resources/deploymentStacks","name":"biceptest"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-11-38-a4c38","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","duration":"PT3M19.6996391S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"foo"},"bar":{"type":"String","value":"bar"}},"parameters":{},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsfhzckrphelta2tbbwrci7wwvrzyxums24fgm7"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onexowkn22hkpd7tj6nxasevjljcktd7po36ot4n7a"}],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:10:44.7833156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:11:37.8330155Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionbi5iorxn5nkctig","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionbi5iorxn5nkctig"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-43-02-b41de","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","duration":"PT5.423706S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"name":{"value":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1"}],"provisioningState":"succeeded","detachedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1"}],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:43.5921489Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:02.7595142Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscriptionqyhhcwdoch5owzt","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-create-deployment-stack-subscriptionqyhhcwdoch5owzt"},{"location":"westus2","tags":{},"properties":{"actionOnUnmanage":{"resources":"detach","resourceGroups":"detach","managementGroups":"detach"},"deploymentId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-04-14-15-21-50-9b49c","deploymentScope":"/subscriptions/00000000-0000-0000-0000-000000000000","duration":"PT6.0739318S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"foo":{"type":"String","value":"abc"},"bar":{"type":"String","value":"xyz"}},"parameters":{"foo":{"value":"abc"},"bar":{"value":"xyz"}},"resources":[],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[]},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T15:21:50.0029824Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T15:21:50.0029824Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001","type":"Microsoft.Resources/deploymentStacks","name":"cli-test-list-deployment-stack-subscription000001"}]}' headers: cache-control: - no-cache content-length: - - '110360' + - '148924' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:57 GMT + - Fri, 14 Apr 2023 15:22:10 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-original-request-ids: - - b0b53e24-2f2f-409a-91cb-22d9d5a8e889 - - 2c5a0f25-67af-4602-87b6-bc891ed7b0a8 - x-msedge-ref: - - 'Ref A: 4C56117982FD4994857BB469D642E056 Ref B: BL2AA2030105051 Ref C: 2023-01-09T17:56:57Z' + - 63670f05-20bc-49e4-adab-37bb2bb1eaa5 status: code: 200 message: OK @@ -458,17 +1167,18 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-01-09-17-56-39-46c4e\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-list-deployment-stack-subscri-2023-04-14-15-21-50-9b49c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT7.2615051S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0739318S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -478,32 +1188,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T17:56:39.0894117Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T15:21:50.0029824Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T17:56:39.0894117Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:21:50.0029824Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-list-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1595' + - '1610' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 17:56:59 GMT + - Fri, 14 Apr 2023 15:22:10 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 4401E9E94B5646CAB1E96D1C45E9E90E Ref B: BL2AA2030107029 Ref C: 2023-01-09T17:56:59Z' status: code: 200 message: OK @@ -523,9 +1235,10 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-list-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -535,21 +1248,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 17:57:00 GMT + - Fri, 14 Apr 2023 15:22:11 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: 72E85111A0824BE7A31D58BF56466915 Ref B: BL2AA2030107029 Ref C: 2023-01-09T17:56:59Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml index b74856273b1..6b7b57a077a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_management_group.yaml @@ -11,11 +11,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file + - --name --management-group-id --location --template-file --deny-settings-mode User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-get-deployment-stack-subscription000001'' @@ -28,21 +29,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:03 GMT + - Mon, 17 Apr 2023 17:36: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-failure-cause: - gateway - x-msedge-ref: - - 'Ref A: EDD9BFB29EC440F4AC0DD249DFCB51FF Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:02Z' status: code: 404 message: Not Found @@ -70,11 +67,12 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --management-group-id --location --template-file + - --name --management-group-id --location --template-file --deny-settings-mode User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": @@ -86,35 +84,33 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-01-09T20:22:04.0819575Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"2023-04-17T17:37:00.336275Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:37:00.336275Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/82e1e33f-1198-4453-aed5-1037ba65d5e4?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76c38e9d-2955-442a-9a59-bd4afbb54220?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1108' + - '1113' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:06 GMT + - Mon, 17 Apr 2023 17:37:00 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 03E4ED09929249808A36E6D98D575C35 Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:03Z' + - '1199' status: code: 201 message: Created @@ -130,36 +126,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file + - --name --management-group-id --location --template-file --deny-settings-mode User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/82e1e33f-1198-4453-aed5-1037ba65d5e4?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76c38e9d-2955-442a-9a59-bd4afbb54220?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/82e1e33f-1198-4453-aed5-1037ba65d5e4\",\r\n - \ \"name\": \"82e1e33f-1198-4453-aed5-1037ba65d5e4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/76c38e9d-2955-442a-9a59-bd4afbb54220\",\r\n + \ \"name\": \"76c38e9d-2955-442a-9a59-bd4afbb54220\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '215' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:24 GMT + - Mon, 17 Apr 2023 17:37:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: DB39DCD4D7714082BA32461490922C6C Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:23Z' status: code: 200 message: OK @@ -175,19 +174,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --management-group-id --location --template-file + - --name --management-group-id --location --template-file --deny-settings-mode User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-17-37-00-8df1a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8868249S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -195,32 +195,34 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:37:00.336275Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:37:00.336275Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1501' + - '1505' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:24 GMT + - Mon, 17 Apr 2023 17:37:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: AFF4BC971A1D451AADDE5D5B013FC0B4 Ref B: BL2AA2030108007 Ref C: 2023-01-09T20:22:24Z' status: code: 200 message: OK @@ -238,17 +240,18 @@ interactions: ParameterSetName: - --name --management-group-id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-17-37-00-8df1a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8868249S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -256,32 +259,34 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:37:00.336275Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:37:00.336275Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1501' + - '1505' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:25 GMT + - Mon, 17 Apr 2023 17:37:18 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 2246A525F8F7471EB91F05DB128A12E5 Ref B: BL2AA2030109017 Ref C: 2023-01-09T20:22:24Z' status: code: 200 message: OK @@ -299,17 +304,18 @@ interactions: ParameterSetName: - --id --management-group-id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-17-37-00-8df1a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8868249S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -317,32 +323,34 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:37:00.336275Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:37:00.336275Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1501' + - '1505' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:26 GMT + - Mon, 17 Apr 2023 17:37:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 149ECE6793DC4ABAAC0B0089977F42A4 Ref B: BL2AA2030109023 Ref C: 2023-01-09T20:22:25Z' status: code: 200 message: OK @@ -360,17 +368,18 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-01-09-20-22-04-9f1db\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-17-17-37-00-8df1a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2868614S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8868249S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -378,32 +387,34 @@ interactions: \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T20:22:04.0819575Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:37:00.336275Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T20:22:04.0819575Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:37:00.336275Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1501' + - '1505' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 20:22:26 GMT + - Mon, 17 Apr 2023 17:37:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: C1C8A32A1E744EC7B64CA53BD111E447 Ref B: BL2AA2030109021 Ref C: 2023-01-09T20:22:26Z' status: code: 200 message: OK @@ -423,9 +434,10 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/AzGovBlueprint/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -435,21 +447,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 20:22:27 GMT + - Mon, 17 Apr 2023 17:37:20 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: AC573EE6AAFC415B83773858DF31C9C7 Ref B: BL2AA2030109021 Ref C: 2023-01-09T20:22:27Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml index 75d03a4828b..d430d72d565 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_resource_group.yaml @@ -11,11 +11,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n @@ -29,19 +31,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:44:51 GMT + - Mon, 17 Apr 2023 15:44:18 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: D1393E2054CC408489EECECC33B1FB5D Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:44:50Z' status: code: 404 message: Not Found @@ -69,11 +69,13 @@ interactions: Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": @@ -85,36 +87,34 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:44:19.9496543Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:44:19.9496543Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/94250f8e-2933-41f0-bd8d-b5a8f54417d2?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5af35cb2-5235-4559-ac70-93a7ef74a52d?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1148' + - '1150' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:44:52 GMT + - Mon, 17 Apr 2023 15:44:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-msedge-ref: - - 'Ref A: 255026FC3F384C6DA5809BE6FE4DD558 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:44:51Z' + - '1198' status: code: 201 message: Created @@ -130,36 +130,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/94250f8e-2933-41f0-bd8d-b5a8f54417d2?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5af35cb2-5235-4559-ac70-93a7ef74a52d?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westcentralus/deploymentStackOperationStatus/94250f8e-2933-41f0-bd8d-b5a8f54417d2\",\r\n - \ \"name\": \"94250f8e-2933-41f0-bd8d-b5a8f54417d2\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5af35cb2-5235-4559-ac70-93a7ef74a52d\",\r\n + \ \"name\": \"5af35cb2-5235-4559-ac70-93a7ef74a52d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '266' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:45:09 GMT + - Mon, 17 Apr 2023 15:44:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 392E86C05F3245BE847630BBB99F4BA8 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:45:09Z' status: code: 200 message: OK @@ -175,17 +179,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --parameters --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n - \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-15-44-20-712f7\",\r\n + \ \"duration\": \"PT4.6998691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -195,32 +201,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:44:19.9496543Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:44:19.9496543Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1588' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:45:10 GMT + - Mon, 17 Apr 2023 15:44:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: A76C256348AC45ABAB63FAB9350612A2 Ref B: BL2AA2030108027 Ref C: 2023-01-09T19:45:10Z' status: code: 200 message: OK @@ -238,15 +246,16 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n - \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-15-44-20-712f7\",\r\n + \ \"duration\": \"PT4.6998691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -256,32 +265,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:44:19.9496543Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:44:19.9496543Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1588' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:45:11 GMT + - Mon, 17 Apr 2023 15:44:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 67A7AEE691544D1A950C8F62DDA4D4F7 Ref B: BL2AA2030105023 Ref C: 2023-01-09T19:45:10Z' status: code: 200 message: OK @@ -299,15 +310,16 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n - \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-15-44-20-712f7\",\r\n + \ \"duration\": \"PT4.6998691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -317,32 +329,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:44:19.9496543Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:44:19.9496543Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1588' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:45:12 GMT + - Mon, 17 Apr 2023 15:44:39 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 60F60C9615D54C27B16776059960DC85 Ref B: BL2AA2030109029 Ref C: 2023-01-09T19:45:11Z' status: code: 200 message: OK @@ -360,15 +374,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-01-09-19-44-52-89bde\",\r\n - \ \"duration\": \"PT8.8895995S\",\r\n \"denySettings\": {\r\n \"mode\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-show-deployment-stack-resourc-2023-04-17-15-44-20-712f7\",\r\n + \ \"duration\": \"PT4.6998691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -378,32 +393,34 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-01-09T19:44:52.352923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:44:19.9496543Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-01-09T19:44:52.352923Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:44:19.9496543Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-show-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1588' + - '1590' content-type: - application/json; charset=utf-8 date: - - Mon, 09 Jan 2023 19:45:12 GMT + - Mon, 17 Apr 2023 15:44:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-msedge-ref: - - 'Ref A: 927CC171C27A46A089E27DF1372008A7 Ref B: BL2AA2030108053 Ref C: 2023-01-09T19:45:12Z' status: code: 200 message: OK @@ -423,9 +440,10 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 + (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-show-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: string: '' @@ -435,21 +453,19 @@ interactions: content-length: - '0' date: - - Mon, 09 Jan 2023 19:45:13 GMT + - Mon, 17 Apr 2023 15:44:40 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-msedge-ref: - - 'Ref A: 5F7AE9B424764ECFB876A695A0001EF5 Ref B: BL2AA2030108053 Ref C: 2023-01-09T19:45:13Z' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml index e05d75909d6..060a04e1970 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:09 GMT + - Fri, 14 Apr 2023 15:03:05 GMT expires: - '-1' pragma: @@ -87,13 +87,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-05T17:02:09.9807844Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n + \"2023-04-14T15:03:05.1977566Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:03:05.1977566Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/34bd022a-95d5-446f-af9e-6c421efabc58?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/656beeaf-5e77-40c8-8b2d-8d750ec6e0f3?api-version=2022-08-01-preview cache-control: - no-cache content-length: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:10 GMT + - Fri, 14 Apr 2023 15:03:05 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -134,11 +134,11 @@ interactions: - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/34bd022a-95d5-446f-af9e-6c421efabc58?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/656beeaf-5e77-40c8-8b2d-8d750ec6e0f3?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/34bd022a-95d5-446f-af9e-6c421efabc58\",\r\n - \ \"name\": \"34bd022a-95d5-446f-af9e-6c421efabc58\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/656beeaf-5e77-40c8-8b2d-8d750ec6e0f3\",\r\n + \ \"name\": \"656beeaf-5e77-40c8-8b2d-8d750ec6e0f3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:27 GMT + - Fri, 14 Apr 2023 15:03:22 GMT expires: - '-1' pragma: @@ -188,9 +188,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-14-15-03-05-1983e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.1729981S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -200,20 +200,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T15:03:05.1977566Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:03:05.1977566Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1607' + - '1608' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:27 GMT + - Fri, 14 Apr 2023 15:03:22 GMT expires: - '-1' pragma: @@ -254,9 +254,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-14-15-03-05-1983e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.1729981S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -266,20 +266,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T15:03:05.1977566Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:03:05.1977566Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1607' + - '1608' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:28 GMT + - Fri, 14 Apr 2023 15:03:23 GMT expires: - '-1' pragma: @@ -320,9 +320,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-14-15-03-05-1983e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.1729981S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -332,20 +332,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T15:03:05.1977566Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:03:05.1977566Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1607' + - '1608' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:29 GMT + - Fri, 14 Apr 2023 15:03:24 GMT expires: - '-1' pragma: @@ -386,9 +386,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-05-17-02-10-39069\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-get-deployment-stack-subscrip-2023-04-14-15-03-05-1983e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.499081S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.1729981S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -398,20 +398,20 @@ interactions: [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-05T17:02:09.9807844Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T15:03:05.1977566Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-05T17:02:09.9807844Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T15:03:05.1977566Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-get-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-get-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1607' + - '1608' content-type: - application/json; charset=utf-8 date: - - Wed, 05 Apr 2023 17:02:30 GMT + - Fri, 14 Apr 2023 15:03:24 GMT expires: - '-1' pragma: @@ -458,7 +458,7 @@ interactions: content-length: - '0' date: - - Wed, 05 Apr 2023 17:02:30 GMT + - Fri, 14 Apr 2023 15:03:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 76f74696118..48433f22140 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2154,6 +2154,8 @@ def test_create_deployment_stack_subscription(self, resource_group): 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2277,12 +2279,14 @@ def test_create_deployment_stack_subscription(self, resource_group): #confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) - # cleanup - delete resource group two - self.cmd('group delete --name {resource-group-two} --yes') + #test bicep param file + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{bicep-file-storage}" -p "{bicep-param-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) - # cleanup - delete resource group two self.cmd('stack sub delete --name {name} --yes') + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-get-deployment-stack-subscription', 60) @@ -2308,7 +2312,6 @@ def test_show_deployment_stack_subscription(self): # cleanup self.cmd('stack sub delete --name {name} --yes') - #test again @AllowLargeResponse(4096) def test_list_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2505,6 +2508,8 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, 'template-spec-version': "v1", @@ -2609,7 +2614,11 @@ def test_create_deployment_stack_resource_group(self, resource_group): #confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) - # cleanup - delete resource group two + self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') + + #test bicep param file + self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{bicep-file-storage}" -p "{bicep-param-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') # cleanup - delete resource group two @@ -2829,6 +2838,8 @@ def test_create_deployment_stack_management_group(self, resource_group): 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2840,7 +2851,7 @@ def test_create_deployment_stack_management_group(self, resource_group): 'resource-three': resource_three, 'resource-type-specs': "Microsoft.Resources/templateSpecs", 'actual-mg': self.create_random_name('azure-cli-management', 30), - 'mg': "AzGovBlueprint" + 'mg': "AzBlueprintAssignTest" }) # create mg #self.cmd('account management-group create --name {mg}', checks=[]) @@ -2898,7 +2909,7 @@ def test_show_deployment_stack_management_group(self): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'mg': "AzGovBlueprint", + 'mg': "AzBlueprintAssignTest", 'actual-mg':self.create_random_name('azure-cli-management', 30) }) @@ -2944,7 +2955,7 @@ def test_delete_deployment_stack_management_group(self): 'resource-three': resource_three, 'resource-group-two': resource_group_two, 'resource-type-specs': "Microsoft.Resources/templateSpecs", - 'mg': "AzGovBlueprint", + 'mg': "AzBlueprintAssignTest", 'actual-mg':self.create_random_name('azure-cli-management', 30) }) @@ -3000,7 +3011,7 @@ def test_export_template_deployment_stack_management_group(self): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'mg': "AzGovBlueprint", + 'mg': "AzBlueprintAssignTest", 'actual-mg':self.create_random_name('azure-cli-management', 30) }) @@ -3033,7 +3044,7 @@ def test_list_deployment_stack_management_group(self): 'location': location, 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'mg': "AzGovBlueprint", + 'mg': "AzBlueprintAssignTest", 'actual-mg':self.create_random_name('azure-cli-management', 30) }) From 752aa9efed67167c9d4a7c9b243bc991eddbe173 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 4 May 2023 14:19:31 -0700 Subject: [PATCH 100/139] retrigger checks From 2123dc204c50b6958dc766e332fd517419862fa5 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 10 May 2023 17:01:05 -0400 Subject: [PATCH 101/139] Addressed location in params.py comments --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 40f8ba26922..28d20c83723 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -106,7 +106,7 @@ def load_arguments(self, _): stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(help='Defines which operations are denied on resources managed by the stack: denyWrite or denyWriteAndDelete.') + stacks_deny_settings_mode = CLIArgumentType(help='Define which operations are denied on resources managed by the stack: denyWrite or denyWriteAndDelete.') stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') @@ -683,7 +683,7 @@ def load_arguments(self, _): with self.argument_context('stack mg create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) - c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') + c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) @@ -719,7 +719,7 @@ def load_arguments(self, _): with self.argument_context('stack sub create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('deployment_resource_group', arg_type=stacks_stack_deployment_resource_group) - c.argument('location', options_list=['--location', '-l'], help='The location to store deployment stack.') + c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) From 05f985c06f71cc596a531a9066c8e047f8737bba Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 11 May 2023 10:56:00 -0400 Subject: [PATCH 102/139] Ran style (most fixed), linter is running into error about managedapp --- .../resource/_client_factory.py | 6 +- .../cli/command_modules/resource/_help.py | 6 +- .../cli/command_modules/resource/_params.py | 389 ++++++++++++------ .../cli/command_modules/resource/commands.py | 76 ++-- .../cli/command_modules/resource/custom.py | 374 +++++++++++------ .../resource/tests/latest/test_resource.py | 1 + 6 files changed, 553 insertions(+), 299 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py b/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py index d33e8b54270..322e088826d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_client_factory.py @@ -63,6 +63,7 @@ def _resource_templatespecs_client_factory(cli_ctx, **_): from azure.cli.core.profiles import ResourceType return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) + def _resource_deploymentstacks_client_factory(cli_ctx, **_): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.cli.core.profiles import ResourceType @@ -162,11 +163,14 @@ def cf_hierarchy_settings(cli_ctx, _): def cf_resource_templatespecs(cli_ctx, _): return _resource_templatespecs_client_factory(cli_ctx).template_specs + def cf_resource_deploymentstacks(cli_ctx, _): return _resource_deploymentstacks_client_factory(cli_ctx).deployment_stacks + def cf_resource_privatelinkassociations(cli_ctx, _): return _resource_privatelinks_client_factory(cli_ctx).private_link_association + def cf_resource_resourcemanagementprivatelinks(cli_ctx, _): - return _resource_privatelinks_client_factory(cli_ctx).resource_management_private_link \ No newline at end of file + return _resource_privatelinks_client_factory(cli_ctx).resource_management_private_link diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index b785d519366..5199ed7d239 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2866,7 +2866,7 @@ type: command short-summary: List all deployment stacks in management group examples: - - name: List all stacks + - name: List all stacks text: az stack mg list --management-group-id myMg """ @@ -2930,7 +2930,7 @@ type: command short-summary: List all deployment stacks in subscription examples: - - name: List all stacks + - name: List all stacks text: az stack sub list """ @@ -3116,4 +3116,4 @@ examples: - name: Delete a PrivateLinkAssociation. text: az private-link association delete --management-group-id TestMG --name testPLA -""" \ No newline at end of file +""" diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 28d20c83723..41d27727b74 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -30,31 +30,46 @@ def load_arguments(self, _): validate_lock_parameters, validate_resource_lock, validate_group_lock, validate_subscription_lock, validate_metadata, RollbackAction) from azure.cli.command_modules.resource.parameters import TagUpdateOperation - DeploymentMode, WhatIfResultFormat, ChangeType = self.get_models('DeploymentMode', 'WhatIfResultFormat', 'ChangeType') + DeploymentMode, WhatIfResultFormat, ChangeType = self.get_models( + 'DeploymentMode', 'WhatIfResultFormat', 'ChangeType') # BASIC PARAMETER CONFIGURATION resource_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The resource name. (Ex: myC)') - resource_type_type = CLIArgumentType(help="The resource type (Ex: 'resC'). Can also accept namespace/type format (Ex: 'Microsoft.Provider/resC')") - resource_namespace_type = CLIArgumentType(options_list='--namespace', completer=get_providers_completion_list, help="Provider namespace (Ex: 'Microsoft.Provider')") - resource_parent_type = CLIArgumentType(required=False, options_list=['--parent'], help="The parent path (Ex: 'resA/myA/resB/myB')") - existing_policy_definition_name_type = CLIArgumentType(options_list=['--name', '-n'], completer=get_policy_completion_list, help='The policy definition name.') - existing_policy_set_definition_name_type = CLIArgumentType(options_list=['--name', '-n'], completer=get_policy_set_completion_list, help='The policy set definition name.') - subscription_type = CLIArgumentType(options_list='--subscription', FilesCompleter=get_subscription_id_list, help='The subscription id of the policy [set] definition.') - management_group_name_type = CLIArgumentType(options_list='--management-group', help='The name of the management group of the policy [set] definition. This parameter is required if your policy set is scoped to a management group.') + resource_type_type = CLIArgumentType( + help="The resource type (Ex: 'resC'). Can also accept namespace/type format (Ex: 'Microsoft.Provider/resC')") + resource_namespace_type = CLIArgumentType( + options_list='--namespace', completer=get_providers_completion_list, help="Provider namespace (Ex: 'Microsoft.Provider')") + resource_parent_type = CLIArgumentType(required=False, options_list=[ + '--parent'], help="The parent path (Ex: 'resA/myA/resB/myB')") + existing_policy_definition_name_type = CLIArgumentType( + options_list=['--name', '-n'], completer=get_policy_completion_list, help='The policy definition name.') + existing_policy_set_definition_name_type = CLIArgumentType( + options_list=['--name', '-n'], completer=get_policy_set_completion_list, help='The policy set definition name.') + subscription_type = CLIArgumentType(options_list='--subscription', FilesCompleter=get_subscription_id_list, + help='The subscription id of the policy [set] definition.') + management_group_name_type = CLIArgumentType( + options_list='--management-group', help='The name of the management group of the policy [set] definition. This parameter is required if your policy set is scoped to a management group.') identity_scope_type = CLIArgumentType(help="Scope that the system assigned identity can access") - identity_role_type = CLIArgumentType(options_list=['--role'], help="Role name or id that will be assigned to the managed identity") + identity_role_type = CLIArgumentType( + options_list=['--role'], help="Role name or id that will be assigned to the managed identity") extended_json_format_type = CLIArgumentType(options_list=['--handle-extended-json-format', '-j'], action='store_true', help='Support to handle extended template content including multiline and comments in deployment') deployment_name_type = CLIArgumentType(options_list=['--name', '-n'], required=True, help='The deployment name.') - deployment_create_name_type = CLIArgumentType(options_list=['--name', '-n'], required=False, help='The deployment name. Default to template file base name') - management_group_id_type = CLIArgumentType(options_list=['--management-group-id', '-m'], required=True, help='The management group id.') + deployment_create_name_type = CLIArgumentType( + options_list=['--name', '-n'], required=False, help='The deployment name. Default to template file base name') + management_group_id_type = CLIArgumentType( + options_list=['--management-group-id', '-m'], required=True, help='The management group id.') deployment_template_file_type = CLIArgumentType(options_list=['--template-file', '-f'], completer=FilesCompleter(), type=file_type, help="a path to a template file or Bicep file in the file system") - deployment_template_uri_type = CLIArgumentType(options_list=['--template-uri', '-u'], help='a uri to a remote template file') - deployment_template_spec_type = CLIArgumentType(options_list=['--template-spec', '-s'], min_api='2019-06-01', help="The template spec resource id.") - deployment_query_string_type = CLIArgumentType(options_list=['--query-string', '-q'], help="The query string (a SAS token) to be used with the template-uri in the case of linked templates.") - deployment_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], action='append', nargs='+', completer=FilesCompleter(), help='the deployment parameters') + deployment_template_uri_type = CLIArgumentType( + options_list=['--template-uri', '-u'], help='a uri to a remote template file') + deployment_template_spec_type = CLIArgumentType( + options_list=['--template-spec', '-s'], min_api='2019-06-01', help="The template spec resource id.") + deployment_query_string_type = CLIArgumentType(options_list=[ + '--query-string', '-q'], help="The query string (a SAS token) to be used with the template-uri in the case of linked templates.") + deployment_parameters_type = CLIArgumentType( + options_list=['--parameters', '-p'], action='append', nargs='+', completer=FilesCompleter(), help='the deployment parameters') filter_type = CLIArgumentType(options_list=['--filter'], is_preview=True, help='Filter expression using OData notation. You can use --filter "provisioningState eq \'{state}\'" to filter provisioningState. ' 'To get more information, please visit https://docs.microsoft.com/rest/api/resources/deployments/listatsubscriptionscope#uri-parameters') @@ -68,7 +83,8 @@ def load_arguments(self, _): help='Instruct the command to execute the deployment if the What-If result contains no resource changes. Applicable when --confirm-with-what-if is set.', min_api='2019-07-01') deployment_what_if_result_format_type = CLIArgumentType(options_list=['--result-format', '-r'], - arg_type=get_enum_type(WhatIfResultFormat, "FullResourcePayloads"), + arg_type=get_enum_type( + WhatIfResultFormat, "FullResourcePayloads"), min_api='2019-07-01') deployment_what_if_no_pretty_print_type = CLIArgumentType(options_list=['--no-pretty-print'], action='store_true', help='Disable pretty-print for What-If results. When set, the output format type will be used.') @@ -91,36 +107,55 @@ def load_arguments(self, _): 'For example, if the supported api-version of resource provider is 2020-01-01-preview and 2019-01-01: ' 'when passing in this parameter it will take the latest version 2020-01-01-preview, otherwise it will take the latest stable version 2019-01-01 without passing in this parameter') - ts_display_name_type = CLIArgumentType(options_list=['--display-name', '-d'], help='The display name of the template spec') - ts_description_type = CLIArgumentType(options_list=['--description'], help='The description of the parent template spec.') - ts_version_description_type = CLIArgumentType(options_list=['--version-description'], help='The description of the template spec version.') + ts_display_name_type = CLIArgumentType( + options_list=['--display-name', '-d'], help='The display name of the template spec') + ts_description_type = CLIArgumentType( + options_list=['--description'], help='The description of the parent template spec.') + ts_version_description_type = CLIArgumentType( + options_list=['--version-description'], help='The description of the template spec version.') ui_form_definition_file_type = CLIArgumentType(options_list=['--ui-form-definition'], completer=FilesCompleter(), type=file_type, help="A path to a uiFormDefinition file in the file system") stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') - stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') + stacks_description_type = CLIArgumentType( + options_list=['--description'], help='The description of deployment stack.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') - stacks_stack_deployment_resource_group = CLIArgumentType(help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_stack_deployment_subscription = CLIArgumentType(help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') - stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') - stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(help='Define which operations are denied on resources managed by the stack: denyWrite or denyWriteAndDelete.') - stacks_excluded_principals = CLIArgumentType(help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') - stacks_excluded_actions = CLIArgumentType(help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") + stacks_stack_deployment_resource_group = CLIArgumentType( + help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_subscription = CLIArgumentType( + help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_delete_resources_type = CLIArgumentType( + options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') + stacks_delete_resource_groups_type = CLIArgumentType( + options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') + stacks_delete_all_type = CLIArgumentType( + options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') + stacks_deny_settings_mode = CLIArgumentType( + help='Define which operations are denied on resources managed by the stack: denyWrite or denyWriteAndDelete.') + stacks_excluded_principals = CLIArgumentType( + help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') + stacks_excluded_actions = CLIArgumentType( + help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') bicep_no_restore_type = CLIArgumentType(options_list=['--no-restore'], action='store_true') - bicep_outdir_type = CLIArgumentType(options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") - bicep_outfile_type = CLIArgumentType(options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") - bicep_stdout_type = CLIArgumentType(options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") - bicep_indentkind_type = CLIArgumentType(options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") - bicep_indentsize_type = CLIArgumentType(options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") - bicep_insertfinalnewline_type = CLIArgumentType(options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") - bicep_newline_type = CLIArgumentType(options_list=['--newline'], action='store_true', help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") + bicep_outdir_type = CLIArgumentType( + options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") + bicep_outfile_type = CLIArgumentType( + options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") + bicep_stdout_type = CLIArgumentType( + options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") + bicep_indentkind_type = CLIArgumentType( + options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") + bicep_indentsize_type = CLIArgumentType( + options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") + bicep_insertfinalnewline_type = CLIArgumentType( + options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") + bicep_newline_type = CLIArgumentType( + options_list=['--newline'], action='store_true', help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") bicep_target_platform_type = CLIArgumentType(options_list=['--target-platform', '-t'], arg_type=get_enum_type( ["win-x64", "linux-musl-x64", "linux-x64", "osx-x64", "linux-arm64", "osx-arm64"]), @@ -133,14 +168,18 @@ def load_arguments(self, _): c.argument('resource_group_name', resource_group_name_type, arg_group='Resource Id') c.ignore('resource_id') c.argument('resource_name', resource_name_type, arg_group='Resource Id') - c.argument('api_version', help='The api version of the resource (omit for the latest stable version)', required=False, arg_group='Resource Id') + c.argument('api_version', help='The api version of the resource (omit for the latest stable version)', + required=False, arg_group='Resource Id') c.argument('resource_provider_namespace', resource_namespace_type, arg_group='Resource Id') - c.argument('resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list, arg_group='Resource Id') + c.argument('resource_type', arg_type=resource_type_type, + completer=get_resource_types_completion_list, arg_group='Resource Id') c.argument('parent_resource_path', resource_parent_type, arg_group='Resource Id') c.argument('tag', tag_type) c.argument('tags', tags_type) - c.argument('resource_ids', nargs='+', options_list=['--ids'], help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.', arg_group='Resource Id') - c.argument('include_response_body', arg_type=get_three_state_flag(), help='Use if the default command output doesn\'t capture all of the property data.') + c.argument('resource_ids', nargs='+', options_list=[ + '--ids'], help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.', arg_group='Resource Id') + c.argument('include_response_body', arg_type=get_three_state_flag(), + help='Use if the default command output doesn\'t capture all of the property data.') c.argument('latest_include_preview', latest_include_preview_type) with self.argument_context('resource list') as c: @@ -151,12 +190,15 @@ def load_arguments(self, _): with self.argument_context('resource invoke-action') as c: c.argument('action', help='The action that will be invoked on the specified resource') - c.argument('request_body', help='JSON encoded parameter arguments for the action that will be passed along in the post request body. Use @{file} to load from a file.') + c.argument( + 'request_body', help='JSON encoded parameter arguments for the action that will be passed along in the post request body. Use @{file} to load from a file.') with self.argument_context('resource create') as c: c.argument('resource_id', options_list=['--id'], help='Resource ID.', action=None) - c.argument('properties', options_list=['--properties', '-p'], help='A JSON-formatted string containing resource properties.') - c.argument('is_full_object', action='store_true', help='Indicate that the properties object includes other options such as location, tags, sku, and/or plan.') + c.argument('properties', options_list=['--properties', '-p'], + help='A JSON-formatted string containing resource properties.') + c.argument('is_full_object', action='store_true', + help='Indicate that the properties object includes other options such as location, tags, sku, and/or plan.') with self.argument_context('resource patch') as c: c.argument('properties', options_list=['--properties', '-p'], @@ -165,11 +207,14 @@ def load_arguments(self, _): help='Indicate that the properties object includes other options such as location, tags, sku, and/or plan.') with self.argument_context('resource link') as c: - c.argument('target_id', options_list=['--target', c.deprecate(target='--target-id', redirect='--target', hide=True)], help='Fully-qualified resource ID of the resource link target.') - c.argument('link_id', options_list=['--link', c.deprecate(target='--link-id', redirect='--link', hide=True)], help='Fully-qualified resource ID of the resource link.') + c.argument('target_id', options_list=['--target', c.deprecate(target='--target-id', + redirect='--target', hide=True)], help='Fully-qualified resource ID of the resource link target.') + c.argument('link_id', options_list=['--link', c.deprecate(target='--link-id', + redirect='--link', hide=True)], help='Fully-qualified resource ID of the resource link.') c.argument('notes', help='Notes for the link.') c.argument('scope', help='Fully-qualified scope for retrieving links.') - c.argument('filter_string', options_list=['--filter', c.deprecate(target='--filter-string', redirect='--filter', hide=True)], help='Filter string for limiting results.') + c.argument('filter_string', options_list=[ + '--filter', c.deprecate(target='--filter-string', redirect='--filter', hide=True)], help='Filter string for limiting results.') with self.argument_context('resource tag') as c: c.argument('is_incremental', action='store_true', options_list=['--is-incremental', '-i'], @@ -180,13 +225,16 @@ def load_arguments(self, _): with self.argument_context('provider') as c: c.ignore('top') - c.argument('resource_provider_namespace', options_list=['--namespace', '-n'], completer=get_providers_completion_list, help=_PROVIDER_HELP_TEXT) + c.argument('resource_provider_namespace', options_list=[ + '--namespace', '-n'], completer=get_providers_completion_list, help=_PROVIDER_HELP_TEXT) with self.argument_context('provider register') as c: c.argument('mg', help="The management group id to register.", options_list=['--management-group-id', '-m']) - c.argument('accept_terms', action='store_true', is_preview=True, help="Accept market place terms and RP terms for RPaaS. Required when registering RPs from RPaaS, such as 'Microsoft.Confluent' and 'Microsoft.Datadog'.", deprecate_info=c.deprecate(hide=True)) + c.argument('accept_terms', action='store_true', is_preview=True, + help="Accept market place terms and RP terms for RPaaS. Required when registering RPs from RPaaS, such as 'Microsoft.Confluent' and 'Microsoft.Datadog'.", deprecate_info=c.deprecate(hide=True)) c.argument('wait', action='store_true', help='wait for the registration to finish') - c.argument('consent_to_permissions', options_list=['--consent-to-permissions', '-c'], action='store_true', help='A value indicating whether authorization is consented or not.') + c.argument('consent_to_permissions', options_list=[ + '--consent-to-permissions', '-c'], action='store_true', help='A value indicating whether authorization is consented or not.') with self.argument_context('provider unregister') as c: c.argument('wait', action='store_true', help='wait for unregistration to finish') @@ -209,17 +257,22 @@ def load_arguments(self, _): c.argument('resource_provider_namespace', options_list='--namespace', required=False, help=_PROVIDER_HELP_TEXT) with self.argument_context('policy') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group where the policy will be applied') + c.argument('resource_group_name', arg_type=resource_group_name_type, + help='the resource group where the policy will be applied') with self.argument_context('policy definition', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('policy_definition_name', arg_type=existing_policy_definition_name_type) - c.argument('rules', help='JSON formatted string or a path to a file with such content', type=file_type, completer=FilesCompleter()) + c.argument('rules', help='JSON formatted string or a path to a file with such content', + type=file_type, completer=FilesCompleter()) c.argument('display_name', help='Display name of policy definition.') c.argument('description', help='Description of policy definition.') - c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', type=file_type, completer=FilesCompleter(), min_api='2016-12-01') - c.argument('metadata', min_api='2017-06-01-preview', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') + c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', + type=file_type, completer=FilesCompleter(), min_api='2016-12-01') + c.argument('metadata', min_api='2017-06-01-preview', nargs='+', + validator=validate_metadata, help='Metadata in space-separated key=value pairs.') c.argument('management_group', arg_type=management_group_name_type) - c.argument('mode', options_list=['--mode', '-m'], help='Mode of the policy definition, e.g. All, Indexed. Please visit https://aka.ms/azure-policy-mode for more information.', min_api='2016-12-01') + c.argument('mode', options_list=[ + '--mode', '-m'], help='Mode of the policy definition, e.g. All, Indexed. Please visit https://aka.ms/azure-policy-mode for more information.', min_api='2016-12-01') c.argument('subscription', arg_type=subscription_type) c.ignore('_subscription') # disable global subscription @@ -227,53 +280,72 @@ def load_arguments(self, _): c.argument('name', options_list=['--name', '-n'], help='Name of the new policy definition.') with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: - c.argument('name', options_list=['--name', '-n'], completer=get_policy_assignment_completion_list, help='Name of the policy assignment.') + c.argument('name', options_list=['--name', '-n'], + completer=get_policy_assignment_completion_list, help='Name of the policy assignment.') c.argument('scope', help='Scope at which this policy assignment subcommand applies. Defaults to current context subscription.') - c.argument('disable_scope_strict_match', action='store_true', help='Include policy assignments either inherited from parent scope or at child scope.') + c.argument('disable_scope_strict_match', action='store_true', + help='Include policy assignments either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy assignment.') c.argument('description', help='Description of the policy assignment.', min_api='2016-12-01') - c.argument('policy', help='Name or id of the policy definition. If not provided, a policy set definition parameter must be provided.', completer=get_policy_completion_list) - c.argument('params', options_list=['--params', '-p'], help='JSON formatted string or a path to a file or uri with parameter values of the policy rule.', type=file_type, completer=FilesCompleter(), min_api='2016-12-01') + c.argument('policy', help='Name or id of the policy definition. If not provided, a policy set definition parameter must be provided.', + completer=get_policy_completion_list) + c.argument('params', options_list=['--params', '-p'], help='JSON formatted string or a path to a file or uri with parameter values of the policy rule.', + type=file_type, completer=FilesCompleter(), min_api='2016-12-01') with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview') as c: - c.argument('policy_set_definition', options_list=['--policy-set-definition', '-d'], help='Name or id of the policy set definition. If not provided, a policy definition parameter must be provided.') - c.argument('sku', options_list=['--sku', '-s'], help='policy sku.', arg_type=get_enum_type(['free', 'standard']), deprecate_info=c.deprecate(hide=True)) + c.argument('policy_set_definition', options_list=[ + '--policy-set-definition', '-d'], help='Name or id of the policy set definition. If not provided, a policy definition parameter must be provided.') + c.argument('sku', options_list=['--sku', '-s'], help='policy sku.', + arg_type=get_enum_type(['free', 'standard']), deprecate_info=c.deprecate(hide=True)) c.argument('notscopes', options_list='--not-scopes', nargs='+') with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY, arg_group='Managed Identity', min_api='2018-05-01') as c: - c.argument('assign_identity', nargs='*', help="Assigns a system assigned identity to the policy assignment. This argument will be deprecated, please use --mi-system-assigned instead", deprecate_info=c.deprecate(hide=True)) - c.argument('mi_system_assigned', action='store_true', help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') - c.argument('mi_user_assigned', min_api='2021-06-01', help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') + c.argument('assign_identity', nargs='*', help="Assigns a system assigned identity to the policy assignment. This argument will be deprecated, please use --mi-system-assigned instead", + deprecate_info=c.deprecate(hide=True)) + c.argument('mi_system_assigned', action='store_true', + help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') + c.argument('mi_user_assigned', min_api='2021-06-01', + help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') c.argument('identity_scope', arg_type=identity_scope_type) c.argument('identity_role', arg_type=identity_role_type) with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2019-06-01') as c: - c.argument('enforcement_mode', options_list=['--enforcement-mode', '-e'], help='Enforcement mode of the policy assignment, e.g. Default, DoNotEnforce. Please visit https://aka.ms/azure-policyAssignment-enforcement-mode for more information.', arg_type=get_enum_type(EnforcementMode)) + c.argument('enforcement_mode', options_list=[ + '--enforcement-mode', '-e'], help='Enforcement mode of the policy assignment, e.g. Default, DoNotEnforce. Please visit https://aka.ms/azure-policyAssignment-enforcement-mode for more information.', arg_type=get_enum_type(EnforcementMode)) with self.argument_context('policy assignment create', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('name', options_list=['--name', '-n'], help='Name of the new policy assignment.') with self.argument_context('policy assignment create', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2018-05-01') as c: - c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location of the policy assignment. Only required when utilizing managed identity.') + c.argument('location', arg_type=get_location_type(self.cli_ctx), + help='The location of the policy assignment. Only required when utilizing managed identity.') with self.argument_context('policy assignment identity', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2018-05-01') as c: - c.argument('mi_system_assigned', action='store_true', options_list=['--system-assigned'], help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') - c.argument('mi_user_assigned', options_list=['--user-assigned'], min_api='2021-06-01', help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') + c.argument('mi_system_assigned', action='store_true', options_list=[ + '--system-assigned'], help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') + c.argument('mi_user_assigned', options_list=['--user-assigned'], min_api='2021-06-01', + help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') c.argument('identity_scope', arg_type=identity_scope_type) c.argument('identity_role', arg_type=identity_role_type) with self.argument_context('policy assignment non-compliance-message', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2020-09-01') as c: - c.argument('message', options_list=['--message', '-m'], help='Message that will be shown when a resource is denied by policy or evaluation details are inspected.') - c.argument('policy_definition_reference_id', options_list=['--policy-definition-reference-id', '-r'], help='Policy definition reference ID within the assigned initiative (policy set) that the message applies to.') + c.argument('message', options_list=[ + '--message', '-m'], help='Message that will be shown when a resource is denied by policy or evaluation details are inspected.') + c.argument('policy_definition_reference_id', options_list=[ + '--policy-definition-reference-id', '-r'], help='Policy definition reference ID within the assigned initiative (policy set) that the message applies to.') with self.argument_context('policy set-definition', min_api='2017-06-01-preview', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('policy_set_definition_name', arg_type=existing_policy_set_definition_name_type) c.argument('display_name', help='Display name of policy set definition.') c.argument('description', help='Description of policy set definition.') - c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', type=file_type, completer=FilesCompleter()) - c.argument('definitions', help='JSON formatted string or a path to a file or uri containing definitions.', type=file_type, completer=FilesCompleter()) - c.argument('definition_groups', min_api='2019-09-01', help='JSON formatted string or a path to a file or uri containing policy definition groups. Groups are used to organize policy definitions within a policy set.', type=file_type, completer=FilesCompleter()) - c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') + c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', + type=file_type, completer=FilesCompleter()) + c.argument('definitions', help='JSON formatted string or a path to a file or uri containing definitions.', + type=file_type, completer=FilesCompleter()) + c.argument('definition_groups', min_api='2019-09-01', + help='JSON formatted string or a path to a file or uri containing policy definition groups. Groups are used to organize policy definitions within a policy set.', type=file_type, completer=FilesCompleter()) + c.argument('metadata', nargs='+', validator=validate_metadata, + help='Metadata in space-separated key=value pairs.') c.argument('management_group', arg_type=management_group_name_type) c.argument('subscription', arg_type=subscription_type) c.ignore('_subscription') # disable global subscription @@ -283,31 +355,40 @@ def load_arguments(self, _): with self.argument_context('policy exemption', min_api='2020-09-01', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.ignore('_subscription') - c.argument('name', options_list=['--name', '-n'], completer=get_policy_exemption_completion_list, help='Name of the policy exemption.') + c.argument('name', options_list=['--name', '-n'], + completer=get_policy_exemption_completion_list, help='Name of the policy exemption.') c.argument('scope', help='Scope to which this policy exemption applies.') - c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') + c.argument('disable_scope_strict_match', options_list=[ + '--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) - c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') - c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') - c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') + c.argument('exemption_category', options_list=[ + '--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) + c.argument('policy_definition_reference_ids', nargs='+', options_list=[ + '--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') + c.argument( + 'expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') + c.argument('metadata', nargs='+', validator=validate_metadata, + help='Metadata in space-separated key=value pairs.') with self.argument_context('policy exemption create', min_api='2020-09-01', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('name', options_list=['--name', '-n'], help='Name of the new policy exemption.') - c.argument('policy_assignment', options_list=['--policy-assignment', '-a'], help='The referenced policy assignment Id for the policy exemption.') + c.argument('policy_assignment', options_list=['--policy-assignment', '-a'], + help='The referenced policy assignment Id for the policy exemption.') with self.argument_context('group') as c: c.argument('tag', tag_type) c.argument('tags', tags_type) - c.argument('resource_group_name', resource_group_name_type, options_list=['--name', '-n', '--resource-group', '-g']) + c.argument('resource_group_name', resource_group_name_type, + options_list=['--name', '-n', '--resource-group', '-g']) with self.argument_context('group update') as c: c.argument('properties_to_add', deprecate_info=c.deprecate(hide=True)) c.argument('properties_to_remove', deprecate_info=c.deprecate(hide=True)) with self.argument_context('group deployment') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, completer=get_resource_group_completion_list) + c.argument('resource_group_name', arg_type=resource_group_name_type, + completer=get_resource_group_completion_list) c.argument('deployment_name', arg_type=deployment_name_type) c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_uri', arg_type=deployment_template_uri_type) @@ -408,8 +489,10 @@ def load_arguments(self, _): c.argument('filter_string', arg_type=filter_type) with self.argument_context('deployment group') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, completer=get_resource_group_completion_list, required=True) - c.argument('mode', arg_type=get_enum_type(DeploymentMode, default='incremental'), help='Incremental (only add resources to resource group) or Complete (remove extra resources from resource group)') + c.argument('resource_group_name', arg_type=resource_group_name_type, + completer=get_resource_group_completion_list, required=True) + c.argument('mode', arg_type=get_enum_type(DeploymentMode, default='incremental'), + help='Incremental (only add resources to resource group) or Complete (remove extra resources from resource group)') c.argument('rollback_on_error', nargs='?', action=RollbackAction, help='The name of a deployment to roll back to on error, or use as a flag to roll back to the last successful deployment.') @@ -541,7 +624,8 @@ def load_arguments(self, _): with self.argument_context('group delete') as c: c.argument('resource_group_name', resource_group_name_type, options_list=['--name', '-n', '--resource-group', '-g'], local_context_attribute=None) - c.argument('force_deletion_types', options_list=['--force-deletion-types', '-f'], arg_type=get_enum_type(['Microsoft.Compute/virtualMachines', 'Microsoft.Compute/virtualMachineScaleSets']), min_api='2021-04-01', help='The resource types you want to force delete.') + c.argument('force_deletion_types', options_list=['--force-deletion-types', '-f'], arg_type=get_enum_type( + ['Microsoft.Compute/virtualMachines', 'Microsoft.Compute/virtualMachineScaleSets']), min_api='2021-04-01', help='The resource types you want to force delete.') with self.argument_context('tag') as c: c.argument('tag_name', tag_name_type) @@ -553,17 +637,21 @@ def load_arguments(self, _): with self.argument_context('lock') as c: c.argument('lock_name', options_list=['--name', '-n'], validator=validate_lock_parameters) - c.argument('level', arg_type=get_enum_type(LockLevel), options_list=['--lock-type', '-t'], help='The type of lock restriction.') + c.argument('level', arg_type=get_enum_type(LockLevel), options_list=[ + '--lock-type', '-t'], help='The type of lock restriction.') c.argument('parent_resource_path', resource_parent_type) c.argument('resource_provider_namespace', resource_namespace_type) c.argument('resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list) - c.argument('resource_name', options_list=['--resource', '--resource-name'], help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.') - c.argument('ids', nargs='+', options_list='--ids', help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') + c.argument('resource_name', options_list=['--resource', '--resource-name'], + help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.') + c.argument('ids', nargs='+', options_list='--ids', + help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') c.argument('resource_group', resource_group_name_type, validator=validate_lock_parameters) with self.argument_context('resource lock') as c: c.argument('resource_group', resource_group_name_type) - c.argument('resource_name', options_list=['--resource', '--resource-name'], help='If an ID is given, other resource arguments should not be given.', validator=validate_resource_lock) + c.argument('resource_name', options_list=['--resource', '--resource-name'], + help='If an ID is given, other resource arguments should not be given.', validator=validate_resource_lock) with self.argument_context('group lock') as c: c.argument('resource_group', resource_group_name_type, validator=validate_group_lock, id_part=None) @@ -584,40 +672,51 @@ def load_arguments(self, _): for scope in ['lock', 'account lock', 'group lock', 'resource lock']: with self.argument_context(scope) as c: c.argument('lock_name', options_list=['--name', '-n'], help='Name of the lock') - c.argument('level', options_list=['--lock-type', '-t'], arg_type=get_enum_type([LockLevel.can_not_delete, LockLevel.read_only]), help='The type of lock restriction.') - c.argument('ids', nargs='+', options_list='--ids', help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') + c.argument('level', options_list=['--lock-type', '-t'], arg_type=get_enum_type( + [LockLevel.can_not_delete, LockLevel.read_only]), help='The type of lock restriction.') + c.argument('ids', nargs='+', options_list='--ids', + help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') c.argument('notes', help='Notes about this lock.') with self.argument_context('managedapp') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application', id_part='resource_group') + c.argument('resource_group_name', arg_type=resource_group_name_type, + help='the resource group of the managed application', id_part='resource_group') c.argument('application_name', options_list=['--name', '-n'], id_part='name') c.argument('tags', tags_type) with self.argument_context('managedapp definition') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application definition', id_part='resource_group') + c.argument('resource_group_name', arg_type=resource_group_name_type, + help='the resource group of the managed application definition', id_part='resource_group') c.argument('application_definition_name', options_list=['--name', '-n'], id_part='name') with self.argument_context('managedapp create') as c: c.argument('name', options_list=['--name', '-n'], help='name of the new managed application', completer=None) c.argument('location', help='the managed application location') - c.argument('managedapp_definition_id', options_list=['--managedapp-definition-id', '-d'], help='the full qualified managed application definition id') - c.argument('managedby_resource_group_id', options_list=['--managed-rg-id', '-m'], help='the resource group managed by the managed application') + c.argument('managedapp_definition_id', options_list=[ + '--managedapp-definition-id', '-d'], help='the full qualified managed application definition id') + c.argument('managedby_resource_group_id', options_list=[ + '--managed-rg-id', '-m'], help='the resource group managed by the managed application') c.argument('parameters', help='JSON formatted string or a path to a file with such content', type=file_type) for operation in ['create', 'update']: with self.argument_context('managedapp definition {}'.format(operation)) as c: c.argument('lock_level', arg_type=get_enum_type(ApplicationLockLevel), help='The type of lock restriction.') - c.argument('authorizations', options_list=['--authorizations', '-a'], nargs='+', help="space-separated authorization pairs in a format of `:`") - c.argument('create_ui_definition', options_list=['--create-ui-definition', '-c'], help='JSON formatted string or a path to a file with such content', type=file_type) - c.argument('main_template', options_list=['--main-template', '-t'], help='JSON formatted string or a path to a file with such content', type=file_type) + c.argument('authorizations', options_list=['--authorizations', '-a'], nargs='+', + help="space-separated authorization pairs in a format of `:`") + c.argument('create_ui_definition', options_list=[ + '--create-ui-definition', '-c'], help='JSON formatted string or a path to a file with such content', type=file_type) + c.argument('main_template', options_list=[ + '--main-template', '-t'], help='JSON formatted string or a path to a file with such content', type=file_type) with self.argument_context('account') as c: - c.argument('subscription', options_list=['--subscription', '-s'], help='Name or ID of subscription.', completer=get_subscription_id_list) + c.argument('subscription', options_list=['--subscription', '-s'], + help='Name or ID of subscription.', completer=get_subscription_id_list) c.ignore('_subscription') # hide global subscription parameter with self.argument_context('account management-group') as c: c.argument('group_name', options_list=['--name', '-n']) - c.argument('no_register', action='store_true', help='Skip registration for resource provider Microsoft.Management') + c.argument('no_register', action='store_true', + help='Skip registration for resource provider Microsoft.Management') with self.argument_context('account management-group show') as c: c.argument('expand', options_list=['--expand', '-e'], action='store_true') @@ -633,31 +732,39 @@ def load_arguments(self, _): with self.argument_context('account management-group hierarchy-settings create') as c: c.argument('default_management_group', options_list=['--default-management-group', '-m']) - c.argument('require_authorization_for_group_creation', options_list=['--require-authorization-for-group-creation', '-r']) + c.argument('require_authorization_for_group_creation', options_list=[ + '--require-authorization-for-group-creation', '-r']) with self.argument_context('account management-group hierarchy-settings update') as c: c.argument('default_management_group', options_list=['--default-management-group', '-m']) - c.argument('require_authorization_for_group_creation', options_list=['--require-authorization-for-group-creation', '-r']) + c.argument('require_authorization_for_group_creation', options_list=[ + '--require-authorization-for-group-creation', '-r']) with self.argument_context('ts') as c: c.argument('name', options_list=['--name', '-n'], help='The name of the template spec.') c.argument('version', options_list=['--version', '-v'], help='The template spec version.') with self.argument_context('ts create') as c: - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group to store the template spec.') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group to store the template spec.') c.argument('template_file', arg_type=deployment_template_file_type) - c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, help='The uiFormDefinition file path in the file system for the template spec version.') - c.argument('location', options_list=['--location', '-l'], help='The location to store the template-spec and template-spec version(s). Cannot be changed after creation.') + c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, + help='The uiFormDefinition file path in the file system for the template spec version.') + c.argument('location', options_list=[ + '--location', '-l'], help='The location to store the template-spec and template-spec version(s). Cannot be changed after creation.') c.argument('display_name', arg_type=ts_display_name_type) c.argument('description', arg_type=ts_description_type) c.argument('version_description', arg_type=ts_version_description_type) c.argument('tags', tags_type) - c.argument('no_prompt', options_list=['--yes', '-y'], action='store_true', help='Do not prompt for confirmation') + c.argument('no_prompt', options_list=['--yes', '-y'], + action='store_true', help='Do not prompt for confirmation') with self.argument_context('ts update') as c: - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group to store the template spec.') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group to store the template spec.') c.argument('template_spec', arg_type=deployment_template_spec_type) - c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, help='The uiFormDefinition file path in the file system for the template spec version.') + c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, + help='The uiFormDefinition file path in the file system for the template spec version.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('display_name', arg_type=ts_display_name_type) c.argument('description', arg_type=ts_description_type) @@ -672,22 +779,25 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) with self.argument_context('ts delete') as c: - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the template spec or template spec version is stored.') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group where the template spec or template spec version is stored.') c.argument('template_spec', arg_type=deployment_template_spec_type) with self.argument_context('ts list') as c: c.argument('resource_group', arg_type=resource_group_name_type) - + with self.argument_context('stack mg') as c: - c.argument('management_group_id', arg_type=management_group_id_type, help='The management group id to create stack at.') - + c.argument('management_group_id', arg_type=management_group_id_type, + help='The management group id to create stack at.') + with self.argument_context('stack mg create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) - c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('parameters', arg_type=deployment_parameters_type, + help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) c.argument('deployment_subscription', arg_type=stacks_stack_deployment_subscription) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -698,13 +808,13 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) - - for scope in ['stack mg show','stack mg export']: + + for scope in ['stack mg show', 'stack mg export']: with self.argument_context(scope) as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - + with self.argument_context('stack mg delete') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) @@ -712,10 +822,10 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) - + with self.argument_context('stack mg list') as c: c.argument('subscription', arg_type=subscription_type) - + with self.argument_context('stack sub create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) c.argument('deployment_resource_group', arg_type=stacks_stack_deployment_resource_group) @@ -723,7 +833,8 @@ def load_arguments(self, _): c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) - c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('parameters', arg_type=deployment_parameters_type, + help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -735,7 +846,7 @@ def load_arguments(self, _): c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) - for scope in ['stack sub show','stack sub export']: + for scope in ['stack sub show', 'stack sub export']: with self.argument_context(scope) as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) c.argument('id', arg_type=stacks_stack_type) @@ -748,14 +859,16 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) - + with self.argument_context('stack group create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack will be created.') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group where the deployment stack will be created.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) - c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('parameters', arg_type=deployment_parameters_type, + help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -766,33 +879,37 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) - + for scope in ['stack group show', 'stack group export']: with self.argument_context(scope) as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) - + with self.argument_context('stack group list') as c: - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group where the deployment stack exists') c.argument('subscription', arg_type=subscription_type) - + with self.argument_context('stack group delete') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') + c.argument('resource_group', arg_type=resource_group_name_type, + help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) - + with self.argument_context('bicep build') as c: c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to build in the file system.") c.argument('outdir', arg_type=bicep_outdir_type) c.argument('outfile', arg_type=bicep_outfile_type) c.argument('stdout', arg_type=bicep_stdout_type) - c.argument('no_restore', arg_type=bicep_no_restore_type, help="When set, builds the bicep file without restoring external modules.") + c.argument('no_restore', arg_type=bicep_no_restore_type, + help="When set, builds the bicep file without restoring external modules.") with self.argument_context('bicep format') as c: c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to format in the file system.") @@ -813,25 +930,29 @@ def load_arguments(self, _): c.argument('force', arg_type=bicep_force_type, help="Allows overwriting the cached external modules.") with self.argument_context('bicep publish') as c: - c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep module file to publish in the file system.") + c.argument('file', arg_type=bicep_file_type, + help="The path to the Bicep module file to publish in the file system.") c.argument('target', arg_type=CLIArgumentType(options_list=['--target', '-t'], help="The target location where the Bicep module will be published.")) c.argument('documentationUri', arg_type=CLIArgumentType(options_list=['--documentationUri', '-d'], help="The documentation uri of the Bicep module.")) with self.argument_context('bicep install') as c: - c.argument('version', options_list=['--version', '-v'], help='The version of Bicep CLI to be installed. Default to the latest if not specified.') + c.argument('version', options_list=[ + '--version', '-v'], help='The version of Bicep CLI to be installed. Default to the latest if not specified.') c.argument('target_platform', arg_type=bicep_target_platform_type) with self.argument_context('bicep upgrade') as c: c.argument('target_platform', arg_type=bicep_target_platform_type) with self.argument_context('bicep generate-params') as c: - c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to generate the parameters file from in the file system.") + c.argument('file', arg_type=bicep_file_type, + help="The path to the Bicep file to generate the parameters file from in the file system.") c.argument('outdir', arg_type=bicep_outdir_type) c.argument('outfile', arg_type=bicep_outfile_type) c.argument('stdout', arg_type=bicep_stdout_type) - c.argument('no_restore', arg_type=bicep_no_restore_type, help="When set, generates the parameters file without restoring external modules.") + c.argument('no_restore', arg_type=bicep_no_restore_type, + help="When set, generates the parameters file without restoring external modules.") with self.argument_context('resourcemanagement private-link create') as c: c.argument('resource_group', arg_type=resource_group_name_type, diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 195e87fd540..a13e2150b0b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -17,7 +17,7 @@ cf_resource_groups, cf_providers, cf_features, cf_feature_registrations, cf_tags, cf_deployments, cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_policy_exemptions, cf_resource_links, cf_resource_deploymentscripts, cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_group_subscriptions, cf_resource_templatespecs, cf_resource_deploymentstacks, - cf_management_groups_mixin, cf_management_group_entities, cf_hierarchy_settings, cf_resource_templatespecs, cf_resource_resourcemanagementprivatelinks, cf_resource_privatelinkassociations) + cf_management_groups_mixin, cf_management_group_entities, cf_hierarchy_settings, cf_resource_resourcemanagementprivatelinks, cf_resource_privatelinkassociations) from azure.cli.command_modules.resource._validators import ( process_deployment_create_namespace, process_ts_create_or_update_namespace, _validate_template_spec, _validate_template_spec_out, process_assign_identity_namespace, process_assignment_create_namespace, validate_deployment_stack_files) @@ -67,7 +67,8 @@ def transform_resource_group_list(result): def transform_resource_list(result): transformed = [] for r in result: - res = OrderedDict([('Name', r['name']), ('ResourceGroup', r['resourceGroup']), ('Location', r['location']), ('Type', r['type'])]) + res = OrderedDict([('Name', r['name']), ('ResourceGroup', r['resourceGroup']), + ('Location', r['location']), ('Type', r['type'])]) try: res['Status'] = r['properties']['provisioningStatus'] except TypeError: @@ -94,12 +95,14 @@ def transform_deployments_list(result): sort_list = sorted(result, key=lambda deployment: deployment['properties']['timestamp']) return [transform_deployment(r) for r in sort_list] + def transform_stacks(result): return OrderedDict([('Name', result['name']), ('State', result['provisioningState']), ('Last Modified', result['systemData']['lastModifiedAt']), ('Deployment Id', result['deploymentId'])]) + def transform_stacks_list(result): transformed = [] for r in result: @@ -108,15 +111,19 @@ def transform_stacks_list(result): for reslist in r['resources']: resources += reslist['id'] + "," - res = OrderedDict([('Name', r['name']),('State', r['provisioningState']), ('Last Modified', r['systemData']['lastModifiedAt']), ('Resource IDs', resources[:-1])]) + res = OrderedDict([('Name', r['name']), ('State', r['provisioningState']), + ('Last Modified', r['systemData']['lastModifiedAt']), ('Resource IDs', resources[:-1])]) transformed.append(res) return transformed + def transform_stacks_export(result): return OrderedDict([('$schema', result['template']['$schema']), ('ContentVersion', result['template']['contentVersion'])]) # pylint: disable=too-many-statements + + def load_command_table(self, _): from azure.cli.core.commands.arm import deployment_validate_table_format @@ -278,7 +285,8 @@ def load_command_table(self, _): g.custom_command('list', 'list_resources', table_transformer=transform_resource_list) g.custom_command('tag', 'tag_resource') g.custom_command('move', 'move_resource') - g.custom_command('invoke-action', 'invoke_resource_action', transform=DeploymentOutputLongRunningOperation(self.cli_ctx)) + g.custom_command('invoke-action', 'invoke_resource_action', + transform=DeploymentOutputLongRunningOperation(self.cli_ctx)) g.generic_update_command('update', getter_name='show_resource', setter_name='update_resource', client_factory=None) g.custom_command('patch', 'patch_resource') @@ -335,7 +343,8 @@ def load_command_table(self, _): g.command('list', 'list', table_transformer=transform_deployments_list, max_api='2016-09-01') g.show_command('show', 'get', table_transformer=transform_deployment) g.command('delete', 'begin_delete', supports_no_wait=True) - g.custom_command('validate', 'validate_arm_template', table_transformer=deployment_validate_table_format, exception_handler=handle_template_based_exception) + g.custom_command('validate', 'validate_arm_template', table_transformer=deployment_validate_table_format, + exception_handler=handle_template_based_exception) g.custom_command('export', 'export_deployment_as_template') g.wait_command('wait') g.command('cancel', 'cancel') @@ -346,17 +355,23 @@ def load_command_table(self, _): # az deployment with self.command_group('deployment', resource_deployment_sdk, min_api='2018-05-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: - g.custom_command('list', 'list_deployments_at_subscription_scope', table_transformer=transform_deployments_list, deprecate_info=g.deprecate(redirect='deployment sub list', hide=True)) - g.custom_show_command('show', 'get_deployment_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub show', hide=True)) - g.custom_command('delete', 'delete_deployment_at_subscription_scope', supports_no_wait=True, deprecate_info=g.deprecate(redirect='deployment sub delete', hide=True)) + g.custom_command('list', 'list_deployments_at_subscription_scope', table_transformer=transform_deployments_list, + deprecate_info=g.deprecate(redirect='deployment sub list', hide=True)) + g.custom_show_command('show', 'get_deployment_at_subscription_scope', + deprecate_info=g.deprecate(redirect='deployment sub show', hide=True)) + g.custom_command('delete', 'delete_deployment_at_subscription_scope', supports_no_wait=True, + deprecate_info=g.deprecate(redirect='deployment sub delete', hide=True)) g.custom_command('validate', 'validate_arm_template_at_subscription_scope', validator=process_deployment_create_namespace, table_transformer=deployment_validate_table_format, exception_handler=handle_template_based_exception, deprecate_info=g.deprecate(redirect='deployment sub validate', hide=True)) g.custom_command('create', 'deploy_arm_template_at_subscription_scope', supports_no_wait=True, validator=process_deployment_create_namespace, exception_handler=handle_template_based_exception, deprecate_info=g.deprecate(redirect='deployment sub create', hide=True)) - g.custom_command('export', 'export_template_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub export', hide=True)) - g.custom_wait_command('wait', 'get_deployment_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub wait', hide=True)) - g.custom_command('cancel', 'cancel_deployment_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub cancel', hide=True)) + g.custom_command('export', 'export_template_at_subscription_scope', + deprecate_info=g.deprecate(redirect='deployment sub export', hide=True)) + g.custom_wait_command('wait', 'get_deployment_at_subscription_scope', + deprecate_info=g.deprecate(redirect='deployment sub wait', hide=True)) + g.custom_command('cancel', 'cancel_deployment_at_subscription_scope', + deprecate_info=g.deprecate(redirect='deployment sub cancel', hide=True)) with self.command_group('deployment operation', resource_deployment_operation_sdk, min_api='2018-05-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_subscription_scope', @@ -381,7 +396,8 @@ def load_command_table(self, _): with self.command_group('deployment operation sub', resource_deployment_operation_sdk, min_api='2018-05-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_subscription_scope') - g.custom_show_command('show', 'get_deployment_operations_at_subscription_scope', client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_subscription_scope', + client_factory=cf_deployment_operations) with self.command_group('deployment-scripts', resource_deploymentscripts_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSCRIPTS) as g: g.custom_command('list', 'list_deployment_scripts') @@ -391,33 +407,40 @@ def load_command_table(self, _): with self.command_group('ts', resource_templatespecs_sdk, resource_type=ResourceType.MGMT_RESOURCE_TEMPLATESPECS, min_api='2019-06-01-preview') as g: g.custom_command('create', 'create_template_spec', validator=process_ts_create_or_update_namespace) - g.custom_command('update', 'update_template_spec', validator=process_ts_create_or_update_namespace, confirmation=True) + g.custom_command('update', 'update_template_spec', + validator=process_ts_create_or_update_namespace, confirmation=True) g.custom_command('export', 'export_template_spec', validator=_validate_template_spec_out) g.custom_show_command('show', 'get_template_spec', validator=_validate_template_spec) g.custom_command('list', 'list_template_specs') g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) - + with self.command_group('stack mg', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_management_group') - g.custom_command('create', 'create_deployment_stack_at_management_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_management_group', table_transformer=transform_stacks_export) - + g.custom_command('create', 'create_deployment_stack_at_management_group', + validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export', 'export_template_deployment_stack_at_management_group', + table_transformer=transform_stacks_export) + with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') - g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_subscription', table_transformer=transform_stacks_export) + g.custom_command('create', 'create_deployment_stack_at_subscription', + validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export', 'export_template_deployment_stack_at_subscription', + table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group') - g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_resource_group', table_transformer=transform_stacks_export) - + g.custom_command('create', 'create_deployment_stack_at_resource_group', + validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export', 'export_template_deployment_stack_at_resource_group', + table_transformer=transform_stacks_export) + # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployments_at_resource_group', table_transformer=transform_deployments_list) @@ -435,7 +458,8 @@ def load_command_table(self, _): with self.command_group('deployment operation group', resource_deployment_operation_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_resource_group') - g.custom_show_command('show', 'get_deployment_operations_at_resource_group', client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_resource_group', + client_factory=cf_deployment_operations) # az deployment mg with self.command_group('deployment mg', resource_deployment_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: @@ -454,7 +478,8 @@ def load_command_table(self, _): with self.command_group('deployment operation mg', resource_deployment_operation_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_management_group') - g.custom_show_command('show', 'get_deployment_operations_at_management_group', client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_management_group', + client_factory=cf_deployment_operations) # az deployment tenant with self.command_group('deployment tenant', resource_deployment_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: @@ -473,7 +498,8 @@ def load_command_table(self, _): with self.command_group('deployment operation tenant', resource_deployment_operation_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_tenant_scope') - g.custom_show_command('show', 'get_deployment_operations_at_tenant_scope', client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_tenant_scope', + client_factory=cf_deployment_operations) with self.command_group('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g: g.custom_command('create', 'create_policy_assignment', validator=process_assignment_create_namespace) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 2a415f66d3c..2df5df0523a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -15,8 +15,6 @@ import sys import uuid import base64 -import os.path -from os import path from urllib.request import urlopen from urllib.parse import urlparse @@ -29,7 +27,7 @@ from azure.cli.core.parser import IncorrectUsageError from azure.cli.core.util import get_file_json, read_file_content, shell_safe_json_parse, sdk_no_wait from azure.cli.core.commands import LongRunningOperation -from azure.cli.core.commands.arm import raise_subdivision_deployment_error, resource_exists +from azure.cli.core.commands.arm import raise_subdivision_deployment_error from azure.cli.core.commands.client_factory import get_mgmt_service_client, get_subscription_id from azure.cli.core.profiles import ResourceType, get_sdk, get_api_version, AZURE_API_PROFILES @@ -308,7 +306,8 @@ def _remove_comments_from_json(template, preserve_order=True, file_path=None): # In order to solve the package conflict introduced by jsmin, the jsmin code is referenced into json_min minified = json_min(template) try: - return shell_safe_json_parse(minified, preserve_order, strict=False) # use strict=False to allow multiline strings + # use strict=False to allow multiline strings + return shell_safe_json_parse(minified, preserve_order, strict=False) except CLIError: # Because the processing of removing comments and compression will lead to misplacement of error location, # so the error message should be wrapped. @@ -451,7 +450,8 @@ def deploy_arm_template_at_subscription_scope(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, + ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -489,7 +489,8 @@ def _deploy_arm_template_at_subscription_scope(cmd, no_prompt=no_prompt, template_spec=template_spec, query_string=query_string) - mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client( + cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) from azure.core.exceptions import HttpResponseError Deployment = cmd.get_models('Deployment') @@ -536,7 +537,8 @@ def deploy_arm_template_at_resource_group(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, + ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -627,7 +629,8 @@ def deploy_arm_template_at_management_group(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, + ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -671,7 +674,8 @@ def _deploy_arm_template_at_management_group(cmd, parameters=parameters, mode=mode, no_prompt=no_prompt, template_spec=template_spec, query_string=query_string) - mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client( + cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) from azure.core.exceptions import HttpResponseError ScopedDeployment = cmd.get_models('ScopedDeployment') @@ -719,7 +723,8 @@ def deploy_arm_template_at_tenant_scope(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, + ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -755,7 +760,8 @@ def _deploy_arm_template_at_tenant_scope(cmd, parameters=parameters, mode='Incremental', no_prompt=no_prompt, template_spec=template_spec, query_string=query_string,) - mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client( + cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) from azure.core.exceptions import HttpResponseError ScopedDeployment = cmd.get_models('ScopedDeployment') @@ -810,7 +816,8 @@ def _what_if_deploy_arm_template_at_resource_group_core(cmd, resource_group_name deployment_what_if = DeploymentWhatIf(properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if(resource_group_name, deployment_name, parameters=deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core( + cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -835,12 +842,14 @@ def _what_if_deploy_arm_template_at_subscription_scope_core(cmd, return_result=None): what_if_properties = _prepare_deployment_what_if_properties(cmd, 'subscription', template_file, template_uri, parameters, DeploymentMode.incremental, result_format, no_prompt, template_spec, query_string) - mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client( + cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) ScopedDeploymentWhatIf = cmd.get_models('ScopedDeploymentWhatIf') scoped_deployment_what_if = ScopedDeploymentWhatIf(location=deployment_location, properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if_at_subscription_scope(deployment_name, parameters=scoped_deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core( + cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -865,12 +874,14 @@ def _what_if_deploy_arm_template_at_management_group_core(cmd, management_group_ return_result=None): what_if_properties = _prepare_deployment_what_if_properties(cmd, 'managementGroup', template_file, template_uri, parameters, DeploymentMode.incremental, result_format, no_prompt, template_spec=template_spec, query_string=query_string) - mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client( + cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) ScopedDeploymentWhatIf = cmd.get_models('ScopedDeploymentWhatIf') scoped_deployment_what_if = ScopedDeploymentWhatIf(location=deployment_location, properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if_at_management_group_scope(management_group_id, deployment_name, parameters=scoped_deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core( + cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -895,11 +906,13 @@ def _what_if_deploy_arm_template_at_tenant_scope_core(cmd, return_result=None): what_if_properties = _prepare_deployment_what_if_properties(cmd, 'tenant', template_file, template_uri, parameters, DeploymentMode.incremental, result_format, no_prompt, template_spec, query_string) - mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client( + cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) ScopedDeploymentWhatIf = cmd.get_models('ScopedDeploymentWhatIf') scoped_deployment_what_if = ScopedDeploymentWhatIf(location=deployment_location, properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if_at_tenant_scope(deployment_name, parameters=scoped_deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core( + cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -937,7 +950,8 @@ def _prepare_template_uri_with_query_string(template_uri, input_query_string): return urlunsplit((scheme, netloc, path, new_query_string, fragment)) except Exception: # pylint: disable=broad-except - raise InvalidArgumentValueError('Unable to parse parameter: {} .Make sure the value is formed correctly.'.format(input_query_string)) + raise InvalidArgumentValueError( + 'Unable to parse parameter: {} .Make sure the value is formed correctly.'.format(input_query_string)) def _prepare_deployment_properties_unmodified(cmd, deployment_scope, template_file=None, template_uri=None, parameters=None, @@ -957,7 +971,8 @@ def _prepare_deployment_properties_unmodified(cmd, deployment_scope, template_fi if template_uri: if query_string: template_link = TemplateLink(uri=template_uri, query_string=query_string) - template_uri = _prepare_template_uri_with_query_string(template_uri=template_uri, input_query_string=query_string) + template_uri = _prepare_template_uri_with_query_string( + template_uri=template_uri, input_query_string=query_string) else: template_link = TemplateLink(uri=template_uri) template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) @@ -967,21 +982,25 @@ def _prepare_deployment_properties_unmodified(cmd, deployment_scope, template_fi # ResourceType.MGMT_RESOURCE_TEMPLATESPECS than our designated version. This ensures the api-version of all the rest requests for # template_spec are consistent in the same profile: api_version = get_api_version(cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], + api_version=api_version).properties['mainTemplate'] else: if _is_bicepparam_file_provided(parameters): ensure_bicep_installation(cli_ctx) minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + raise ArgumentUsageError( + f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") if len(parameters) > 1: - raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + raise ArgumentUsageError( + "Can not use --parameters argument more than once when using a .bicepparam file") bicepparam_file = parameters[0][0] if not is_bicep_file(template_file): raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output = run_bicep_command( + cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) build_bicepparam_output_json = json.loads(build_bicepparam_output) template_content = build_bicepparam_output_json["templateJson"] bicepparam_json_content = build_bicepparam_output_json["parametersJson"] @@ -1149,7 +1168,8 @@ def _update_provider(cmd, namespace, registering, wait, properties=None, mg_id=N if is_rpaas and accept_terms and registering and mg_id is None: # call accept term API from azure.cli.core.util import send_raw_request - send_raw_request(cmd.cli_ctx, 'put', RPAAS_APIS[namespace.lower()], body=json.dumps({"properties": {"accepted": True}})) + send_raw_request(cmd.cli_ctx, 'put', RPAAS_APIS[namespace.lower()], + body=json.dumps({"properties": {"accepted": True}})) else: action = 'Registering' if registering else 'Unregistering' msg_template = '%s is still on-going. You can monitor using \'az provider show -n %s\'' @@ -1395,6 +1415,7 @@ def export_group_as_template( return result.template + def create_application(cmd, resource_group_name, application_name, managedby_resource_group_id, kind, managedapp_definition_id=None, location=None, @@ -1966,9 +1987,11 @@ def create_template_spec(cmd, resource_group_name, name, template_file=None, loc exists = False if no_prompt is False: try: # Check if child template spec already exists. - rcf.template_spec_versions.get(resource_group_name=resource_group_name, template_spec_name=name, template_spec_version=version) + rcf.template_spec_versions.get(resource_group_name=resource_group_name, + template_spec_name=name, template_spec_version=version) from knack.prompting import prompt_y_n - confirmation = prompt_y_n("This will override template spec {} version {}. Proceed?".format(name, version)) + confirmation = prompt_y_n( + "This will override template spec {} version {}. Proceed?".format(name, version)) if not confirmation: return None exists = True @@ -1993,22 +2016,28 @@ def create_template_spec(cmd, resource_group_name, name, template_file=None, loc if not exists: try: # Check if parent template spec already exists. - existing_parent = rcf.template_specs.get(resource_group_name=resource_group_name, template_spec_name=name) + existing_parent = rcf.template_specs.get( + resource_group_name=resource_group_name, template_spec_name=name) if tags is None: # New version should inherit tags from parent if none are provided. tags = getattr(existing_parent, 'tags') except Exception: # pylint: disable=broad-except tags = tags or {} - TemplateSpec = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpec', mod='models') - template_spec_parent = TemplateSpec(location=location, description=description, display_name=display_name, tags=tags) + TemplateSpec = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, + 'TemplateSpec', mod='models') + template_spec_parent = TemplateSpec( + location=location, description=description, display_name=display_name, tags=tags) rcf.template_specs.create_or_update(resource_group_name, name, template_spec_parent) - TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpecVersion', mod='models') - template_spec_version = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) + TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, + 'TemplateSpecVersion', mod='models') + template_spec_version = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, + main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) return rcf.template_spec_versions.create_or_update(resource_group_name, name, version, template_spec_version) tags = tags or {} TemplateSpec = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpec', mod='models') - template_spec_parent = TemplateSpec(location=location, description=description, display_name=display_name, tags=tags) + template_spec_parent = TemplateSpec(location=location, description=description, + display_name=display_name, tags=tags) return rcf.template_specs.create_or_update(resource_group_name, name, template_spec_parent) @@ -2042,7 +2071,8 @@ def update_template_spec(cmd, resource_group_name=None, name=None, template_spec input_ui_form_definition = json.loads(json.dumps(ui_form_definition_content)) if version: - existing_template = rcf.template_spec_versions.get(resource_group_name=resource_group_name, template_spec_name=name, template_spec_version=version) + existing_template = rcf.template_spec_versions.get( + resource_group_name=resource_group_name, template_spec_name=name, template_spec_version=version) location = getattr(existing_template, 'location') @@ -2055,9 +2085,11 @@ def update_template_spec(cmd, resource_group_name=None, name=None, template_spec input_template = getattr(existing_template, 'main_template') if ui_form_definition_file is None: input_ui_form_definition = getattr(existing_template, 'ui_form_definition') - TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpecVersion', mod='models') + TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, + 'TemplateSpecVersion', mod='models') - updated_template_spec = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) + updated_template_spec = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, + main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) return rcf.template_spec_versions.create_or_update(resource_group_name, name, version, updated_template_spec) existing_template = rcf.template_specs.get(resource_group_name=resource_group_name, template_spec_name=name) @@ -2115,7 +2147,8 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, tags=None, yes=False): + +def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_apply_to_child_scopes=False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2131,7 +2164,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m delete_resource_groups_enum = delete_model if delete_resources: delete_resources_enum = delete_model - + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: @@ -2141,32 +2174,33 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete else: raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") - + excluded_principals_array = [] if deny_settings_excluded_principals: for principal in deny_settings_excluded_principals.split(" "): excluded_principals_array.append(str(principal)) - else: + else: excluded_principals_array = None - + tags = tags or {} if [template_file, template_spec, template_uri].count(None) != 2: - raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") + raise InvalidArgumentValueError( + "Please enter only one of the following: template file, template spec, or template url") try: get_subscription_response = rcf.deployment_stacks.get_at_subscription(name) if get_subscription_response: if get_subscription_response.location != location: raise CLIError("Cannot change location of an already existing stack at subscription scope.") - #bypass if yes flag is true + # bypass if yes flag is true if not yes: - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format(name) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( + name) build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - #first case we have only detach + # first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: build_confirmation_string += "\nDetach: resources and resource groups\n" - #second case we only have delete + # second case we only have delete elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: build_confirmation_string += "\nDeleting: resources and resource groups\n" else: @@ -2186,8 +2220,9 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m if not deployment_resource_group: deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) else: - deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_resource_group - + deployment_scope = "/subscriptions/" + \ + get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_resource_group + t_spec, t_uri = None, None template_obj = None @@ -2198,19 +2233,24 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m elif template_uri: t_uri = template_uri else: - raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) + raise InvalidArgumentValueError( + "Please enter one of the following: template file, template spec, or template url") + + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( + resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model, tags=tags) + deny_settings_model = rcf.deployment_stacks.models.DenySettings( + mode=deny_settings_enum, excluded_principals=excluded_principals_array, apply_to_child_scopes=apply_to_child_scopes) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( + description=description, location=location, action_on_unmanage=action_on_unmanage_model, deployment_scope=deployment_scope, deny_settings=deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], + api_version=api_version).properties['mainTemplate'] elif t_uri: deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link @@ -2221,14 +2261,17 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + raise ArgumentUsageError( + f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") if len(parameters) > 1: - raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + raise ArgumentUsageError( + "Can not use --parameters argument more than once when using a .bicepparam file") bicepparam_file = parameters[0][0] if not is_bicep_file(template_file): raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output = run_bicep_command( + cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) build_bicepparam_output_json = json.loads(build_bicepparam_output) template_content = build_bicepparam_output_json["templateJson"] bicepparam_json_content = build_bicepparam_output_json["parametersJson"] @@ -2257,20 +2300,23 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m deployment_stack_model.parameters = parameters - return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_subscription,name, deployment_stack_model) + return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_subscription, name, deployment_stack_model) + def show_deployment_stack_at_subscription(cmd, name=None, id=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name or id: - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: return rcf.deployment_stacks.get_at_subscription(name) return rcf.deployment_stacks.get_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") + def list_deployment_stack_at_subscription(cmd): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_subscription() + def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) confirmation = "Are you sure you want to delete this stack" @@ -2288,21 +2334,23 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_reso if delete_resource_groups: delete_list.append("resource groups") delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - + if delete_resources: delete_list.append("resources") delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - #build confirmation string + + # build confirmation string from knack.prompting import prompt_y_n if not yes: if not delete_list: response = prompt_y_n(confirmation + "?") - if not response: return None + if not response: + return None else: confirmation += " and the specified resources: " response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if not response: + return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2316,10 +2364,12 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_reso delete_name = name rcf.deployment_stacks.get_at_subscription(name) except: - raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current subscription scope.") + raise ResourceNotFoundError("DeploymentStack " + delete_name + + " not found in the current subscription scope.") return rcf.deployment_stacks.begin_delete_at_subscription(delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") + def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2328,7 +2378,8 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): + +def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2344,7 +2395,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se delete_resource_groups_enum = delete_model if delete_resources: delete_resources_enum = delete_model - + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: @@ -2354,26 +2405,28 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete else: raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") - + excluded_principals_array = [] if deny_settings_excluded_principals: for principal in deny_settings_excluded_principals.split(" "): excluded_principals_array.append(str(principal)) - else: + else: excluded_principals_array = None - + if [template_file, template_spec, template_uri].count(None) != 2: - raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") + raise InvalidArgumentValueError( + "Please enter only one of the following: template file, template spec, or template url") try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): if not yes: from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format(name) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( + name) build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - #first case we have only detach + # first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: build_confirmation_string += "\nDetach: resources and resource groups\n" - #second case we only have delete + # second case we only have delete elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: build_confirmation_string += "\nDeleting: resources and resource groups\n" else: @@ -2399,20 +2452,25 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se elif template_uri: t_uri = template_uri else: - raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage(resources = delete_resources_enum, resource_groups = delete_resource_groups_enum) - #removed the following code because it is not in service yet, need to add this back eventually + raise InvalidArgumentValueError( + "Please enter one of the following: template file, template spec, or template url") + + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( + resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) + # removed the following code because it is not in service yet, need to add this back eventually apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, action_on_unmanage = action_on_unmanage_model, deny_settings = deny_settings_model, tags = tags) + deny_settings_model = rcf.deployment_stacks.models.DenySettings( + mode=deny_settings_enum, excluded_principals=excluded_principals_array, apply_to_child_scopes=apply_to_child_scopes) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( + description=description, action_on_unmanage=action_on_unmanage_model, deny_settings=deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], + api_version=api_version).properties['mainTemplate'] elif t_uri: deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link @@ -2423,14 +2481,17 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + raise ArgumentUsageError( + f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") if len(parameters) > 1: - raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + raise ArgumentUsageError( + "Can not use --parameters argument more than once when using a .bicepparam file") bicepparam_file = parameters[0][0] if not is_bicep_file(template_file): raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output = run_bicep_command( + cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) build_bicepparam_output_json = json.loads(build_bicepparam_output) template_content = build_bicepparam_output_json["templateJson"] bicepparam_json_content = build_bicepparam_output_json["parametersJson"] @@ -2458,7 +2519,8 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se deployment_stack_model.parameters = parameters - return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_resource_group,resource_group, name, deployment_stack_model) + return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_resource_group, resource_group, name, deployment_stack_model) + def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2471,12 +2533,14 @@ def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, return rcf.deployment_stacks.get_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") + def list_deployment_stack_at_resource_group(cmd, resource_group): if resource_group: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_resource_group(resource_group) raise InvalidArgumentValueError("Please enter the resource group") + def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) confirmation = "Are you sure you want to delete this stack" @@ -2494,25 +2558,27 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=Non if delete_resource_groups: delete_list.append("resource groups") delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - + if delete_resources: delete_list.append("resources") delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - #build confirmation string + + # build confirmation string from knack.prompting import prompt_y_n if not yes: if not delete_list: response = prompt_y_n(confirmation + "?") - if not response: return None + if not response: + return None else: confirmation += " and the specified resources: " response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if not response: + return None if name and resource_group: try: - rcf.deployment_stacks.get_at_resource_group(resource_group,name) + rcf.deployment_stacks.get_at_resource_group(resource_group, name) except: raise ResourceNotFoundError("DeploymentStack " + name + " not found in the current resource group scope.") return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, resource_group, name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) @@ -2529,6 +2595,7 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=Non return sdk_no_wait(False, rcf.deployment_stacks.begin_delete_at_resource_group, stack_rg, name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") + def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: @@ -2540,12 +2607,13 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ return rcf.deployment_stacks.export_template_at_resource_group(stack_arr[4], stack_arr[-1]) raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deny_settings_mode, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals = None, deny_settings_apply_to_child_scopes = False, yes=False, tags=None): + +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deny_settings_mode, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - + delete_resources_enum = detach_model delete_resource_groups_enum = detach_model @@ -2556,7 +2624,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, delete_resource_groups_enum = delete_model if delete_resources: delete_resources_enum = delete_model - + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: @@ -2566,27 +2634,29 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete else: raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") - + excluded_principals_array = [] if deny_settings_excluded_principals: for principal in deny_settings_excluded_principals.split(" "): excluded_principals_array.append(str(principal)) - else: + else: excluded_principals_array = None - + if [template_file, template_spec, template_uri].count(None) != 2: - raise InvalidArgumentValueError("Please enter only one of the following: template file, template spec, or template url") + raise InvalidArgumentValueError( + "Please enter only one of the following: template file, template spec, or template url") try: get_mg_response = rcf.deployment_stacks.get_at_management_group(management_group_id, name) if get_mg_response: if not yes: from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format(name) + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( + name) build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - #first case we have only detach + # first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: build_confirmation_string += "\nDetach: resources and resource groups\n" - #second case we only have delete + # second case we only have delete elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: build_confirmation_string += "\nDeleting: resources and resource groups\n" else: @@ -2607,7 +2677,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, deployment_scope = "/subscriptions/" + get_subscription_id(cmd.cli_ctx) else: deployment_scope = "/subscriptions/" + deployment_subscription - + t_spec, t_uri = None, None template_obj = None @@ -2618,19 +2688,24 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, elif template_uri: t_uri = template_uri else: - raise InvalidArgumentValueError("Please enter one of the following: template file, template spec, or template url") - - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage(resources = delete_resources_enum, resource_groups=delete_resource_groups_enum) + raise InvalidArgumentValueError( + "Please enter one of the following: template file, template spec, or template url") + + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( + resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings(mode = deny_settings_enum, excluded_principals = excluded_principals_array, apply_to_child_scopes = apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack(description = description, location = location, action_on_unmanage = action_on_unmanage_model, deployment_scope = deployment_scope, deny_settings = deny_settings_model, tags=tags) + deny_settings_model = rcf.deployment_stacks.models.DenySettings( + mode=deny_settings_enum, excluded_principals=excluded_principals_array, apply_to_child_scopes=apply_to_child_scopes) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( + description=description, location=location, action_on_unmanage=action_on_unmanage_model, deployment_scope=deployment_scope, deny_settings=deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], + api_version=api_version).properties['mainTemplate'] elif t_uri: deployment_stacks_template_link.uri = t_uri deployment_stack_model.template_link = deployment_stacks_template_link @@ -2641,14 +2716,17 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + raise ArgumentUsageError( + f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") if len(parameters) > 1: - raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") + raise ArgumentUsageError( + "Can not use --parameters argument more than once when using a .bicepparam file") bicepparam_file = parameters[0][0] if not is_bicep_file(template_file): raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output = run_bicep_command( + cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) build_bicepparam_output_json = json.loads(build_bicepparam_output) template_content = build_bicepparam_output_json["templateJson"] bicepparam_json_content = build_bicepparam_output_json["parametersJson"] @@ -2664,7 +2742,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, deployment_stack_model.template = json.loads(json.dumps(template_obj)) else: deployment_stack_model.template = json.load(open(template_file)) - + template_param_defs = template_obj.get('parameters', {}) template_obj['resources'] = template_obj.get('resources', []) @@ -2677,7 +2755,8 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, deployment_stack_model.parameters = parameters - return sdk_no_wait(False,rcf.deployment_stacks.begin_create_or_update_at_management_group, management_group_id, name, deployment_stack_model) + return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_management_group, management_group_id, name, deployment_stack_model) + def show_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): if name or id: @@ -2687,10 +2766,12 @@ def show_deployment_stack_at_management_group(cmd, management_group_id, name=Non return rcf.deployment_stacks.get_at_management_group(management_group_id, id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") + def list_deployment_stack_at_management_group(cmd, management_group_id): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) return rcf.deployment_stacks.list_at_management_group(management_group_id) + def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) confirmation = "Are you sure you want to delete this stack" @@ -2708,21 +2789,23 @@ def delete_deployment_stack_at_management_group(cmd, management_group_id, name=N if delete_resource_groups: delete_list.append("resource groups") delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - + if delete_resources: delete_list.append("resources") delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - #build confirmation string + + # build confirmation string from knack.prompting import prompt_y_n if not yes: if not delete_list: response = prompt_y_n(confirmation + "?") - if not response: return None + if not response: + return None else: confirmation += " and the specified resources: " response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: return None + if not response: + return None if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2736,10 +2819,12 @@ def delete_deployment_stack_at_management_group(cmd, management_group_id, name=N delete_name = name rcf.deployment_stacks.get_at_management_group(management_group_id, name) except: - raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current management group scope.") + raise ResourceNotFoundError("DeploymentStack " + delete_name + + " not found in the current management group scope.") return rcf.deployment_stacks.begin_delete_at_management_group(management_group_id, delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") + def export_template_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2748,6 +2833,7 @@ def export_template_deployment_stack_at_management_group(cmd, management_group_i return rcf.deployment_stacks.export_template_at_management_group(management_group_id, id.split('/')[-1]) raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") + def list_deployment_operations_at_subscription_scope(cmd, deployment_name): rcf = _resource_client_factory(cmd.cli_ctx) return rcf.deployment_operations.list_at_subscription_scope(deployment_name) @@ -2808,9 +2894,12 @@ def list_resources(cmd, resource_group_name=None, def register_provider(cmd, resource_provider_namespace, consent_to_permissions=False, mg=None, wait=False, accept_terms=None): properties = None if cmd.supported_api_version(min_api='2021-04-01') and consent_to_permissions: - ProviderRegistrationRequest, ProviderConsentDefinition = cmd.get_models('ProviderRegistrationRequest', 'ProviderConsentDefinition') - properties = ProviderRegistrationRequest(third_party_provider_consent=ProviderConsentDefinition(consent_to_authorization=consent_to_permissions)) - _update_provider(cmd, resource_provider_namespace, registering=True, wait=wait, properties=properties, mg_id=mg, accept_terms=accept_terms) + ProviderRegistrationRequest, ProviderConsentDefinition = cmd.get_models( + 'ProviderRegistrationRequest', 'ProviderConsentDefinition') + properties = ProviderRegistrationRequest(third_party_provider_consent=ProviderConsentDefinition( + consent_to_authorization=consent_to_permissions)) + _update_provider(cmd, resource_provider_namespace, registering=True, wait=wait, + properties=properties, mg_id=mg, accept_terms=accept_terms) def unregister_provider(cmd, resource_provider_namespace, wait=False): @@ -2918,7 +3007,8 @@ def create_policy_assignment(cmd, policy=None, policy_set_definition=None, params = _load_file_string_or_uri(params, 'params', False) PolicyAssignment = cmd.get_models('PolicyAssignment') - assignment = PolicyAssignment(display_name=display_name, policy_definition_id=policy_id, scope=scope, enforcement_mode=enforcement_mode, description=description) + assignment = PolicyAssignment(display_name=display_name, policy_definition_id=policy_id, + scope=scope, enforcement_mode=enforcement_mode, description=description) assignment.parameters = params if params else None if cmd.supported_api_version(min_api='2017-06-01-preview'): @@ -2954,7 +3044,8 @@ def create_policy_assignment(cmd, policy=None, policy_set_definition=None, # Create the identity's role assignment if requested if identities is not None and identity_scope: from azure.cli.core.commands.arm import assign_identity as _assign_identity_helper - _assign_identity_helper(cmd.cli_ctx, lambda: createdAssignment, lambda resource: createdAssignment, identity_role, identity_scope) + _assign_identity_helper(cmd.cli_ctx, lambda: createdAssignment, + lambda resource: createdAssignment, identity_role, identity_scope) return createdAssignment @@ -3066,7 +3157,8 @@ def list_policy_assignment(cmd, disable_scope_strict_match=None, resource_group_ management_group = _parse_management_group_id(scope) if management_group: - result = policy_client.policy_assignments.list_for_management_group(management_group_id=management_group, filter='atScope()') + result = policy_client.policy_assignments.list_for_management_group( + management_group_id=management_group, filter='atScope()') elif all([resource_type, resource_group, subscription]): namespace = id_parts.get('namespace') parent_resource_path = '' if not id_parts.get('child_name_1') else (id_parts['type'] + '/' + id_parts['name']) @@ -3104,7 +3196,8 @@ def create_policy_non_compliance_message(cmd, name, message, scope=None, resourc assignment = policy_client.policy_assignments.get(scope, name) NonComplianceMessage = cmd.get_models('NonComplianceMessage') - created_message = NonComplianceMessage(message=message, policy_definition_reference_id=policy_definition_reference_id) + created_message = NonComplianceMessage( + message=message, policy_definition_reference_id=policy_definition_reference_id) if not assignment.non_compliance_messages: assignment.non_compliance_messages = [] assignment.non_compliance_messages.append(created_message) @@ -3121,9 +3214,11 @@ def delete_policy_non_compliance_message(cmd, name, message, scope=None, resourc assignment = policy_client.policy_assignments.get(scope, name) NonComplianceMessage = cmd.get_models('NonComplianceMessage') - message_to_remove = NonComplianceMessage(message=message, policy_definition_reference_id=policy_definition_reference_id) + message_to_remove = NonComplianceMessage( + message=message, policy_definition_reference_id=policy_definition_reference_id) if assignment.non_compliance_messages: - assignment.non_compliance_messages = [existingMessage for existingMessage in assignment.non_compliance_messages if not _is_non_compliance_message_equivalent(existingMessage, message_to_remove)] + assignment.non_compliance_messages = [ + existingMessage for existingMessage in assignment.non_compliance_messages if not _is_non_compliance_message_equivalent(existingMessage, message_to_remove)] return policy_client.policy_assignments.create(scope, name, assignment).non_compliance_messages @@ -3326,7 +3421,8 @@ def update_policy_definition(cmd, policy_definition_name, rules=None, params=Non params = _load_file_string_or_uri(params, 'params', False) policy_client = _resource_policy_client_factory(cmd.cli_ctx) - definition = _get_custom_or_builtin_policy(cmd, policy_client, policy_definition_name, subscription, management_group) + definition = _get_custom_or_builtin_policy( + cmd, policy_client, policy_definition_name, subscription, management_group) # pylint: disable=line-too-long,no-member PolicyDefinition = cmd.get_models('PolicyDefinition') @@ -3361,7 +3457,8 @@ def update_policy_setdefinition(cmd, policy_set_definition_name, definitions=Non definition_groups = _load_file_string_or_uri(definition_groups, 'definition_groups', False) policy_client = _resource_policy_client_factory(cmd.cli_ctx) - definition = _get_custom_or_builtin_policy(cmd, policy_client, policy_set_definition_name, subscription, management_group, True) + definition = _get_custom_or_builtin_policy( + cmd, policy_client, policy_set_definition_name, subscription, management_group, True) # pylint: disable=line-too-long,no-member PolicySetDefinition = cmd.get_models('PolicySetDefinition') parameters = PolicySetDefinition( @@ -3452,7 +3549,8 @@ def list_policy_exemption(cmd, disable_scope_strict_match=None, resource_group_n management_group = _parse_management_group_id(scope) if management_group: - result = policy_client.policy_exemptions.list_for_management_group(management_group_id=management_group, filter='atScope()') + result = policy_client.policy_exemptions.list_for_management_group( + management_group_id=management_group, filter='atScope()') elif all([resource_type, resource_group, subscription]): namespace = id_parts.get('namespace') parent_resource_path = '' if not id_parts.get('child_name_1') else (id_parts['type'] + '/' + id_parts['name']) @@ -3469,7 +3567,8 @@ def list_policy_exemption(cmd, disable_scope_strict_match=None, resource_group_n raise ArgumentUsageError('usage error: --scope ARM_ID | --resource-group NAME') if not disable_scope_strict_match: - result = [i for i in result if i.id.lower().strip('/').startswith(_scope.lower().strip('/') + "/providers/microsoft.authorization/policyexemptions")] + result = [i for i in result if i.id.lower().strip('/').startswith(_scope.lower().strip('/') + + "/providers/microsoft.authorization/policyexemptions")] return result @@ -3645,7 +3744,8 @@ def cli_hierarchy_settings_create( require_authorization_for_group_creation=None, default_management_group=None): from azure.mgmt.managementgroups.models import CreateOrUpdateSettingsRequest - create_or_update_parameters = CreateOrUpdateSettingsRequest(require_authorization_for_group_creation=require_authorization_for_group_creation, default_management_group=default_management_group) + create_or_update_parameters = CreateOrUpdateSettingsRequest( + require_authorization_for_group_creation=require_authorization_for_group_creation, default_management_group=default_management_group) return client.create_or_update(group_name, create_or_update_parameters) @@ -3667,7 +3767,8 @@ def cli_hierarchysettings_group_update_custom_func( def cli_hierarchysettings_group_update_get(): from azure.mgmt.managementgroups.models import CreateOrUpdateSettingsRequest - update_parameters = CreateOrUpdateSettingsRequest(require_authorization_for_group_creation=None, default_management_group=None) + update_parameters = CreateOrUpdateSettingsRequest( + require_authorization_for_group_creation=None, default_management_group=None) return update_parameters @@ -4415,7 +4516,8 @@ def publish_bicep_file(cmd, file, target, documentationUri=None): if bicep_version_greater_than_or_equal_to(minimum_supported_version_for_documentationUri_parameter): args += ["--documentationUri", documentationUri] else: - logger.error("az bicep publish with --documentationUri/-d parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version_for_documentationUri_parameter) + logger.error("az bicep publish with --documentationUri/-d parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", + minimum_supported_version_for_documentationUri_parameter) run_bicep_command(cmd.cli_ctx, args) else: logger.error("az bicep publish could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 48433f22140..b0c71e01b2d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2138,6 +2138,7 @@ class DeploymentStacksTest(ScenarioTest): global location location = "westus2" @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) + @AllowLargeResponse def test_create_deployment_stack_subscription(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) From 4f9f786ae87e0aa3630ef8e16bc80a20a353431f Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 11 May 2023 12:25:35 -0400 Subject: [PATCH 103/139] Missed commit --- .../cli/command_modules/resource/_params.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 91d4ede5246..d3112e7ee2b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -142,22 +142,6 @@ def load_arguments(self, _): bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') bicep_no_restore_type = CLIArgumentType(options_list=['--no-restore'], action='store_true') -<<<<<<< HEAD - bicep_outdir_type = CLIArgumentType( - options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") - bicep_outfile_type = CLIArgumentType( - options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") - bicep_stdout_type = CLIArgumentType( - options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") - bicep_indentkind_type = CLIArgumentType( - options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") - bicep_indentsize_type = CLIArgumentType( - options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") - bicep_insertfinalnewline_type = CLIArgumentType( - options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") - bicep_newline_type = CLIArgumentType( - options_list=['--newline'], action='store_true', help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") -======= bicep_outdir_type = CLIArgumentType(options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") bicep_outfile_type = CLIArgumentType(options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") bicep_stdout_type = CLIArgumentType(options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") @@ -165,7 +149,6 @@ def load_arguments(self, _): bicep_indentsize_type = CLIArgumentType(options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") bicep_insertfinalnewline_type = CLIArgumentType(options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") bicep_newline_type = CLIArgumentType(options_list=['--newline'], help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") ->>>>>>> dev bicep_target_platform_type = CLIArgumentType(options_list=['--target-platform', '-t'], arg_type=get_enum_type( ["win-x64", "linux-musl-x64", "linux-x64", "osx-x64", "linux-arm64", "osx-arm64"]), From b51f8166964262965c304c9a4d518da80e2c102c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 15 May 2023 21:46:37 -0400 Subject: [PATCH 104/139] Resolved comments regarding service_name and some of the style issues --- .../command_modules/resource/_validators.py | 1 + .../resource/tests/latest/test_resource.py | 129 +++++++++--------- src/azure-cli/service_name.json | 5 + 3 files changed, 71 insertions(+), 64 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_validators.py b/src/azure-cli/azure/cli/command_modules/resource/_validators.py index 9e58ad7404a..1612b8470cd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_validators.py @@ -41,6 +41,7 @@ def _validate_template_spec_out(namespace): if namespace.output_folder and not os.path.isdir(namespace.output_folder): raise CLIError('Please enter a valid output folder') + def validate_deployment_stack_files(namespace): from azure.cli.core.commands.validators import validate_tags from azure.cli.core.azclierror import InvalidArgumentValueError diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 16fb35eff3c..af34461fa12 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -90,7 +90,7 @@ def test_resource_group_export_skip_resource_name_params(self, resource_group): result = self.cmd('group export --name {rg} --resource-ids "{vnet_id}" --skip-resource-name-params --query "parameters"') self.assertEqual('{}\n', result.output) - + @ResourceGroupPreparer(name_prefix='cli_test_rg_scenario') def test_resource_group_force_deletion_type(self, resource_group): @@ -102,7 +102,7 @@ def test_resource_group_force_deletion_type(self, resource_group): self.cmd('group delete -n testrg -f Microsoft.Compute/virtualMachines --yes') self.cmd('group exists -n testrg', - checks=self.check('@', False)) + checks=self.check('@', False)) class ResourceGroupNoWaitScenarioTest(ScenarioTest): @@ -785,7 +785,7 @@ class ProviderOperationTest(ScenarioTest): def test_provider_operation(self): result = self.cmd('provider operation list').get_output_in_json() self.assertGreater(len(result), 0) - + self.cmd('provider operation show --namespace microsoft.compute', checks=[ self.check('id', '/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute'), self.check('type', 'Microsoft.Authorization/providerOperations') @@ -2186,13 +2186,13 @@ def test_create_deployment_stack_subscription(self, resource_group): #create deployment stack with template spec and parameter file self.cmd('stack sub create --name {name} --location {location} --template-spec "{template-spec-id}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) - # cleanup + # cleanup self.cmd('stack sub delete --name {name} --yes') - + # deploy to rg self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deployment-resource-group {resource-group} --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) - # cleanup + # cleanup self.cmd('stack sub delete --name {name} --yes') # create deployment stack with bicep file and rg scope @@ -2274,7 +2274,7 @@ def test_create_deployment_stack_subscription(self, resource_group): # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') - # create stack with delete-all set + # create stack with delete-all set self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{template-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure @@ -2313,9 +2313,9 @@ def test_show_deployment_stack_subscription(self): # show stack with stack id self.cmd('stack sub show --id {deployment-stack-id}', checks=self.check('name', '{name}')) - # cleanup + # cleanup self.cmd('stack sub delete --name {name} --yes') - + @AllowLargeResponse(4096) def test_list_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2331,15 +2331,15 @@ def test_list_deployment_stack_subscription(self): self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --parameters "{parameter-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - # list stacks + # list stacks list_deployment_stacks = self.cmd('stack sub list').get_output_in_json() self.assertTrue(len(list_deployment_stacks) > 0) self.assertTrue(list_deployment_stacks[0]['name'], '{name}') - # cleanup + # cleanup self.cmd('stack sub delete --name {name} --yes') - + @AllowLargeResponse(4096) def test_delete_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2387,7 +2387,7 @@ def test_delete_deployment_stack_subscription(self): self.kwargs.update({'id': stack_id}) - # delete stack with id + # delete stack with id self.cmd('stack sub delete --id {id} --yes') #confirm stack is deleted @@ -2419,7 +2419,7 @@ def test_delete_deployment_stack_subscription(self): # test delete flag --delete-resource-groups - create stack with resource1 self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) - + # delete stack with resource1 set to detach self.cmd('stack sub delete --name {name} --yes') @@ -2438,7 +2438,7 @@ def test_delete_deployment_stack_subscription(self): #confirm resource2 has been removed from Azure self.cmd('group list', checks=self.check("length([?name=='{resource-two}'])", 0)) - # cleanup + # cleanup self.cmd('group delete --name {resource-one} --yes') #new code @@ -2454,7 +2454,7 @@ def test_delete_deployment_stack_subscription(self): # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') - # create stack with delete-all set + # create stack with delete-all set self.cmd('stack sub delete --name {name} --delete-all --yes') # confirm template spec has been removed from azure @@ -2491,7 +2491,7 @@ def test_export_template_deployment_stack_subscription(self): # show stack with stack name self.cmd('stack sub show --name {name}', checks=self.check('name', '{name}')) - # cleanup + # cleanup self.cmd('stack sub delete --name {name} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) @@ -2542,7 +2542,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): #create deployment stack with template spec and parameter file self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) - # cleanup + # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # create deployment stack with bicep file @@ -2559,7 +2559,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # check that resource1 still exists in Azure self.cmd('resource show -n {resource-one} -g {resource-group} --resource-type {resource-type-specs}') - + # check that resource2 exists in Azure self.cmd('resource show -n {resource-two} -g {resource-group} --resource-type {resource-type-specs}') @@ -2587,7 +2587,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') - # create stack with delete-all set + # create stack with delete-all set self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) # confirm template spec has been removed from azure @@ -2612,7 +2612,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') - # create stack with delete-all set + # create stack with delete-all set self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{template-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) #confirm rg resource1 has been removed from azure @@ -2651,9 +2651,9 @@ def test_show_deployment_stack_resource_group(self, resource_group): # show stack with stack id self.cmd('stack group show --id {deployment-stack-id}', checks=self.check('name', '{name}')) - # cleanup + # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_list_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2675,9 +2675,10 @@ def test_list_deployment_stack_resource_group(self, resource_group): self.assertTrue(len(list_deployment_stacks_rg) > 0) self.assertTrue(list_deployment_stacks_rg[0]['name'], '{name}') - # cleanup + # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - + + @AllowLargeResponse(4096) @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_delete_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2711,11 +2712,11 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # delete stack self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - + #confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) - # create stack + # create stack created_stack = self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] @@ -2723,7 +2724,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) - # delete stack with stack id + # delete stack with stack id self.cmd('stack group delete --id {id} --resource-group {resource-group} --yes') #confirm stack is deleted @@ -2765,7 +2766,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') - # create stack with delete-all set + # create stack with delete-all set self.cmd('stack group delete --name {name} -g {resource-group-two} --delete-all --yes') # confirm template spec has been removed from azure @@ -2787,7 +2788,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # check rg resource1 exists in Azure self.cmd('group show -n {resource-one}') - # delete stack with delete-all set + # delete stack with delete-all set self.cmd('stack group delete --name {name} -g {resource-group-two} --delete-all --yes') #confirm rg resource1 has been removed from azure @@ -2795,7 +2796,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # cleanup - delete resource group two self.cmd('group delete --name {resource-group-two} --yes') - + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_export_template_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2822,7 +2823,7 @@ def test_export_template_deployment_stack_resource_group(self, resource_group): # show stack with stack name self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) - # cleanup + # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) @@ -2859,7 +2860,7 @@ def test_create_deployment_stack_management_group(self, resource_group): }) # create mg #self.cmd('account management-group create --name {mg}', checks=[]) - + # create template spec #basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() #template_spec_id = basic_template_spec['id'] @@ -2875,9 +2876,9 @@ def test_create_deployment_stack_management_group(self, resource_group): #create deployment stack with template spec and parameter file #self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) - # cleanup + # cleanup #self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - + # test delete flag --delete-resource-groups - create stack with resource1 self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) @@ -2930,7 +2931,7 @@ def test_show_deployment_stack_management_group(self): # show stack with stack id self.cmd('stack mg show --id {deployment-stack-id} --management-group-id {mg}', checks=self.check('name', '{name}')) - # cleanup + # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') def test_delete_deployment_stack_management_group(self): @@ -2980,12 +2981,12 @@ def test_delete_deployment_stack_management_group(self): self.kwargs.update({'id': stack_id}) - # delete stack with id + # delete stack with id self.cmd('stack mg delete --id {id} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) - + # delete stack with resource1 set to detach self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') @@ -3004,7 +3005,7 @@ def test_delete_deployment_stack_management_group(self): #confirm resource2 has been removed from Azure self.cmd('group list', checks=self.check("length([?name=='{resource-two}'])", 0)) - # cleanup + # cleanup self.cmd('group delete --name {resource-one} --yes') def test_export_template_deployment_stack_management_group(self): @@ -3035,7 +3036,7 @@ def test_export_template_deployment_stack_management_group(self): # show stack with stack name self.cmd('stack mg show --name {name} --management-group-id {mg}', checks=self.check('name', '{name}')) - # cleanup + # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') @AllowLargeResponse(4096) @@ -3054,15 +3055,15 @@ def test_list_deployment_stack_management_group(self): self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() - # list stacks + # list stacks list_deployment_stacks = self.cmd('stack mg list --management-group-id {mg}').get_output_in_json() self.assertTrue(len(list_deployment_stacks) > 0) self.assertTrue(list_deployment_stacks[0]['name'], '{name}') - # cleanup + # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - + class DeploymentTestAtSubscriptionScopeTemplateSpecs(ScenarioTest): @AllowLargeResponse(4096) @@ -3218,7 +3219,7 @@ def test_feature_registration_list(self): self.cmd('feature registration list', checks=self.check("length([?name=='Microsoft.Network/SkipPseudoVipGeneration'])", 1)) self.cmd('feature registration show --provider-namespace Microsoft.Network -n AllowLBPreview') - + @AllowLargeResponse(8192) def test_feature_registration_create(self): self.cmd('feature registration create --namespace Microsoft.Network --name AllowLBPreview', checks=[ @@ -5003,13 +5004,13 @@ def setup(self): def tearDown(self): super().tearDown() self.cmd('az bicep uninstall') - + def test_install_and_upgrade(self): self.cmd('az bicep install') self.cmd('az bicep version') - + self.cmd('az bicep uninstall') - + self.cmd('az bicep install --target-platform win-x64') self.cmd('az bicep version') @@ -5018,9 +5019,9 @@ def test_install_and_upgrade(self): self.cmd('az bicep install --version v0.4.63') self.cmd('az bicep upgrade') self.cmd('az bicep version') - + self.cmd('az bicep uninstall') - + self.cmd('az bicep install --version v0.4.63') self.cmd('az bicep upgrade -t win-x64') self.cmd('az bicep version') @@ -5125,8 +5126,8 @@ def test_resource_group_level_deployment_with_bicepparams(self): self.cmd('deployment group create --resource-group {rg} --template-file "{tf}" --parameters {params}', checks=[ self.check('properties.provisioningState', 'Succeeded') - ]) - + ]) + def test_resource_deployment_with_bicepparam_and_incompatible_version(self): self.kwargs.update({ 'rg' : "exampleGroup", @@ -5135,10 +5136,10 @@ def test_resource_deployment_with_bicepparam_and_incompatible_version(self): }) self.cmd('az bicep install --version v0.13.1') - + minimum_supported_version = "0.14.85" with self.assertRaisesRegex(CLIError, f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to { minimum_supported_version} or later."): - self.cmd('deployment group create --resource-group {rg} --template-file "{tf}" --parameters {params}') + self.cmd('deployment group create --resource-group {rg} --template-file "{tf}" --parameters {params}') def test_resource_deployment_with_bicepparam_and_json_template(self): self.kwargs.update({ @@ -5146,10 +5147,10 @@ def test_resource_deployment_with_bicepparam_and_json_template(self): 'tf': "./main.json", 'params' : "./param.bicepparam" }) - + with self.assertRaisesRegex(CLIError, "Only a .bicep template is allowed with a .bicepparam parameter file"): self.cmd('deployment group create --resource-group {rg} --template-file "{tf}" --parameters {params}') - + def test_resource_deployment_with_bicepparam_and_other_parameter_sources(self): self.kwargs.update({ @@ -5161,7 +5162,7 @@ def test_resource_deployment_with_bicepparam_and_other_parameter_sources(self): with self.assertRaisesRegex(CLIError, "Can"): self.cmd('deployment group create --resource-group {rg} --template-file "{tf}" --parameters {params1} --parameters {params2}') - + def test_subscription_level_deployment_with_bicep(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) self.kwargs.update({ @@ -5302,7 +5303,7 @@ def test_list_resourcemanagementprivatelink(self, resource_group, resource_group self.cmd('resourcemanagement private-link delete -g {rg} -n {name1} --yes', checks=self.is_empty()) self.cmd('resourcemanagement private-link delete -g {rg} -n {name2} --yes', checks=self.is_empty()) -class PrivateLinkAssociationTest(ScenarioTest): +class PrivateLinkAssociationTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_resourcemanager_privatelink_get', location='westus') def test_get_privatelinkassociation(self, resource_group, resource_group_location): @@ -5319,13 +5320,13 @@ def test_get_privatelinkassociation(self, resource_group, resource_group_locatio self.cmd('resourcemanagement private-link create -g {rg} -n {n} -l {loc}', checks=[ self.check('name', '{n}'), self.check('location', '{loc}') - ]) + ]) self.kwargs['pl'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{n}'.format( **self.kwargs) self.cmd('private-link association create -m {mg} -n {pla} --privatelink {pl} --public-network-access enabled', checks=[]) - + self.cmd('private-link association show -m {mg} -n {pla}', checks=[ self.check('name', '{pla}'), self.check('properties.publicNetworkAccess', 'Enabled'), @@ -5352,7 +5353,7 @@ def test_create_privatelinkassociation(self, resource_group, resource_group_loca self.cmd('resourcemanagement private-link create -g {rg} -n {n} -l {loc}', checks=[ self.check('name', '{n}'), self.check('location', '{loc}') - ]) + ]) self.kwargs['pl'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{n}'.format( **self.kwargs) @@ -5382,7 +5383,7 @@ def test_delete_privatelinkassociation(self, resource_group, resource_group_loca self.cmd('resourcemanagement private-link create -g {rg} -n {n} -l {loc}', checks=[ self.check('name', '{n}'), self.check('location', '{loc}') - ]) + ]) self.kwargs['pl'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{n}'.format( **self.kwargs) @@ -5397,7 +5398,7 @@ def test_delete_privatelinkassociation(self, resource_group, resource_group_loca # clean self.cmd('private-link association delete -m {mg} -n {pla} --yes', self.is_empty()) - + @ResourceGroupPreparer(name_prefix='cli_test_resourcemanager_privatelink_list', location='westus') def test_list_privatelinkassociation(self, resource_group, resource_group_location): account = self.cmd("account show").get_output_in_json() @@ -5413,12 +5414,12 @@ def test_list_privatelinkassociation(self, resource_group, resource_group_locati self.cmd('resourcemanagement private-link create -g {rg} -n {n} -l {loc}', checks=[ self.check('name', '{n}'), self.check('location', '{loc}') - ]) + ]) self.kwargs['pl'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{n}'.format( **self.kwargs) self.cmd('private-link association create -m {mg} -n {pla} --privatelink {pl} --public-network-access enabled', checks=[]) - + self.cmd('private-link association list -m {mg}', checks=[ self.check('value[5].name', '{pla}'), self.check('value[5].properties.publicNetworkAccess', 'Enabled'), diff --git a/src/azure-cli/service_name.json b/src/azure-cli/service_name.json index e08434f4fc2..69dca671535 100644 --- a/src/azure-cli/service_name.json +++ b/src/azure-cli/service_name.json @@ -174,6 +174,11 @@ "AzureServiceName": "Azure Resource Manager", "URL": "https://docs.microsoft.com/azure/azure-resource-manager/templates/template-tutorial-deployment-script" }, + { + "Command": "az stacks", + "AzureServiceName": "Azure Resource Manager", + "URL": "https://github.com/Azure/deployment-stacks/blob/main/TUTORIAL.md" + }, { "Command": "az devops", "AzureServiceName": "Azure DevOps", From 43546df94a9c11f458b97f809804ab1af1f36be5 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 1 Jun 2023 18:28:27 -0400 Subject: [PATCH 105/139] Added excludedActions & queryString & style fixes [Not IT Tested] --- .../cli/command_modules/resource/_help.py | 69 ++++++++++------ .../cli/command_modules/resource/_params.py | 6 ++ .../cli/command_modules/resource/custom.py | 82 +++++++++++++++---- 3 files changed, 116 insertions(+), 41 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 45439884a70..ba7dfc2ed36 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2846,26 +2846,31 @@ long-summary: Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 2.0) """ +helps['stack mg'] = """ +type: group +short-summary: Manage Deployment Stacks at management group. +""" + helps['stack mg create'] = """ type: command short-summary: Create or update a deployment stack at management group scope examples: - name: Create a deployment stack using template file. - text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus2 --description description + text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack with parameter file and delete resources. - text: az stack mg create --name StackName --management-group-id myMg --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location westus2 --description description + text: az stack mg create --name StackName --management-group-id myMg --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack with template spec and delete resource groups - text: az stack mg create --name StackName --management-group-id myMg --delete-resource-groups --template-spec TemplateSpecResourceIDWithVersion --location westus2 --description description + text: az stack mg create --name StackName --management-group-id myMg --delete-resource-groups --template-spec TemplateSpecResourceIDWithVersion --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack using bicep file and delete all resources. - text: az stack mg create --name StackName --management-group-id myMg --delete-all --template-file simple.bicep --location westus2 --description description + text: az stack mg create --name StackName --management-group-id myMg --delete-all --template-file simple.bicep --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack using parameters from key/value pairs - text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar --deny-settings-mode None - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scope. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None """ helps['stack mg list'] = """ @@ -2906,30 +2911,35 @@ text: az stack mg delete --id StackResourceID --management-group-id myMg """ +helps['stack sub'] = """ +type: group +short-summary: Manage Deployment Stacks at subscription. +""" + helps['stack sub create'] = """ type: command short-summary: Create or update a deployment stack at subscription scope examples: - name: Create a deployment stack using template file. - text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack with parameter file and delete resources. - text: az stack sub create --name StackName --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location westus2 --description description + text: az stack sub create --name StackName --delete-resources --template-file simpleTemplate.json --parameters simpleTemplateParams.json --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack with template spec and delete resource groups - text: az stack sub create --name StackName --delete-resource-groups --template-spec TemplateSpecResourceIDWithVersion --location westus2 --description description + text: az stack sub create --name StackName --delete-resource-groups --template-spec TemplateSpecResourceIDWithVersion --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack using bicep file and delete all resources. - text: az stack sub create --name StackName --delete-all --template-file simple.bicep --location westus2 --description description + text: az stack sub create --name StackName --delete-all --template-file simple.bicep --location westus2 --description description --deny-settings-mode None - name: Create a deployment stack at a different subscription. - text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description --subscription subscriptionId + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus2 --description description --subscription subscriptionId --deny-settings-mode None - name: Create a deployment stack and deploy at the resource group scope. - text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --deployment-resource-group ResourceGroup --description description + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --deployment-resource-group ResourceGroup --description description --deny-settings-mode None - name: Create a deployment stack using parameters from key/value pairs - text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar --deny-settings-mode None - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus + text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scopes. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None """ helps['stack sub list'] = """ @@ -2970,28 +2980,33 @@ text: az stack sub delete --id StackResourceID """ +helps['stack group'] = """ +type: group +short-summary: Manage Deployment Stacks at resource group. +""" + helps['stack group create'] = """ type: command short-summary: Create or update a deployment stack at resource group scope examples: - name: Create a deployment stack using template file and delete resources. - text: az stack group create --name StackName --resource-group ResourceGroup --delete-resources --template-file simpleTemplate.json --description description + text: az stack group create --name StackName --resource-group ResourceGroup --delete-resources --template-file simpleTemplate.json --description description --deny-settings-mode None - name: Create a deployment stack with parameter file and delete resource groups. - text: az stack group create --name StackName --resource-group ResourceGroup --delete-resource-groups --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description description + text: az stack group create --name StackName --resource-group ResourceGroup --delete-resource-groups --template-file simpleTemplate.json --parameters simpleTemplateParams.json --description description --deny-settings-mode None - name: Create a deployment stack with template spec and delete all resources - text: az stack group create --name StackName --resource-group ResourceGroup --delete-all --template-spec TemplateSpecResourceIDWithVersion --description description + text: az stack group create --name StackName --resource-group ResourceGroup --delete-all --template-spec TemplateSpecResourceIDWithVersion --description description --deny-settings-mode None - name: Create a deployment stack using bicep file. - text: az stack group create --name StackName --resource-group ResourceGroup --template-file simple.bicep --description description + text: az stack group create --name StackName --resource-group ResourceGroup --template-file simple.bicep --description description --deny-settings-mode None - name: Create a deployment stack at a different subscription - text: az stack group create --name StackName --resource-group ResourceGroup --template-file simpleTemplate.json --description description --subscription subscriptionId + text: az stack group create --name StackName --resource-group ResourceGroup --template-file simpleTemplate.json --description description --subscription subscriptionId --deny-settings-mode None - name: Create a deployment stack using parameters from key/value pairs - text: az stack group create --name StackName --template-file simpleTemplate.json --resource-group ResourceGroup --description description --parameters simpleTemplateParams.json value1=foo value2=bar + text: az stack group create --name StackName --template-file simpleTemplate.json --resource-group ResourceGroup --description description --parameters simpleTemplateParams.json value1=foo value2=bar --deny-settings-mode None - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup + text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 + text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny setting to child scopes. - text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes + text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --deny-settings-mode None """ helps['stack group list'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index d3112e7ee2b..c3732e01dc1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -801,6 +801,7 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) + c.argument('yes', help='Do not prompt for confirmation') for scope in ['stack mg show', 'stack mg export']: with self.argument_context(scope) as c: @@ -815,6 +816,7 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) + c.argument('yes', help='Do not prompt for confirmation') with self.argument_context('stack mg list') as c: c.argument('subscription', arg_type=subscription_type) @@ -838,6 +840,7 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) + c.argument('yes', help='Do not prompt for confirmation') for scope in ['stack sub show', 'stack sub export']: with self.argument_context(scope) as c: @@ -852,6 +855,7 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) + c.argument('yes', help='Do not prompt for confirmation') with self.argument_context('stack group create') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) @@ -872,6 +876,7 @@ def load_arguments(self, _): c.argument('deny_settings_excluded_actions', arg_type=stacks_excluded_actions) c.argument('deny_settings_apply_to_child_scopes', arg_type=stacks_apply_to_child_scopes) c.argument('tags', tags_type) + c.argument('yes', help='Do not prompt for confirmation') for scope in ['stack group show', 'stack group export']: with self.argument_context(scope) as c: @@ -895,6 +900,7 @@ def load_arguments(self, _): c.argument('delete_resources', arg_type=stacks_delete_resources_type) c.argument('delete_resource_groups', arg_type=stacks_delete_resource_groups_type) c.argument('delete_all', arg_type=stacks_delete_all_type) + c.argument('yes', help='Do not prompt for confirmation') with self.argument_context('bicep build') as c: c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to build in the file system.") diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 6bcf7b93a08..87a275c0c9b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2148,7 +2148,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_subscription() -def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_apply_to_child_scopes=False, tags=None, yes=False): +def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2182,8 +2182,18 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m else: excluded_principals_array = None + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None + tags = tags or {} + if query_string and not template_uri: + raise IncorrectUsageError('please provide --template-uri if --query-string is specified') + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError( "Please enter only one of the following: template file, template spec, or template url") @@ -2240,7 +2250,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings( - mode=deny_settings_enum, excluded_principals=excluded_principals_array, apply_to_child_scopes=apply_to_child_scopes) + mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( description=description, location=location, action_on_unmanage=action_on_unmanage_model, deployment_scope=deployment_scope, deny_settings=deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2252,9 +2262,15 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] elif t_uri: - deployment_stacks_template_link.uri = t_uri + if query_string: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( + uri=t_uri, query_string=query_string) + t_uri = _prepare_template_uri_with_query_string( + template_uri=t_uri, input_query_string=query_string) + else: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) deployment_stack_model.template_link = deployment_stacks_template_link - template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) + template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) else: if _is_bicepparam_file_provided(parameters): ensure_bicep_installation(cmd.cli_ctx) @@ -2379,7 +2395,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): +def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2413,6 +2429,18 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se else: excluded_principals_array = None + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None + + tags = tags or {} + + if query_string and not template_uri: + raise IncorrectUsageError('please provide --template-uri if --query-string is specified') + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError( "Please enter only one of the following: template file, template spec, or template url") @@ -2460,7 +2488,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se # removed the following code because it is not in service yet, need to add this back eventually apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings( - mode=deny_settings_enum, excluded_principals=excluded_principals_array, apply_to_child_scopes=apply_to_child_scopes) + mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( description=description, action_on_unmanage=action_on_unmanage_model, deny_settings=deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2472,9 +2500,15 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] elif t_uri: - deployment_stacks_template_link.uri = t_uri + if query_string: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( + uri=t_uri, query_string=query_string) + t_uri = _prepare_template_uri_with_query_string( + template_uri=t_uri, input_query_string=query_string) + else: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) deployment_stack_model.template_link = deployment_stacks_template_link - template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) + template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) else: if _is_bicepparam_file_provided(parameters): ensure_bicep_installation(cmd.cli_ctx) @@ -2608,7 +2642,7 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deny_settings_mode, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): +def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deny_settings_mode, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach @@ -2642,6 +2676,18 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, else: excluded_principals_array = None + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None + + tags = tags or {} + + if query_string and not template_uri: + raise IncorrectUsageError('please provide --template-uri if --query-string is specified') + if [template_file, template_spec, template_uri].count(None) != 2: raise InvalidArgumentValueError( "Please enter only one of the following: template file, template spec, or template url") @@ -2695,7 +2741,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes deny_settings_model = rcf.deployment_stacks.models.DenySettings( - mode=deny_settings_enum, excluded_principals=excluded_principals_array, apply_to_child_scopes=apply_to_child_scopes) + mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( description=description, location=location, action_on_unmanage=action_on_unmanage_model, deployment_scope=deployment_scope, deny_settings=deny_settings_model, tags=tags) deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() @@ -2707,9 +2753,15 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] elif t_uri: - deployment_stacks_template_link.uri = t_uri + if query_string: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( + uri=t_uri, query_string=query_string) + t_uri = _prepare_template_uri_with_query_string( + template_uri=t_uri, input_query_string=query_string) + else: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) deployment_stack_model.template_link = deployment_stacks_template_link - template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) + template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) else: if _is_bicepparam_file_provided(parameters): ensure_bicep_installation(cmd.cli_ctx) @@ -4518,13 +4570,15 @@ def publish_bicep_file(cmd, file, target, documentationUri=None, force=None): if bicep_version_greater_than_or_equal_to(minimum_supported_version_for_documentationUri_parameter): args += ["--documentationUri", documentationUri] else: - logger.error("az bicep publish with --documentationUri/-d parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version_for_documentationUri_parameter) + logger.error("az bicep publish with --documentationUri/-d parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", + minimum_supported_version_for_documentationUri_parameter) if force: minimum_supported_version_for_publish_force = "0.17.1" if bicep_version_greater_than_or_equal_to(minimum_supported_version_for_publish_force): args += ["--force"] else: - logger.error("az bicep publish with --force parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version_for_publish_force) + logger.error("az bicep publish with --force parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", + minimum_supported_version_for_publish_force) run_bicep_command(cmd.cli_ctx, args) else: logger.error("az bicep publish could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version) From 095b68e104085d5f0c630e096788d6e73a7082a1 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Thu, 1 Jun 2023 19:49:20 -0400 Subject: [PATCH 106/139] retrigger checks From cbece2adcf87b9c38ec03c644a0391dd96e78bc8 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 2 Jun 2023 10:50:02 -0400 Subject: [PATCH 107/139] Added queryString to params.py --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index c3732e01dc1..9c3b3ed928d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -789,6 +789,7 @@ def load_arguments(self, _): c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) + c.argument('query_string', arg_type=deployment_query_string_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) @@ -828,6 +829,7 @@ def load_arguments(self, _): c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) + c.argument('query_string', arg_type=deployment_query_string_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) @@ -864,6 +866,7 @@ def load_arguments(self, _): c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) + c.argument('query_string', arg_type=deployment_query_string_type) c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) From 72f204c3b2699e2fc0154933e0d87e50b87ef417 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 2 Jun 2023 16:39:59 -0400 Subject: [PATCH 108/139] Modularize PUTs --- .../cli/command_modules/resource/custom.py | 409 +++++------------- 1 file changed, 103 insertions(+), 306 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 87a275c0c9b..b8c96429921 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -2150,44 +2150,13 @@ def list_template_specs(cmd, resource_group_name=None, name=None): def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - delete_resources_enum = detach_model - delete_resource_groups_enum = detach_model - - from knack.prompting import prompt_y_n - if delete_all: - delete_resources_enum = delete_model - delete_resource_groups_enum = delete_model - if delete_resource_groups: - delete_resource_groups_enum = delete_model - if delete_resources: - delete_resources_enum = delete_model - - deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode - deny_settings_enum = None - if deny_settings_mode: - if deny_settings_mode.lower().replace(' ', '') == "denydelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete - elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete - else: - raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") - excluded_principals_array = [] - if deny_settings_excluded_principals: - for principal in deny_settings_excluded_principals.split(" "): - excluded_principals_array.append(str(principal)) - else: - excluded_principals_array = None + delete_resources_enum, delete_resource_groups_enum = _prepare_stacks_delete_detach_models( + rcf, delete_all, delete_resource_groups, delete_resources) + deny_settings_enum = _prepare_stacks_deny_settings(rcf, deny_settings_mode) - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None + excluded_principals_array = _prepare_stacks_excluded_principals(deny_settings_excluded_principals) + excluded_actions_array = _prepare_stacks_excluded_actions(deny_settings_excluded_actions) tags = tags or {} @@ -2203,27 +2172,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m if get_subscription_response.location != location: raise CLIError("Cannot change location of an already existing stack at subscription scope.") # bypass if yes flag is true - if not yes: - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( - name) - build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - # first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups\n" - # second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDeleting: resources and resource groups\n" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources\n" - build_confirmation_string += "\nDeleting: resource groups\n" - else: - build_confirmation_string += "\nDetach: resource groups\n" - build_confirmation_string += "\nDeleting: resources\n" - confirmation = prompt_y_n(build_confirmation_string + "\n") - if not confirmation: - return None - pass + _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum) except: pass @@ -2233,19 +2182,6 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m deployment_scope = "/subscriptions/" + \ get_subscription_id(cmd.cli_ctx) + "/resourceGroups/" + deployment_resource_group - t_spec, t_uri = None, None - template_obj = None - - if template_file: - pass - elif template_spec: - t_spec = template_spec - elif template_uri: - t_uri = template_uri - else: - raise InvalidArgumentValueError( - "Please enter one of the following: template file, template spec, or template url") - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes @@ -2253,68 +2189,9 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( description=description, location=location, action_on_unmanage=action_on_unmanage_model, deployment_scope=deployment_scope, deny_settings=deny_settings_model, tags=tags) - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - - if t_spec: - deployment_stacks_template_link.id = t_spec - deployment_stack_model.template_link = deployment_stacks_template_link - api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], - api_version=api_version).properties['mainTemplate'] - elif t_uri: - if query_string: - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( - uri=t_uri, query_string=query_string) - t_uri = _prepare_template_uri_with_query_string( - template_uri=t_uri, input_query_string=query_string) - else: - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) - deployment_stack_model.template_link = deployment_stacks_template_link - template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) - else: - if _is_bicepparam_file_provided(parameters): - ensure_bicep_installation(cmd.cli_ctx) - - minimum_supported_version = "0.14.85" - if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError( - f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") - if len(parameters) > 1: - raise ArgumentUsageError( - "Can not use --parameters argument more than once when using a .bicepparam file") - bicepparam_file = parameters[0][0] - if not is_bicep_file(template_file): - raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - - build_bicepparam_output = run_bicep_command( - cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) - build_bicepparam_output_json = json.loads(build_bicepparam_output) - template_content = build_bicepparam_output_json["templateJson"] - bicepparam_json_content = build_bicepparam_output_json["parametersJson"] - else: - template_content = ( - run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) - if is_bicep_file(template_file) - else read_file_content(template_file) - ) - - template_obj = _remove_comments_from_json(template_content, file_path=template_file) - if is_bicep_file(template_file): - deployment_stack_model.template = json.loads(json.dumps(template_obj)) - else: - deployment_stack_model.template = json.load(open(template_file)) - template_param_defs = template_obj.get('parameters', {}) - template_obj['resources'] = template_obj.get('resources', []) - - if _is_bicepparam_file_provided(parameters): - parameters = json.loads(bicepparam_json_content).get('parameters', {}) - else: - parameters = _process_parameters(template_param_defs, parameters) or {} - parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) - parameters = json.loads(json.dumps(parameters)) - - deployment_stack_model.parameters = parameters + deployment_stack_model = _prepare_stacks_templates_and_parameters( + cmd, rcf, deployment_stack_model, template_file, template_spec, template_uri, parameters, query_string) return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_subscription, name, deployment_stack_model) @@ -2395,9 +2272,7 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - +def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2412,6 +2287,10 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se if delete_resources: delete_resources_enum = delete_model + return delete_resources_enum, delete_resource_groups_enum + + +def _prepare_stacks_deny_settings(rcf, deny_settings_mode): deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None if deny_settings_mode: @@ -2422,6 +2301,10 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se else: raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + return deny_settings_enum + + +def _prepare_stacks_excluded_principals(deny_settings_excluded_principals): excluded_principals_array = [] if deny_settings_excluded_principals: for principal in deny_settings_excluded_principals.split(" "): @@ -2429,6 +2312,10 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se else: excluded_principals_array = None + return excluded_principals_array + + +def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): excluded_actions_array = [] if deny_settings_excluded_actions: for action in deny_settings_excluded_actions.split(" "): @@ -2436,43 +2323,45 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se else: excluded_actions_array = None - tags = tags or {} + return excluded_actions_array - if query_string and not template_uri: - raise IncorrectUsageError('please provide --template-uri if --query-string is specified') - if [template_file, template_spec, template_uri].count(None) != 2: - raise InvalidArgumentValueError( - "Please enter only one of the following: template file, template spec, or template url") - try: - if rcf.deployment_stacks.get_at_resource_group(resource_group, name): - if not yes: - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( - name) - build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - # first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups\n" - # second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDeleting: resources and resource groups\n" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources\n" - build_confirmation_string += "\nDeleting: resource groups\n" - else: - build_confirmation_string += "\nDetach: resource groups\n" - build_confirmation_string += "\nDeleting: resources\n" - confirmation = prompt_y_n(build_confirmation_string + "\n") - if not confirmation: - return None - pass - except: +def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum): + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + if not yes: + from knack.prompting import prompt_y_n + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( + name) + build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" + # first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups\n" + # second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDeleting: resources and resource groups\n" + else: + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources\n" + build_confirmation_string += "\nDeleting: resource groups\n" + else: + build_confirmation_string += "\nDetach: resource groups\n" + build_confirmation_string += "\nDeleting: resources\n" + confirmation = prompt_y_n(build_confirmation_string + "\n") + if not confirmation: + return None pass + + return build_confirmation_string + + +def _prepare_stacks_templates_and_parameters(cmd, rcf, deployment_stack_model, template_file, template_spec, template_uri, parameters, query_string): t_spec, t_uri = None, None template_obj = None + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + if template_file: pass elif template_spec: @@ -2483,16 +2372,6 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se raise InvalidArgumentValueError( "Please enter one of the following: template file, template spec, or template url") - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( - resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) - # removed the following code because it is not in service yet, need to add this back eventually - apply_to_child_scopes = deny_settings_apply_to_child_scopes - deny_settings_model = rcf.deployment_stacks.models.DenySettings( - mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) - deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( - description=description, action_on_unmanage=action_on_unmanage_model, deny_settings=deny_settings_model, tags=tags) - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - if t_spec: deployment_stacks_template_link.id = t_spec deployment_stack_model.template_link = deployment_stacks_template_link @@ -2553,6 +2432,47 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se deployment_stack_model.parameters = parameters + return deployment_stack_model + + +def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + + delete_resources_enum, delete_resource_groups_enum = _prepare_stacks_delete_detach_models( + rcf, delete_all, delete_resource_groups, delete_resources) + deny_settings_enum = _prepare_stacks_deny_settings(rcf, deny_settings_mode) + + excluded_principals_array = _prepare_stacks_excluded_principals(deny_settings_excluded_principals) + excluded_actions_array = _prepare_stacks_excluded_actions(deny_settings_excluded_actions) + + tags = tags or {} + + if query_string and not template_uri: + raise IncorrectUsageError('please provide --template-uri if --query-string is specified') + + if [template_file, template_spec, template_uri].count(None) != 2: + raise InvalidArgumentValueError( + "Please enter only one of the following: template file, template spec, or template url") + + # build confirmation string + try: + if rcf.deployment_stacks.get_at_resource_group(resource_group, name): + _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum) + except: + pass + + action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( + resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) + apply_to_child_scopes = deny_settings_apply_to_child_scopes + deny_settings_model = rcf.deployment_stacks.models.DenySettings( + mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) + deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( + description=description, action_on_unmanage=action_on_unmanage_model, deny_settings=deny_settings_model, tags=tags) + + # validate and prepare template & paramaters + deployment_stack_model = _prepare_stacks_templates_and_parameters( + cmd, rcf, deployment_stack_model, template_file, template_spec, template_uri, parameters, query_string) + return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_resource_group, resource_group, name, deployment_stack_model) @@ -2645,43 +2565,13 @@ def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_ def create_deployment_stack_at_management_group(cmd, management_group_id, name, location, deny_settings_mode, deployment_subscription=None, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - delete_resources_enum = detach_model - delete_resource_groups_enum = detach_model - - if delete_all: - delete_resources_enum = delete_model - delete_resource_groups_enum = delete_model - if delete_resource_groups: - delete_resource_groups_enum = delete_model - if delete_resources: - delete_resources_enum = delete_model - - deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode - deny_settings_enum = None - if deny_settings_mode: - if deny_settings_mode.lower().replace(' ', '') == "denydelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete - elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete - else: - raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + delete_resources_enum, delete_resource_groups_enum = _prepare_stacks_delete_detach_models( + rcf, delete_all, delete_resource_groups, delete_resources) + deny_settings_enum = _prepare_stacks_deny_settings(rcf, deny_settings_mode) + excluded_principals_array = _prepare_stacks_excluded_principals(deny_settings_excluded_principals) + excluded_actions_array = _prepare_stacks_excluded_actions(deny_settings_excluded_actions) excluded_principals_array = [] - if deny_settings_excluded_principals: - for principal in deny_settings_excluded_principals.split(" "): - excluded_principals_array.append(str(principal)) - else: - excluded_principals_array = None - - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None tags = tags or {} @@ -2694,28 +2584,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, try: get_mg_response = rcf.deployment_stacks.get_at_management_group(management_group_id, name) if get_mg_response: - if not yes: - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( - name) - build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - # first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups\n" - # second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDeleting: resources and resource groups\n" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources\n" - build_confirmation_string += "\nDeleting: resource groups\n" - else: - build_confirmation_string += "\nDetach: resource groups\n" - build_confirmation_string += "\nDeleting: resources\n" - confirmation = prompt_y_n(build_confirmation_string + "\n") - if not confirmation: - return None - pass + _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum) except: pass @@ -2724,19 +2593,6 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, else: deployment_scope = "/subscriptions/" + deployment_subscription - t_spec, t_uri = None, None - template_obj = None - - if template_file: - pass - elif template_spec: - t_spec = template_spec - elif template_uri: - t_uri = template_uri - else: - raise InvalidArgumentValueError( - "Please enter one of the following: template file, template spec, or template url") - action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( resources=delete_resources_enum, resource_groups=delete_resource_groups_enum) apply_to_child_scopes = deny_settings_apply_to_child_scopes @@ -2744,68 +2600,9 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, mode=deny_settings_enum, excluded_principals=excluded_principals_array, excluded_actions=excluded_actions_array, apply_to_child_scopes=apply_to_child_scopes) deployment_stack_model = rcf.deployment_stacks.models.DeploymentStack( description=description, location=location, action_on_unmanage=action_on_unmanage_model, deployment_scope=deployment_scope, deny_settings=deny_settings_model, tags=tags) - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - - if t_spec: - deployment_stacks_template_link.id = t_spec - deployment_stack_model.template_link = deployment_stacks_template_link - api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], - api_version=api_version).properties['mainTemplate'] - elif t_uri: - if query_string: - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( - uri=t_uri, query_string=query_string) - t_uri = _prepare_template_uri_with_query_string( - template_uri=t_uri, input_query_string=query_string) - else: - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) - deployment_stack_model.template_link = deployment_stacks_template_link - template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) - else: - if _is_bicepparam_file_provided(parameters): - ensure_bicep_installation(cmd.cli_ctx) - minimum_supported_version = "0.14.85" - if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError( - f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") - if len(parameters) > 1: - raise ArgumentUsageError( - "Can not use --parameters argument more than once when using a .bicepparam file") - bicepparam_file = parameters[0][0] - if not is_bicep_file(template_file): - raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - - build_bicepparam_output = run_bicep_command( - cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) - build_bicepparam_output_json = json.loads(build_bicepparam_output) - template_content = build_bicepparam_output_json["templateJson"] - bicepparam_json_content = build_bicepparam_output_json["parametersJson"] - else: - template_content = ( - run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) - if is_bicep_file(template_file) - else read_file_content(template_file) - ) - - template_obj = _remove_comments_from_json(template_content, file_path=template_file) - if is_bicep_file(template_file): - deployment_stack_model.template = json.loads(json.dumps(template_obj)) - else: - deployment_stack_model.template = json.load(open(template_file)) - - template_param_defs = template_obj.get('parameters', {}) - template_obj['resources'] = template_obj.get('resources', []) - - if _is_bicepparam_file_provided(parameters): - parameters = json.loads(bicepparam_json_content).get('parameters', {}) - else: - parameters = _process_parameters(template_param_defs, parameters) or {} - parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) - parameters = json.loads(json.dumps(parameters)) - - deployment_stack_model.parameters = parameters + deployment_stack_model = _prepare_stacks_templates_and_parameters( + cmd, rcf, deployment_stack_model, template_file, template_spec, template_uri, parameters, query_string) return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_management_group, management_group_id, name, deployment_stack_model) From 7160df61056557e5ca73ac293d4c0570fc9f43df Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 6 Jun 2023 12:53:53 -0400 Subject: [PATCH 109/139] Abbreviations & other minor fixes [PUT ITs tested] --- .../cli/command_modules/resource/_help.py | 6 +- .../cli/command_modules/resource/_params.py | 42 +- .../cli/command_modules/resource/custom.py | 472 ++++++++++++------ .../resource/tests/latest/test_resource.py | 3 +- 4 files changed, 339 insertions(+), 184 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index ba7dfc2ed36..6ebb23230be 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2868,7 +2868,7 @@ - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus --deny-settings-mode None + text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scope. text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None """ @@ -2937,7 +2937,7 @@ - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --location westus --deny-settings-mode None + text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scopes. text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None """ @@ -3004,7 +3004,7 @@ - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals test1 test2 --deny-settings-mode None + text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny setting to child scopes. text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --deny-settings-mode None """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 9c3b3ed928d..767fddd339a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -121,10 +121,10 @@ def load_arguments(self, _): options_list=['--description'], help='The description of deployment stack.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') - stacks_stack_deployment_resource_group = CLIArgumentType( - help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_stack_deployment_subscription = CLIArgumentType( - help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_resource_group = CLIArgumentType(options_list=['--deployment-resource-group', '-r'], + help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_subscription = CLIArgumentType(options_list=['--deployment-subscription', '-d'], + help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') stacks_delete_resources_type = CLIArgumentType( options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType( @@ -132,23 +132,31 @@ def load_arguments(self, _): stacks_delete_all_type = CLIArgumentType( options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') stacks_deny_settings_mode = CLIArgumentType( - help='Define which operations are denied on resources managed by the stack: denyWrite or denyWriteAndDelete.') - stacks_excluded_principals = CLIArgumentType( - help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') - stacks_excluded_actions = CLIArgumentType( - help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") - stacks_apply_to_child_scopes = CLIArgumentType(help='DenySettings will be applied to child scopes.') + help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') + stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '-e'], + help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') + stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '-a'], + help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") + stacks_apply_to_child_scopes = CLIArgumentType( + options_list=['--deny-settings-apply-to-child-scopes', '-c'], help='DenySettings will be applied to child scopes.') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') bicep_no_restore_type = CLIArgumentType(options_list=['--no-restore'], action='store_true') - bicep_outdir_type = CLIArgumentType(options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") - bicep_outfile_type = CLIArgumentType(options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") - bicep_stdout_type = CLIArgumentType(options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") - bicep_indentkind_type = CLIArgumentType(options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") - bicep_indentsize_type = CLIArgumentType(options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") - bicep_insertfinalnewline_type = CLIArgumentType(options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") - bicep_newline_type = CLIArgumentType(options_list=['--newline'], help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") + bicep_outdir_type = CLIArgumentType( + options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") + bicep_outfile_type = CLIArgumentType( + options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") + bicep_stdout_type = CLIArgumentType( + options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") + bicep_indentkind_type = CLIArgumentType( + options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") + bicep_indentsize_type = CLIArgumentType( + options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") + bicep_insertfinalnewline_type = CLIArgumentType( + options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") + bicep_newline_type = CLIArgumentType( + options_list=['--newline'], help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") bicep_target_platform_type = CLIArgumentType(options_list=['--target-platform', '-t'], arg_type=get_enum_type( ["win-x64", "linux-musl-x64", "linux-x64", "osx-x64", "linux-arm64", "osx-arm64"]), diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index b8c96429921..69f308fd5aa 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1075,6 +1075,315 @@ def _get_deployment_management_client(cli_ctx, aux_subscriptions=None, aux_tenan return deployment_client +def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + delete_resources_enum = detach_model + delete_resource_groups_enum = detach_model + + if delete_all: + delete_resources_enum = delete_model + delete_resource_groups_enum = delete_model + if delete_resource_groups: + delete_resource_groups_enum = delete_model + if delete_resources: + delete_resources_enum = delete_model + + return delete_resources_enum, delete_resource_groups_enum + + +def _prepare_stacks_deny_settings(rcf, deny_settings_mode): + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode + deny_settings_enum = None + if deny_settings_mode: + if deny_settings_mode.lower().replace(' ', '') == "denydelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete + elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete + else: + raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + + return deny_settings_enum + + +def _prepare_stacks_excluded_principals(deny_settings_excluded_principals): + excluded_principals_array = [] + if deny_settings_excluded_principals: + for principal in deny_settings_excluded_principals.split(" "): + excluded_principals_array.append(str(principal)) + else: + excluded_principals_array = None + + return excluded_principals_array + + +def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None + + return excluded_actions_array + + +def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum): + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + if not yes: + from knack.prompting import prompt_y_n + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( + name) + build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" + # first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups\n" + # second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDeleting: resources and resource groups\n" + else: + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources\n" + build_confirmation_string += "\nDeleting: resource groups\n" + else: + build_confirmation_string += "\nDetach: resource groups\n" + build_confirmation_string += "\nDeleting: resources\n" + confirmation = prompt_y_n(build_confirmation_string + "\n") + if not confirmation: + return None + pass + + return build_confirmation_string + + +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + confirmation = "Are you sure you want to delete this stack" + delete_list = [] + + delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach + delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach + + if delete_all: + delete_list.append("resources") + delete_list.append("resource groups") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + if delete_resource_groups: + delete_list.append("resource groups") + delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + if delete_resources: + delete_list.append("resources") + delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + # build confirmation string + from knack.prompting import prompt_y_n + if not yes: + if not delete_list: + response = prompt_y_n(confirmation + "?") + if not response: + return None + else: + confirmation += " and the specified resources: " + response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') + if not response: + return None + + if name or id: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + delete_name = None + try: + if name: + delete_name = name + rcf.deployment_stacks.get_at_subscription(name) + else: + name = id.split('/')[-1] + delete_name = name + rcf.deployment_stacks.get_at_subscription(name) + except: + raise ResourceNotFoundError("DeploymentStack " + delete_name + + " not found in the current subscription scope.") + return rcf.deployment_stacks.begin_delete_at_subscription(delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) + raise InvalidArgumentValueError("Please enter the stack name or stack resource id") + + +def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): + if name or id: + rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) + if name: + return rcf.deployment_stacks.export_template_at_subscription(name) + return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) + raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") + + +def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + delete_resources_enum = detach_model + delete_resource_groups_enum = detach_model + + if delete_all: + delete_resources_enum = delete_model + delete_resource_groups_enum = delete_model + if delete_resource_groups: + delete_resource_groups_enum = delete_model + if delete_resources: + delete_resources_enum = delete_model + + return delete_resources_enum, delete_resource_groups_enum + + +def _prepare_stacks_deny_settings(rcf, deny_settings_mode): + deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode + deny_settings_enum = None + if deny_settings_mode: + if deny_settings_mode.lower().replace(' ', '') == "denydelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete + elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": + deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete + else: + raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") + + return deny_settings_enum + + +def _prepare_stacks_excluded_principals(deny_settings_excluded_principals): + excluded_principals_array = [] + if deny_settings_excluded_principals: + for principal in deny_settings_excluded_principals.split(" "): + excluded_principals_array.append(str(principal)) + else: + excluded_principals_array = None + + return excluded_principals_array + + +def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): + excluded_actions_array = [] + if deny_settings_excluded_actions: + for action in deny_settings_excluded_actions.split(" "): + excluded_actions_array.append(str(action)) + else: + excluded_actions_array = None + + return excluded_actions_array + + +def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum): + detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach + delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete + + if not yes: + from knack.prompting import prompt_y_n + build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( + name) + build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" + # first case we have only detach + if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: + build_confirmation_string += "\nDetach: resources and resource groups\n" + # second case we only have delete + elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: + build_confirmation_string += "\nDeleting: resources and resource groups\n" + else: + if delete_resources_enum == detach_model: + build_confirmation_string += "\nDetach: resources\n" + build_confirmation_string += "\nDeleting: resource groups\n" + else: + build_confirmation_string += "\nDetach: resource groups\n" + build_confirmation_string += "\nDeleting: resources\n" + confirmation = prompt_y_n(build_confirmation_string + "\n") + if not confirmation: + return None + pass + + return build_confirmation_string + + +def _prepare_stacks_templates_and_parameters(cmd, rcf, deployment_stack_model, template_file, template_spec, template_uri, parameters, query_string): + t_spec, t_uri = None, None + template_obj = None + + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() + + if template_file: + pass + elif template_spec: + t_spec = template_spec + elif template_uri: + t_uri = template_uri + else: + raise InvalidArgumentValueError( + "Please enter one of the following: template file, template spec, or template url") + + if t_spec: + deployment_stacks_template_link.id = t_spec + deployment_stack_model.template_link = deployment_stacks_template_link + api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], + api_version=api_version).properties['mainTemplate'] + elif t_uri: + if query_string: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( + uri=t_uri, query_string=query_string) + t_uri = _prepare_template_uri_with_query_string( + template_uri=t_uri, input_query_string=query_string) + else: + deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) + deployment_stack_model.template_link = deployment_stacks_template_link + template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) + else: + if _is_bicepparam_file_provided(parameters): + ensure_bicep_installation(cmd.cli_ctx) + + minimum_supported_version = "0.14.85" + if not bicep_version_greater_than_or_equal_to(minimum_supported_version): + raise ArgumentUsageError( + f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + if len(parameters) > 1: + raise ArgumentUsageError( + "Can not use --parameters argument more than once when using a .bicepparam file") + bicepparam_file = parameters[0][0] + if not is_bicep_file(template_file): + raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") + + build_bicepparam_output = run_bicep_command( + cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output_json = json.loads(build_bicepparam_output) + template_content = build_bicepparam_output_json["templateJson"] + bicepparam_json_content = build_bicepparam_output_json["parametersJson"] + else: + template_content = ( + run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) + if is_bicep_file(template_file) + else read_file_content(template_file) + ) + template_obj = _remove_comments_from_json(template_content, file_path=template_file) + if is_bicep_file(template_file): + deployment_stack_model.template = json.loads(json.dumps(template_obj)) + else: + deployment_stack_model.template = json.load(open(template_file)) + + template_param_defs = template_obj.get('parameters', {}) + template_obj['resources'] = template_obj.get('resources', []) + + if _is_bicepparam_file_provided(parameters): + parameters = json.loads(bicepparam_json_content).get('parameters', {}) + else: + parameters = _process_parameters(template_param_defs, parameters) or {} + parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) + parameters = json.loads(json.dumps(parameters)) + + deployment_stack_model.parameters = parameters + + return deployment_stack_model + + def _list_resources_odata_filter_builder(resource_group_name=None, resource_provider_namespace=None, resource_type=None, name=None, tag=None, location=None): """Build up OData filter string from parameters """ @@ -2272,169 +2581,6 @@ def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") -def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): - detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - delete_resources_enum = detach_model - delete_resource_groups_enum = detach_model - - if delete_all: - delete_resources_enum = delete_model - delete_resource_groups_enum = delete_model - if delete_resource_groups: - delete_resource_groups_enum = delete_model - if delete_resources: - delete_resources_enum = delete_model - - return delete_resources_enum, delete_resource_groups_enum - - -def _prepare_stacks_deny_settings(rcf, deny_settings_mode): - deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode - deny_settings_enum = None - if deny_settings_mode: - if deny_settings_mode.lower().replace(' ', '') == "denydelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete - elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete - else: - raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") - - return deny_settings_enum - - -def _prepare_stacks_excluded_principals(deny_settings_excluded_principals): - excluded_principals_array = [] - if deny_settings_excluded_principals: - for principal in deny_settings_excluded_principals.split(" "): - excluded_principals_array.append(str(principal)) - else: - excluded_principals_array = None - - return excluded_principals_array - - -def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None - - return excluded_actions_array - - -def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum): - detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - if not yes: - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( - name) - build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" - # first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups\n" - # second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDeleting: resources and resource groups\n" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources\n" - build_confirmation_string += "\nDeleting: resource groups\n" - else: - build_confirmation_string += "\nDetach: resource groups\n" - build_confirmation_string += "\nDeleting: resources\n" - confirmation = prompt_y_n(build_confirmation_string + "\n") - if not confirmation: - return None - pass - - return build_confirmation_string - - -def _prepare_stacks_templates_and_parameters(cmd, rcf, deployment_stack_model, template_file, template_spec, template_uri, parameters, query_string): - t_spec, t_uri = None, None - template_obj = None - - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink() - - if template_file: - pass - elif template_spec: - t_spec = template_spec - elif template_uri: - t_uri = template_uri - else: - raise InvalidArgumentValueError( - "Please enter one of the following: template file, template spec, or template url") - - if t_spec: - deployment_stacks_template_link.id = t_spec - deployment_stack_model.template_link = deployment_stacks_template_link - api_version = get_api_version(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], - api_version=api_version).properties['mainTemplate'] - elif t_uri: - if query_string: - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink( - uri=t_uri, query_string=query_string) - t_uri = _prepare_template_uri_with_query_string( - template_uri=t_uri, input_query_string=query_string) - else: - deployment_stacks_template_link = rcf.deployment_stacks.models.DeploymentStacksTemplateLink(uri=t_uri) - deployment_stack_model.template_link = deployment_stacks_template_link - template_obj = _remove_comments_from_json(_urlretrieve(t_uri).decode('utf-8'), file_path=t_uri) - else: - if _is_bicepparam_file_provided(parameters): - ensure_bicep_installation(cmd.cli_ctx) - - minimum_supported_version = "0.14.85" - if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError( - f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") - if len(parameters) > 1: - raise ArgumentUsageError( - "Can not use --parameters argument more than once when using a .bicepparam file") - bicepparam_file = parameters[0][0] - if not is_bicep_file(template_file): - raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - - build_bicepparam_output = run_bicep_command( - cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) - build_bicepparam_output_json = json.loads(build_bicepparam_output) - template_content = build_bicepparam_output_json["templateJson"] - bicepparam_json_content = build_bicepparam_output_json["parametersJson"] - else: - template_content = ( - run_bicep_command(cmd.cli_ctx, ["build", "--stdout", template_file]) - if is_bicep_file(template_file) - else read_file_content(template_file) - ) - template_obj = _remove_comments_from_json(template_content, file_path=template_file) - if is_bicep_file(template_file): - deployment_stack_model.template = json.loads(json.dumps(template_obj)) - else: - deployment_stack_model.template = json.load(open(template_file)) - - template_param_defs = template_obj.get('parameters', {}) - template_obj['resources'] = template_obj.get('resources', []) - - if _is_bicepparam_file_provided(parameters): - parameters = json.loads(bicepparam_json_content).get('parameters', {}) - else: - parameters = _process_parameters(template_param_defs, parameters) or {} - parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters, False) - parameters = json.loads(json.dumps(parameters)) - - deployment_stack_model.parameters = parameters - - return deployment_stack_model - - def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, yes=False, tags=None): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index af34461fa12..0cd6456f0c0 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2140,8 +2140,8 @@ def test_delete_deployment_script(self, resource_group): class DeploymentStacksTest(ScenarioTest): global location location = "westus2" + @AllowLargeResponse() @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) - @AllowLargeResponse def test_create_deployment_stack_subscription(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) @@ -2826,6 +2826,7 @@ def test_export_template_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + @AllowLargeResponse() @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_create_deployment_stack_management_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) From b3e3a3261a32e95d20109b43903b9c24c77733c8 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 6 Jun 2023 15:36:14 -0400 Subject: [PATCH 110/139] retrigger checks From 5f4ee779ff493e23995ff824b22e0b7190449cc3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 7 Jun 2023 15:23:08 -0400 Subject: [PATCH 111/139] Removed extra pass statements, removed extra functions, bypassed id pylint error, bypassed exception error [not IT tested] --- .../cli/command_modules/resource/commands.py | 7 +- .../cli/command_modules/resource/custom.py | 88 +++---------------- 2 files changed, 16 insertions(+), 79 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index a13e2150b0b..dbcc8c33e3a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -125,6 +125,7 @@ def transform_stacks_export(result): def load_command_table(self, _): + # pylint: disable=too-many-locals from azure.cli.core.commands.arm import deployment_validate_table_format resource_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.resource.custom#{}') @@ -415,7 +416,7 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_template_spec', validator=_validate_template_spec, confirmation=True) with self.command_group('stack mg', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) + g.custom_show_command('show', 'show_deployment_stack_at_management_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_management_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_management_group') g.custom_command('create', 'create_deployment_stack_at_management_group', @@ -424,7 +425,7 @@ def load_command_table(self, _): table_transformer=transform_stacks_export) with self.command_group('stack sub', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) + g.custom_show_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') g.custom_command('create', 'create_deployment_stack_at_subscription', @@ -433,7 +434,7 @@ def load_command_table(self, _): table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: - g.custom_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) + g.custom_show_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group') g.custom_command('create', 'create_deployment_stack_at_resource_group', diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 69f308fd5aa..53351433174 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1154,73 +1154,10 @@ def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, del confirmation = prompt_y_n(build_confirmation_string + "\n") if not confirmation: return None - pass return build_confirmation_string -def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - confirmation = "Are you sure you want to delete this stack" - delete_list = [] - - delete_resources_enum = rcf.deployment_stacks.models.UnmanageActionResourceMode.Detach - delete_resource_groups_enum = rcf.deployment_stacks.models.UnmanageActionResourceGroupMode.Detach - - if delete_all: - delete_list.append("resources") - delete_list.append("resource groups") - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - if delete_resource_groups: - delete_list.append("resource groups") - delete_resource_groups_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - if delete_resources: - delete_list.append("resources") - delete_resources_enum = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - # build confirmation string - from knack.prompting import prompt_y_n - if not yes: - if not delete_list: - response = prompt_y_n(confirmation + "?") - if not response: - return None - else: - confirmation += " and the specified resources: " - response = prompt_y_n(confirmation + ", ".join(set(delete_list)) + '?') - if not response: - return None - - if name or id: - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - delete_name = None - try: - if name: - delete_name = name - rcf.deployment_stacks.get_at_subscription(name) - else: - name = id.split('/')[-1] - delete_name = name - rcf.deployment_stacks.get_at_subscription(name) - except: - raise ResourceNotFoundError("DeploymentStack " + delete_name + - " not found in the current subscription scope.") - return rcf.deployment_stacks.begin_delete_at_subscription(delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) - raise InvalidArgumentValueError("Please enter the stack name or stack resource id") - - -def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): - if name or id: - rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) - if name: - return rcf.deployment_stacks.export_template_at_subscription(name) - return rcf.deployment_stacks.export_template_at_subscription(id.split('/')[-1]) - raise InvalidArgumentValueError("Please enter the stack name or stack resource id.") - - def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -1300,7 +1237,6 @@ def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, del confirmation = prompt_y_n(build_confirmation_string + "\n") if not confirmation: return None - pass return build_confirmation_string @@ -2482,7 +2418,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m raise CLIError("Cannot change location of an already existing stack at subscription scope.") # bypass if yes flag is true _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum) - except: + except: # pylint: disable=bare-except pass if not deployment_resource_group: @@ -2505,7 +2441,7 @@ def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_m return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_subscription, name, deployment_stack_model) -def show_deployment_stack_at_subscription(cmd, name=None, id=None): +def show_deployment_stack_at_subscription(cmd, name=None, id=None): # pylint: disable=redefined-builtin rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name or id: if name: @@ -2519,7 +2455,7 @@ def list_deployment_stack_at_subscription(cmd): return rcf.deployment_stacks.list_at_subscription() -def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): +def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): # pylint: disable=redefined-builtin rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) confirmation = "Are you sure you want to delete this stack" delete_list = [] @@ -2572,7 +2508,7 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_reso raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): +def export_template_deployment_stack_at_subscription(cmd, name=None, id=None): # pylint: disable=redefined-builtin if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: @@ -2604,7 +2540,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se try: if rcf.deployment_stacks.get_at_resource_group(resource_group, name): _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum) - except: + except: # pylint: disable=bare-except pass action_on_unmanage_model = rcf.deployment_stacks.models.DeploymentStackPropertiesActionOnUnmanage( @@ -2622,7 +2558,7 @@ def create_deployment_stack_at_resource_group(cmd, name, resource_group, deny_se return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_resource_group, resource_group, name, deployment_stack_model) -def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): +def show_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): # pylint: disable=redefined-builtin rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: return rcf.deployment_stacks.get_at_resource_group(resource_group, name) @@ -2641,7 +2577,7 @@ def list_deployment_stack_at_resource_group(cmd, resource_group): raise InvalidArgumentValueError("Please enter the resource group") -def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): +def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): # pylint: disable=redefined-builtin rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) confirmation = "Are you sure you want to delete this stack" delete_list = [] @@ -2696,7 +2632,7 @@ def delete_deployment_stack_at_resource_group(cmd, name=None, resource_group=Non raise InvalidArgumentValueError("Please enter the (stack name and resource group) or stack resource id") -def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): +def export_template_deployment_stack_at_resource_group(cmd, name=None, resource_group=None, id=None): # pylint: disable=redefined-builtin rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name and resource_group: return rcf.deployment_stacks.export_template_at_resource_group(resource_group, name) @@ -2731,7 +2667,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, get_mg_response = rcf.deployment_stacks.get_at_management_group(management_group_id, name) if get_mg_response: _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum) - except: + except: # pylint: disable=bare-except pass if not deployment_subscription: @@ -2753,7 +2689,7 @@ def create_deployment_stack_at_management_group(cmd, management_group_id, name, return sdk_no_wait(False, rcf.deployment_stacks.begin_create_or_update_at_management_group, management_group_id, name, deployment_stack_model) -def show_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): +def show_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): # pylint: disable=redefined-builtin if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: @@ -2767,7 +2703,7 @@ def list_deployment_stack_at_management_group(cmd, management_group_id): return rcf.deployment_stacks.list_at_management_group(management_group_id) -def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): +def delete_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None, delete_resources=False, delete_resource_groups=False, delete_all=False, yes=False): # pylint: disable=redefined-builtin rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) confirmation = "Are you sure you want to delete this stack" delete_list = [] @@ -2820,7 +2756,7 @@ def delete_deployment_stack_at_management_group(cmd, management_group_id, name=N raise InvalidArgumentValueError("Please enter the stack name or stack resource id") -def export_template_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): +def export_template_deployment_stack_at_management_group(cmd, management_group_id, name=None, id=None): # pylint: disable=redefined-builtin if name or id: rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) if name: From 7a191417b470e64126e87743182b0c88827195e5 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 7 Jun 2023 15:56:14 -0400 Subject: [PATCH 112/139] Added temp service_name link [need to update] --- src/azure-cli/service_name.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/service_name.json b/src/azure-cli/service_name.json index 0b527e15796..337bf0e63e6 100644 --- a/src/azure-cli/service_name.json +++ b/src/azure-cli/service_name.json @@ -170,7 +170,7 @@ "URL": "https://docs.microsoft.com/azure/azure-resource-manager/templates/template-tutorial-deployment-script" }, { - "Command": "az stacks", + "Command": "az stack", "AzureServiceName": "Azure Resource Manager", "URL": "https://github.com/Azure/deployment-stacks/blob/main/TUTORIAL.md" }, From 548a7de72de5cf62c7556b25d46be6394f99a7f4 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Sun, 11 Jun 2023 20:32:58 -0400 Subject: [PATCH 113/139] Edited help file --- .../cli/command_modules/resource/_help.py | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 6ebb23230be..dc69d13c3bc 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2866,11 +2866,11 @@ - name: Create a deployment stack using parameters from key/value pairs text: az stack mg create --name StackName --management-group-id myMg --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar --deny-settings-mode None - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None + text: az stack mg create --name StackName --management-group-id myMg --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None + text: az stack mg create --name StackName --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scope. - text: az stack mg create --name rollout01 --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None + text: az stack mg create --name StackName --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None """ helps['stack mg list'] = """ @@ -2888,7 +2888,7 @@ - name: Get stack by name. text: az stack mg show --name StackName --management-group-id myMg - name: Get stack by stack resource id. - text: az stack mg show --id StackResourceID --management-group-id myMg + text: az stack mg show --id /providers/Microsoft.Management/managementGroups/myMg/providers/Microsoft.Resources/deploymentStacks/StackName --management-group-id myMg """ helps['stack mg export'] = """ @@ -2898,7 +2898,7 @@ - name: Export template by name. text: az stack mg export --name StackName --management-group-id myMg - name: Export template by stack resource id. - text: az stack mg export --id StackResourceID --management-group-id myMg + text: az stack mg export --id /providers/Microsoft.Management/managementGroups/myMg/providers/Microsoft.Resources/deploymentStacks/StackName --management-group-id myMg """ helps['stack mg delete'] = """ @@ -2908,7 +2908,7 @@ - name: Delete stack by name. text: az stack mg delete --name StackName --management-group-id myMg - name: Delete stack by stack resource id. - text: az stack mg delete --id StackResourceID --management-group-id myMg + text: az stack mg delete --id /providers/Microsoft.Management/managementGroups/myMg/providers/Microsoft.Resources/deploymentStacks/StackName --management-group-id myMg """ helps['stack sub'] = """ @@ -2935,11 +2935,11 @@ - name: Create a deployment stack using parameters from key/value pairs text: az stack sub create --name StackName --template-file simpleTemplate.json --location westus --description description --parameters simpleTemplateParams.json value1=foo value2=bar --deny-settings-mode None - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None + text: az stack sub create --name StackName --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None + text: az stack sub create --name StackName --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scopes. - text: az stack sub create --name rollout01 --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None + text: az stack sub create --name StackName --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None """ helps['stack sub list'] = """ @@ -2957,7 +2957,7 @@ - name: Get stack by name. text: az stack sub show --name StackName - name: Get stack by stack resource id. - text: az stack sub show --id StackResourceID + text: az stack sub show --id /subscriptions/111111111111/providers/Microsoft.Resources/deploymentStacks/StackName """ helps['stack sub export'] = """ @@ -2967,7 +2967,7 @@ - name: Export template by name. text: az stack sub export --name StackName - name: Export template by stack resource id. - text: az stack sub export --id StackResourceID + text: az stack sub export --id /subscriptions/111111111111/providers/Microsoft.Resources/deploymentStacks/StackName """ helps['stack sub delete'] = """ @@ -2977,7 +2977,7 @@ - name: Delete stack by name. text: az stack sub delete --name StackName - name: Delete stack by stack resource id. - text: az stack sub delete --id StackResourceID + text: az stack sub delete --id /subscriptions/111111111111/providers/Microsoft.Resources/deploymentStacks/StackName """ helps['stack group'] = """ @@ -3002,11 +3002,11 @@ - name: Create a deployment stack using parameters from key/value pairs text: az stack group create --name StackName --template-file simpleTemplate.json --resource-group ResourceGroup --description description --parameters simpleTemplateParams.json value1=foo value2=bar --deny-settings-mode None - name: Create a deployment stack from a local template, using a parameter file, a remote parameter file, and selectively overriding key/value pairs. - text: az stack group create --name rollout01 --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup --deny-settings-mode None + text: az stack group create --name StackName --template-file azuredeploy.json --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json --resource-group ResourceGroup --deny-settings-mode None - name: Create a deployment stack from a local template, using deny settings. - text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --deny-settings-mode None + text: az stack group create --name StackName --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny setting to child scopes. - text: az stack group create --name rollout01 --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --deny-settings-mode None + text: az stack group create --name StackName --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --deny-settings-mode None """ helps['stack group list'] = """ @@ -3024,7 +3024,7 @@ - name: Get stack by name. text: az stack group show --name StackName --resource-group ResourceGroup - name: Get stack by stack resource id. - text: az stack group show --id StackResourceID + text: az stack group show --id /subscriptions/111111111111/resourceGroups/ResourceGroup/providers/Microsoft.Resources/deploymentStacks/StackName """ helps['stack group export'] = """ @@ -3034,7 +3034,7 @@ - name: Export template by name. text: az stack group export --name StackName --resource-group ResourceGroup - name: Export template by stack resource id. - text: az stack group export --id StackResourceID + text: az stack group export --id /subscriptions/111111111111/resourceGroups/ResourceGroup/providers/Microsoft.Resources/deploymentStacks/StackName """ helps['stack group delete'] = """ @@ -3044,7 +3044,7 @@ - name: Delete stack by name. text: az stack group delete --name StackName --resource-group ResourceGroup - name: Delete stack by stack resource id. - text: az stack group delete --id StackResourceID + text: az stack group delete --id /subscriptions/111111111111/resourceGroups/ResourceGroup/providers/Microsoft.Resources/deploymentStacks/StackName """ helps['bicep generate-params'] = """ From f7f28dc8009d0786cc9654220865ffb769e5b538 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 13 Jun 2023 10:29:32 -0400 Subject: [PATCH 114/139] Added stacks link and changed abbreviations --- .../cli/command_modules/resource/_params.py | 22 +++++++++++-------- src/azure-cli/service_name.json | 2 +- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index cb7dc62e8a3..ecabc8d96b4 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -121,9 +121,9 @@ def load_arguments(self, _): options_list=['--description'], help='The description of deployment stack.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') - stacks_stack_deployment_resource_group = CLIArgumentType(options_list=['--deployment-resource-group', '-r'], + stacks_stack_deployment_resource_group = CLIArgumentType(options_list=['--deployment-resource-group', '--dr'], help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_stack_deployment_subscription = CLIArgumentType(options_list=['--deployment-subscription', '-d'], + stacks_stack_deployment_subscription = CLIArgumentType(options_list=['--deployment-subscription', '--ds'], help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') stacks_delete_resources_type = CLIArgumentType( options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') @@ -133,12 +133,12 @@ def load_arguments(self, _): options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') stacks_deny_settings_mode = CLIArgumentType( help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') - stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '-e'], + stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') - stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '-a'], + stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType( - options_list=['--deny-settings-apply-to-child-scopes', '-c'], help='DenySettings will be applied to child scopes.') + options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') @@ -702,10 +702,14 @@ def load_arguments(self, _): for operation in ['create', 'update']: with self.argument_context('managedapp definition {}'.format(operation)) as c: c.argument('lock_level', arg_type=get_enum_type(ApplicationLockLevel), help='The type of lock restriction.') - c.argument('authorizations', options_list=['--authorizations', '-a'], nargs='+', help="space-separated authorization pairs in a format of `:`") - c.argument('create_ui_definition', options_list=['--create-ui-definition', '-c'], help='JSON formatted string or a path to a file with such content', type=file_type) - c.argument('main_template', options_list=['--main-template', '-t'], help='JSON formatted string or a path to a file with such content', type=file_type) - c.argument('deployment_mode', arg_type=get_enum_type(self.get_models('DeploymentMode')), help='The managed application deployment mode.') + c.argument('authorizations', options_list=['--authorizations', '-a'], nargs='+', + help="space-separated authorization pairs in a format of `:`") + c.argument('create_ui_definition', options_list=[ + '--create-ui-definition', '-c'], help='JSON formatted string or a path to a file with such content', type=file_type) + c.argument('main_template', options_list=[ + '--main-template', '-t'], help='JSON formatted string or a path to a file with such content', type=file_type) + c.argument('deployment_mode', arg_type=get_enum_type(self.get_models( + 'DeploymentMode')), help='The managed application deployment mode.') with self.argument_context('account') as c: c.argument('subscription', options_list=['--subscription', '-s'], diff --git a/src/azure-cli/service_name.json b/src/azure-cli/service_name.json index 337bf0e63e6..e09984ae650 100644 --- a/src/azure-cli/service_name.json +++ b/src/azure-cli/service_name.json @@ -152,7 +152,7 @@ { "Command": "az databoxedge", "AzureServiceName": "Azure Stack", - "URL": "https://docs.microsoft.com/azure/databox-online/" + "URL": "https://aka.ms/deploymentStacks" }, { "Command": "az demo", From d385130c1f86852260a5dd4c4a5d1d7bed4738ce Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 16 Jun 2023 11:42:37 -0400 Subject: [PATCH 115/139] Removed unnecessary formatting --- .../cli/command_modules/resource/_help.py | 2 +- .../cli/command_modules/resource/_params.py | 356 ++++++------------ .../cli/command_modules/resource/commands.py | 100 ++--- .../cli/command_modules/resource/custom.py | 157 +++----- 4 files changed, 212 insertions(+), 403 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 23b817bdc6f..99cdbaf4b38 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2843,7 +2843,7 @@ helps['stack'] = """ type: group short-summary: A deployment stack is a native Azure resource type that enables you to perform operations on a resource collection as an atomic unit. -long-summary: Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. (Version 2.0) +long-summary: Deployment stacks are defined in ARM as the type Microsoft.Resources/deploymentStacks. """ helps['stack mg'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index ecabc8d96b4..233524645d2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -30,46 +30,31 @@ def load_arguments(self, _): validate_lock_parameters, validate_resource_lock, validate_group_lock, validate_subscription_lock, validate_metadata, RollbackAction) from azure.cli.command_modules.resource.parameters import TagUpdateOperation - DeploymentMode, WhatIfResultFormat, ChangeType = self.get_models( - 'DeploymentMode', 'WhatIfResultFormat', 'ChangeType') + DeploymentMode, WhatIfResultFormat, ChangeType = self.get_models('DeploymentMode', 'WhatIfResultFormat', 'ChangeType') # BASIC PARAMETER CONFIGURATION resource_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The resource name. (Ex: myC)') - resource_type_type = CLIArgumentType( - help="The resource type (Ex: 'resC'). Can also accept namespace/type format (Ex: 'Microsoft.Provider/resC')") - resource_namespace_type = CLIArgumentType( - options_list='--namespace', completer=get_providers_completion_list, help="Provider namespace (Ex: 'Microsoft.Provider')") - resource_parent_type = CLIArgumentType(required=False, options_list=[ - '--parent'], help="The parent path (Ex: 'resA/myA/resB/myB')") - existing_policy_definition_name_type = CLIArgumentType( - options_list=['--name', '-n'], completer=get_policy_completion_list, help='The policy definition name.') - existing_policy_set_definition_name_type = CLIArgumentType( - options_list=['--name', '-n'], completer=get_policy_set_completion_list, help='The policy set definition name.') - subscription_type = CLIArgumentType(options_list='--subscription', FilesCompleter=get_subscription_id_list, - help='The subscription id of the policy [set] definition.') - management_group_name_type = CLIArgumentType( - options_list='--management-group', help='The name of the management group of the policy [set] definition. This parameter is required if your policy set is scoped to a management group.') + resource_type_type = CLIArgumentType(help="The resource type (Ex: 'resC'). Can also accept namespace/type format (Ex: 'Microsoft.Provider/resC')") + resource_namespace_type = CLIArgumentType(options_list='--namespace', completer=get_providers_completion_list, help="Provider namespace (Ex: 'Microsoft.Provider')") + resource_parent_type = CLIArgumentType(required=False, options_list=['--parent'], help="The parent path (Ex: 'resA/myA/resB/myB')") + existing_policy_definition_name_type = CLIArgumentType(options_list=['--name', '-n'], completer=get_policy_completion_list, help='The policy definition name.') + existing_policy_set_definition_name_type = CLIArgumentType(options_list=['--name', '-n'], completer=get_policy_set_completion_list, help='The policy set definition name.') + subscription_type = CLIArgumentType(options_list='--subscription', FilesCompleter=get_subscription_id_list, help='The subscription id of the policy [set] definition.') + management_group_name_type = CLIArgumentType(options_list='--management-group', help='The name of the management group of the policy [set] definition. This parameter is required if your policy set is scoped to a management group.') identity_scope_type = CLIArgumentType(help="Scope that the system assigned identity can access") - identity_role_type = CLIArgumentType( - options_list=['--role'], help="Role name or id that will be assigned to the managed identity") + identity_role_type = CLIArgumentType(options_list=['--role'], help="Role name or id that will be assigned to the managed identity") extended_json_format_type = CLIArgumentType(options_list=['--handle-extended-json-format', '-j'], action='store_true', help='Support to handle extended template content including multiline and comments in deployment') deployment_name_type = CLIArgumentType(options_list=['--name', '-n'], required=True, help='The deployment name.') - deployment_create_name_type = CLIArgumentType( - options_list=['--name', '-n'], required=False, help='The deployment name. Default to template file base name') - management_group_id_type = CLIArgumentType( - options_list=['--management-group-id', '-m'], required=True, help='The management group id.') + deployment_create_name_type = CLIArgumentType(options_list=['--name', '-n'], required=False, help='The deployment name. Default to template file base name') + management_group_id_type = CLIArgumentType(options_list=['--management-group-id', '-m'], required=True, help='The management group id.') deployment_template_file_type = CLIArgumentType(options_list=['--template-file', '-f'], completer=FilesCompleter(), type=file_type, help="a path to a template file or Bicep file in the file system") - deployment_template_uri_type = CLIArgumentType( - options_list=['--template-uri', '-u'], help='a uri to a remote template file') - deployment_template_spec_type = CLIArgumentType( - options_list=['--template-spec', '-s'], min_api='2019-06-01', help="The template spec resource id.") - deployment_query_string_type = CLIArgumentType(options_list=[ - '--query-string', '-q'], help="The query string (a SAS token) to be used with the template-uri in the case of linked templates.") - deployment_parameters_type = CLIArgumentType( - options_list=['--parameters', '-p'], action='append', nargs='+', completer=FilesCompleter(), help='the deployment parameters') + deployment_template_uri_type = CLIArgumentType(options_list=['--template-uri', '-u'], help='a uri to a remote template file') + deployment_template_spec_type = CLIArgumentType(options_list=['--template-spec', '-s'], min_api='2019-06-01', help="The template spec resource id.") + deployment_query_string_type = CLIArgumentType(options_list=['--query-string', '-q'], help="The query string (a SAS token) to be used with the template-uri in the case of linked templates.") + deployment_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], action='append', nargs='+', completer=FilesCompleter(), help='the deployment parameters') filter_type = CLIArgumentType(options_list=['--filter'], is_preview=True, help='Filter expression using OData notation. You can use --filter "provisioningState eq \'{state}\'" to filter provisioningState. ' 'To get more information, please visit https://docs.microsoft.com/rest/api/resources/deployments/listatsubscriptionscope#uri-parameters') @@ -83,8 +68,7 @@ def load_arguments(self, _): help='Instruct the command to execute the deployment if the What-If result contains no resource changes. Applicable when --confirm-with-what-if is set.', min_api='2019-07-01') deployment_what_if_result_format_type = CLIArgumentType(options_list=['--result-format', '-r'], - arg_type=get_enum_type( - WhatIfResultFormat, "FullResourcePayloads"), + arg_type=get_enum_type(WhatIfResultFormat, "FullResourcePayloads"), min_api='2019-07-01') deployment_what_if_no_pretty_print_type = CLIArgumentType(options_list=['--no-pretty-print'], action='store_true', help='Disable pretty-print for What-If results. When set, the output format type will be used.') @@ -107,56 +91,36 @@ def load_arguments(self, _): 'For example, if the supported api-version of resource provider is 2020-01-01-preview and 2019-01-01: ' 'when passing in this parameter it will take the latest version 2020-01-01-preview, otherwise it will take the latest stable version 2019-01-01 without passing in this parameter') - ts_display_name_type = CLIArgumentType( - options_list=['--display-name', '-d'], help='The display name of the template spec') - ts_description_type = CLIArgumentType( - options_list=['--description'], help='The description of the parent template spec.') - ts_version_description_type = CLIArgumentType( - options_list=['--version-description'], help='The description of the template spec version.') + ts_display_name_type = CLIArgumentType(options_list=['--display-name', '-d'], help='The display name of the template spec') + ts_description_type = CLIArgumentType(options_list=['--description'], help='The description of the parent template spec.') + ts_version_description_type = CLIArgumentType(options_list=['--version-description'], help='The description of the template spec version.') ui_form_definition_file_type = CLIArgumentType(options_list=['--ui-form-definition'], completer=FilesCompleter(), type=file_type, help="A path to a uiFormDefinition file in the file system") stacks_name_type = CLIArgumentType(options_list=['--name', '-n'], help='The name of the deployment stack.') - stacks_description_type = CLIArgumentType( - options_list=['--description'], help='The description of deployment stack.') + stacks_description_type = CLIArgumentType(options_list=['--description'], help='The description of deployment stack.') stacks_stack_type = CLIArgumentType(help='The deployment stack resource id.') stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') - stacks_stack_deployment_resource_group = CLIArgumentType(options_list=['--deployment-resource-group', '--dr'], - help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_stack_deployment_subscription = CLIArgumentType(options_list=['--deployment-subscription', '--ds'], - help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_delete_resources_type = CLIArgumentType( - options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') - stacks_delete_resource_groups_type = CLIArgumentType( - options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') - stacks_delete_all_type = CLIArgumentType( - options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType( - help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') - stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], - help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') - stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], - help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") - stacks_apply_to_child_scopes = CLIArgumentType( - options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') + stacks_stack_deployment_resource_group = CLIArgumentType(options_list=['--deployment-resource-group', '--dr'], help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_stack_deployment_subscription = CLIArgumentType(options_list=['--deployment-subscription', '--ds'], help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') + stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') + stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') + stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') + stacks_deny_settings_mode = CLIArgumentType(help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') + stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') + stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") + stacks_apply_to_child_scopes = CLIArgumentType(options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type) bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true') bicep_no_restore_type = CLIArgumentType(options_list=['--no-restore'], action='store_true') - bicep_outdir_type = CLIArgumentType( - options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") - bicep_outfile_type = CLIArgumentType( - options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") - bicep_stdout_type = CLIArgumentType( - options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") - bicep_indentkind_type = CLIArgumentType( - options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") - bicep_indentsize_type = CLIArgumentType( - options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") - bicep_insertfinalnewline_type = CLIArgumentType( - options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") - bicep_newline_type = CLIArgumentType( - options_list=['--newline'], help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") + bicep_outdir_type = CLIArgumentType(options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.") + bicep_outfile_type = CLIArgumentType(options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.") + bicep_stdout_type = CLIArgumentType(options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.") + bicep_indentkind_type = CLIArgumentType(options_list=['--indent-kind'], help="Set indentation kind. Valid values are ( Space | Tab ).") + bicep_indentsize_type = CLIArgumentType(options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).") + bicep_insertfinalnewline_type = CLIArgumentType(options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.") + bicep_newline_type = CLIArgumentType(options_list=['--newline'], help="Set newline char. Valid values are ( Auto | LF | CRLF | CR ).") bicep_target_platform_type = CLIArgumentType(options_list=['--target-platform', '-t'], arg_type=get_enum_type( ["win-x64", "linux-musl-x64", "linux-x64", "osx-x64", "linux-arm64", "osx-arm64"]), @@ -169,18 +133,14 @@ def load_arguments(self, _): c.argument('resource_group_name', resource_group_name_type, arg_group='Resource Id') c.ignore('resource_id') c.argument('resource_name', resource_name_type, arg_group='Resource Id') - c.argument('api_version', help='The api version of the resource (omit for the latest stable version)', - required=False, arg_group='Resource Id') + c.argument('api_version', help='The api version of the resource (omit for the latest stable version)', required=False, arg_group='Resource Id') c.argument('resource_provider_namespace', resource_namespace_type, arg_group='Resource Id') - c.argument('resource_type', arg_type=resource_type_type, - completer=get_resource_types_completion_list, arg_group='Resource Id') + c.argument('resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list, arg_group='Resource Id') c.argument('parent_resource_path', resource_parent_type, arg_group='Resource Id') c.argument('tag', tag_type) c.argument('tags', tags_type) - c.argument('resource_ids', nargs='+', options_list=[ - '--ids'], help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.', arg_group='Resource Id') - c.argument('include_response_body', arg_type=get_three_state_flag(), - help='Use if the default command output doesn\'t capture all of the property data.') + c.argument('resource_ids', nargs='+', options_list=['--ids'], help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.', arg_group='Resource Id') + c.argument('include_response_body', arg_type=get_three_state_flag(), help='Use if the default command output doesn\'t capture all of the property data.') c.argument('latest_include_preview', latest_include_preview_type) with self.argument_context('resource list') as c: @@ -191,15 +151,12 @@ def load_arguments(self, _): with self.argument_context('resource invoke-action') as c: c.argument('action', help='The action that will be invoked on the specified resource') - c.argument( - 'request_body', help='JSON encoded parameter arguments for the action that will be passed along in the post request body. Use @{file} to load from a file.') + c.argument('request_body', help='JSON encoded parameter arguments for the action that will be passed along in the post request body. Use @{file} to load from a file.') with self.argument_context('resource create') as c: c.argument('resource_id', options_list=['--id'], help='Resource ID.', action=None) - c.argument('properties', options_list=['--properties', '-p'], - help='A JSON-formatted string containing resource properties.') - c.argument('is_full_object', action='store_true', - help='Indicate that the properties object includes other options such as location, tags, sku, and/or plan.') + c.argument('properties', options_list=['--properties', '-p'], help='A JSON-formatted string containing resource properties.') + c.argument('is_full_object', action='store_true', help='Indicate that the properties object includes other options such as location, tags, sku, and/or plan.') with self.argument_context('resource patch') as c: c.argument('properties', options_list=['--properties', '-p'], @@ -208,14 +165,11 @@ def load_arguments(self, _): help='Indicate that the properties object includes other options such as location, tags, sku, and/or plan.') with self.argument_context('resource link') as c: - c.argument('target_id', options_list=['--target', c.deprecate(target='--target-id', - redirect='--target', hide=True)], help='Fully-qualified resource ID of the resource link target.') - c.argument('link_id', options_list=['--link', c.deprecate(target='--link-id', - redirect='--link', hide=True)], help='Fully-qualified resource ID of the resource link.') + c.argument('target_id', options_list=['--target', c.deprecate(target='--target-id', redirect='--target', hide=True)], help='Fully-qualified resource ID of the resource link target.') + c.argument('link_id', options_list=['--link', c.deprecate(target='--link-id', redirect='--link', hide=True)], help='Fully-qualified resource ID of the resource link.') c.argument('notes', help='Notes for the link.') c.argument('scope', help='Fully-qualified scope for retrieving links.') - c.argument('filter_string', options_list=[ - '--filter', c.deprecate(target='--filter-string', redirect='--filter', hide=True)], help='Filter string for limiting results.') + c.argument('filter_string', options_list=['--filter', c.deprecate(target='--filter-string', redirect='--filter', hide=True)], help='Filter string for limiting results.') with self.argument_context('resource tag') as c: c.argument('is_incremental', action='store_true', options_list=['--is-incremental', '-i'], @@ -226,16 +180,13 @@ def load_arguments(self, _): with self.argument_context('provider') as c: c.ignore('top') - c.argument('resource_provider_namespace', options_list=[ - '--namespace', '-n'], completer=get_providers_completion_list, help=_PROVIDER_HELP_TEXT) + c.argument('resource_provider_namespace', options_list=['--namespace', '-n'], completer=get_providers_completion_list, help=_PROVIDER_HELP_TEXT) with self.argument_context('provider register') as c: c.argument('mg', help="The management group id to register.", options_list=['--management-group-id', '-m']) - c.argument('accept_terms', action='store_true', is_preview=True, - help="Accept market place terms and RP terms for RPaaS. Required when registering RPs from RPaaS, such as 'Microsoft.Confluent' and 'Microsoft.Datadog'.", deprecate_info=c.deprecate(hide=True)) + c.argument('accept_terms', action='store_true', is_preview=True, help="Accept market place terms and RP terms for RPaaS. Required when registering RPs from RPaaS, such as 'Microsoft.Confluent' and 'Microsoft.Datadog'.", deprecate_info=c.deprecate(hide=True)) c.argument('wait', action='store_true', help='wait for the registration to finish') - c.argument('consent_to_permissions', options_list=[ - '--consent-to-permissions', '-c'], action='store_true', help='A value indicating whether authorization is consented or not.') + c.argument('consent_to_permissions', options_list=['--consent-to-permissions', '-c'], action='store_true', help='A value indicating whether authorization is consented or not.') with self.argument_context('provider unregister') as c: c.argument('wait', action='store_true', help='wait for unregistration to finish') @@ -258,22 +209,17 @@ def load_arguments(self, _): c.argument('resource_provider_namespace', options_list='--namespace', required=False, help=_PROVIDER_HELP_TEXT) with self.argument_context('policy') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, - help='the resource group where the policy will be applied') + c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group where the policy will be applied') with self.argument_context('policy definition', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('policy_definition_name', arg_type=existing_policy_definition_name_type) - c.argument('rules', help='JSON formatted string or a path to a file with such content', - type=file_type, completer=FilesCompleter()) + c.argument('rules', help='JSON formatted string or a path to a file with such content', type=file_type, completer=FilesCompleter()) c.argument('display_name', help='Display name of policy definition.') c.argument('description', help='Description of policy definition.') - c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', - type=file_type, completer=FilesCompleter(), min_api='2016-12-01') - c.argument('metadata', min_api='2017-06-01-preview', nargs='+', - validator=validate_metadata, help='Metadata in space-separated key=value pairs.') + c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', type=file_type, completer=FilesCompleter(), min_api='2016-12-01') + c.argument('metadata', min_api='2017-06-01-preview', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') c.argument('management_group', arg_type=management_group_name_type) - c.argument('mode', options_list=[ - '--mode', '-m'], help='Mode of the policy definition, e.g. All, Indexed. Please visit https://aka.ms/azure-policy-mode for more information.', min_api='2016-12-01') + c.argument('mode', options_list=['--mode', '-m'], help='Mode of the policy definition, e.g. All, Indexed. Please visit https://aka.ms/azure-policy-mode for more information.', min_api='2016-12-01') c.argument('subscription', arg_type=subscription_type) c.ignore('_subscription') # disable global subscription @@ -281,72 +227,53 @@ def load_arguments(self, _): c.argument('name', options_list=['--name', '-n'], help='Name of the new policy definition.') with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: - c.argument('name', options_list=['--name', '-n'], - completer=get_policy_assignment_completion_list, help='Name of the policy assignment.') + c.argument('name', options_list=['--name', '-n'], completer=get_policy_assignment_completion_list, help='Name of the policy assignment.') c.argument('scope', help='Scope at which this policy assignment subcommand applies. Defaults to current context subscription.') - c.argument('disable_scope_strict_match', action='store_true', - help='Include policy assignments either inherited from parent scope or at child scope.') + c.argument('disable_scope_strict_match', action='store_true', help='Include policy assignments either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy assignment.') c.argument('description', help='Description of the policy assignment.', min_api='2016-12-01') - c.argument('policy', help='Name or id of the policy definition. If not provided, a policy set definition parameter must be provided.', - completer=get_policy_completion_list) - c.argument('params', options_list=['--params', '-p'], help='JSON formatted string or a path to a file or uri with parameter values of the policy rule.', - type=file_type, completer=FilesCompleter(), min_api='2016-12-01') + c.argument('policy', help='Name or id of the policy definition. If not provided, a policy set definition parameter must be provided.', completer=get_policy_completion_list) + c.argument('params', options_list=['--params', '-p'], help='JSON formatted string or a path to a file or uri with parameter values of the policy rule.', type=file_type, completer=FilesCompleter(), min_api='2016-12-01') with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview') as c: - c.argument('policy_set_definition', options_list=[ - '--policy-set-definition', '-d'], help='Name or id of the policy set definition. If not provided, a policy definition parameter must be provided.') - c.argument('sku', options_list=['--sku', '-s'], help='policy sku.', - arg_type=get_enum_type(['free', 'standard']), deprecate_info=c.deprecate(hide=True)) + c.argument('policy_set_definition', options_list=['--policy-set-definition', '-d'], help='Name or id of the policy set definition. If not provided, a policy definition parameter must be provided.') + c.argument('sku', options_list=['--sku', '-s'], help='policy sku.', arg_type=get_enum_type(['free', 'standard']), deprecate_info=c.deprecate(hide=True)) c.argument('notscopes', options_list='--not-scopes', nargs='+') with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY, arg_group='Managed Identity', min_api='2018-05-01') as c: - c.argument('assign_identity', nargs='*', help="Assigns a system assigned identity to the policy assignment. This argument will be deprecated, please use --mi-system-assigned instead", - deprecate_info=c.deprecate(hide=True)) - c.argument('mi_system_assigned', action='store_true', - help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') - c.argument('mi_user_assigned', min_api='2021-06-01', - help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') + c.argument('assign_identity', nargs='*', help="Assigns a system assigned identity to the policy assignment. This argument will be deprecated, please use --mi-system-assigned instead", deprecate_info=c.deprecate(hide=True)) + c.argument('mi_system_assigned', action='store_true', help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') + c.argument('mi_user_assigned', min_api='2021-06-01', help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') c.argument('identity_scope', arg_type=identity_scope_type) c.argument('identity_role', arg_type=identity_role_type) with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2019-06-01') as c: - c.argument('enforcement_mode', options_list=[ - '--enforcement-mode', '-e'], help='Enforcement mode of the policy assignment, e.g. Default, DoNotEnforce. Please visit https://aka.ms/azure-policyAssignment-enforcement-mode for more information.', arg_type=get_enum_type(EnforcementMode)) + c.argument('enforcement_mode', options_list=['--enforcement-mode', '-e'], help='Enforcement mode of the policy assignment, e.g. Default, DoNotEnforce. Please visit https://aka.ms/azure-policyAssignment-enforcement-mode for more information.', arg_type=get_enum_type(EnforcementMode)) with self.argument_context('policy assignment create', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('name', options_list=['--name', '-n'], help='Name of the new policy assignment.') with self.argument_context('policy assignment create', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2018-05-01') as c: - c.argument('location', arg_type=get_location_type(self.cli_ctx), - help='The location of the policy assignment. Only required when utilizing managed identity.') + c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location of the policy assignment. Only required when utilizing managed identity.') with self.argument_context('policy assignment identity', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2018-05-01') as c: - c.argument('mi_system_assigned', action='store_true', options_list=[ - '--system-assigned'], help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') - c.argument('mi_user_assigned', options_list=['--user-assigned'], min_api='2021-06-01', - help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') + c.argument('mi_system_assigned', action='store_true', options_list=['--system-assigned'], help='Provide this flag to use system assigned identity for policy assignment. Check out help for more examples') + c.argument('mi_user_assigned', options_list=['--user-assigned'], min_api='2021-06-01', help='UserAssigned Identity Id to be used for policy assignment. Check out help for more examples') c.argument('identity_scope', arg_type=identity_scope_type) c.argument('identity_role', arg_type=identity_role_type) with self.argument_context('policy assignment non-compliance-message', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2020-09-01') as c: - c.argument('message', options_list=[ - '--message', '-m'], help='Message that will be shown when a resource is denied by policy or evaluation details are inspected.') - c.argument('policy_definition_reference_id', options_list=[ - '--policy-definition-reference-id', '-r'], help='Policy definition reference ID within the assigned initiative (policy set) that the message applies to.') + c.argument('message', options_list=['--message', '-m'], help='Message that will be shown when a resource is denied by policy or evaluation details are inspected.') + c.argument('policy_definition_reference_id', options_list=['--policy-definition-reference-id', '-r'], help='Policy definition reference ID within the assigned initiative (policy set) that the message applies to.') with self.argument_context('policy set-definition', min_api='2017-06-01-preview', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('policy_set_definition_name', arg_type=existing_policy_set_definition_name_type) c.argument('display_name', help='Display name of policy set definition.') c.argument('description', help='Description of policy set definition.') - c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', - type=file_type, completer=FilesCompleter()) - c.argument('definitions', help='JSON formatted string or a path to a file or uri containing definitions.', - type=file_type, completer=FilesCompleter()) - c.argument('definition_groups', min_api='2019-09-01', - help='JSON formatted string or a path to a file or uri containing policy definition groups. Groups are used to organize policy definitions within a policy set.', type=file_type, completer=FilesCompleter()) - c.argument('metadata', nargs='+', validator=validate_metadata, - help='Metadata in space-separated key=value pairs.') + c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions.', type=file_type, completer=FilesCompleter()) + c.argument('definitions', help='JSON formatted string or a path to a file or uri containing definitions.', type=file_type, completer=FilesCompleter()) + c.argument('definition_groups', min_api='2019-09-01', help='JSON formatted string or a path to a file or uri containing policy definition groups. Groups are used to organize policy definitions within a policy set.', type=file_type, completer=FilesCompleter()) + c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') c.argument('management_group', arg_type=management_group_name_type) c.argument('subscription', arg_type=subscription_type) c.ignore('_subscription') # disable global subscription @@ -356,40 +283,31 @@ def load_arguments(self, _): with self.argument_context('policy exemption', min_api='2020-09-01', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.ignore('_subscription') - c.argument('name', options_list=['--name', '-n'], - completer=get_policy_exemption_completion_list, help='Name of the policy exemption.') + c.argument('name', options_list=['--name', '-n'], completer=get_policy_exemption_completion_list, help='Name of the policy exemption.') c.argument('scope', help='Scope to which this policy exemption applies.') - c.argument('disable_scope_strict_match', options_list=[ - '--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') + c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=[ - '--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) - c.argument('policy_definition_reference_ids', nargs='+', options_list=[ - '--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') - c.argument( - 'expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') - c.argument('metadata', nargs='+', validator=validate_metadata, - help='Metadata in space-separated key=value pairs.') + c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) + c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') + c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') + c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') with self.argument_context('policy exemption create', min_api='2020-09-01', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: c.argument('name', options_list=['--name', '-n'], help='Name of the new policy exemption.') - c.argument('policy_assignment', options_list=['--policy-assignment', '-a'], - help='The referenced policy assignment Id for the policy exemption.') + c.argument('policy_assignment', options_list=['--policy-assignment', '-a'], help='The referenced policy assignment Id for the policy exemption.') with self.argument_context('group') as c: c.argument('tag', tag_type) c.argument('tags', tags_type) - c.argument('resource_group_name', resource_group_name_type, - options_list=['--name', '-n', '--resource-group', '-g']) + c.argument('resource_group_name', resource_group_name_type, options_list=['--name', '-n', '--resource-group', '-g']) with self.argument_context('group update') as c: c.argument('properties_to_add', deprecate_info=c.deprecate(hide=True)) c.argument('properties_to_remove', deprecate_info=c.deprecate(hide=True)) with self.argument_context('group deployment') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, - completer=get_resource_group_completion_list) + c.argument('resource_group_name', arg_type=resource_group_name_type, completer=get_resource_group_completion_list) c.argument('deployment_name', arg_type=deployment_name_type) c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_uri', arg_type=deployment_template_uri_type) @@ -490,10 +408,8 @@ def load_arguments(self, _): c.argument('filter_string', arg_type=filter_type) with self.argument_context('deployment group') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, - completer=get_resource_group_completion_list, required=True) - c.argument('mode', arg_type=get_enum_type(DeploymentMode, default='incremental'), - help='Incremental (only add resources to resource group) or Complete (remove extra resources from resource group)') + c.argument('resource_group_name', arg_type=resource_group_name_type, completer=get_resource_group_completion_list, required=True) + c.argument('mode', arg_type=get_enum_type(DeploymentMode, default='incremental'), help='Incremental (only add resources to resource group) or Complete (remove extra resources from resource group)') c.argument('rollback_on_error', nargs='?', action=RollbackAction, help='The name of a deployment to roll back to on error, or use as a flag to roll back to the last successful deployment.') @@ -625,8 +541,7 @@ def load_arguments(self, _): with self.argument_context('group delete') as c: c.argument('resource_group_name', resource_group_name_type, options_list=['--name', '-n', '--resource-group', '-g'], local_context_attribute=None) - c.argument('force_deletion_types', options_list=['--force-deletion-types', '-f'], arg_type=get_enum_type( - ['Microsoft.Compute/virtualMachines', 'Microsoft.Compute/virtualMachineScaleSets']), min_api='2021-04-01', help='The resource types you want to force delete.') + c.argument('force_deletion_types', options_list=['--force-deletion-types', '-f'], arg_type=get_enum_type(['Microsoft.Compute/virtualMachines', 'Microsoft.Compute/virtualMachineScaleSets']), min_api='2021-04-01', help='The resource types you want to force delete.') with self.argument_context('tag') as c: c.argument('tag_name', tag_name_type) @@ -638,21 +553,17 @@ def load_arguments(self, _): with self.argument_context('lock') as c: c.argument('lock_name', options_list=['--name', '-n'], validator=validate_lock_parameters) - c.argument('level', arg_type=get_enum_type(LockLevel), options_list=[ - '--lock-type', '-t'], help='The type of lock restriction.') + c.argument('level', arg_type=get_enum_type(LockLevel), options_list=['--lock-type', '-t'], help='The type of lock restriction.') c.argument('parent_resource_path', resource_parent_type) c.argument('resource_provider_namespace', resource_namespace_type) c.argument('resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list) - c.argument('resource_name', options_list=['--resource', '--resource-name'], - help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.') - c.argument('ids', nargs='+', options_list='--ids', - help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') + c.argument('resource_name', options_list=['--resource', '--resource-name'], help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.') + c.argument('ids', nargs='+', options_list='--ids', help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') c.argument('resource_group', resource_group_name_type, validator=validate_lock_parameters) with self.argument_context('resource lock') as c: c.argument('resource_group', resource_group_name_type) - c.argument('resource_name', options_list=['--resource', '--resource-name'], - help='If an ID is given, other resource arguments should not be given.', validator=validate_resource_lock) + c.argument('resource_name', options_list=['--resource', '--resource-name'], help='If an ID is given, other resource arguments should not be given.', validator=validate_resource_lock) with self.argument_context('group lock') as c: c.argument('resource_group', resource_group_name_type, validator=validate_group_lock, id_part=None) @@ -673,53 +584,41 @@ def load_arguments(self, _): for scope in ['lock', 'account lock', 'group lock', 'resource lock']: with self.argument_context(scope) as c: c.argument('lock_name', options_list=['--name', '-n'], help='Name of the lock') - c.argument('level', options_list=['--lock-type', '-t'], arg_type=get_enum_type( - [LockLevel.can_not_delete, LockLevel.read_only]), help='The type of lock restriction.') - c.argument('ids', nargs='+', options_list='--ids', - help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') + c.argument('level', options_list=['--lock-type', '-t'], arg_type=get_enum_type([LockLevel.can_not_delete, LockLevel.read_only]), help='The type of lock restriction.') + c.argument('ids', nargs='+', options_list='--ids', help='One or more resource IDs (space-delimited). If provided, no other "Resource Id" arguments should be specified.') c.argument('notes', help='Notes about this lock.') with self.argument_context('managedapp') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, - help='the resource group of the managed application', id_part='resource_group') + c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application', id_part='resource_group') c.argument('application_name', options_list=['--name', '-n'], id_part='name') c.argument('tags', tags_type) with self.argument_context('managedapp definition') as c: - c.argument('resource_group_name', arg_type=resource_group_name_type, - help='the resource group of the managed application definition', id_part='resource_group') + c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application definition', id_part='resource_group') c.argument('application_definition_name', options_list=['--name', '-n'], id_part='name') with self.argument_context('managedapp create') as c: c.argument('name', options_list=['--name', '-n'], help='name of the new managed application', completer=None) c.argument('location', help='the managed application location') - c.argument('managedapp_definition_id', options_list=[ - '--managedapp-definition-id', '-d'], help='the full qualified managed application definition id') - c.argument('managedby_resource_group_id', options_list=[ - '--managed-rg-id', '-m'], help='the resource group managed by the managed application') + c.argument('managedapp_definition_id', options_list=['--managedapp-definition-id', '-d'], help='the full qualified managed application definition id') + c.argument('managedby_resource_group_id', options_list=['--managed-rg-id', '-m'], help='the resource group managed by the managed application') c.argument('parameters', help='JSON formatted string or a path to a file with such content', type=file_type) for operation in ['create', 'update']: with self.argument_context('managedapp definition {}'.format(operation)) as c: c.argument('lock_level', arg_type=get_enum_type(ApplicationLockLevel), help='The type of lock restriction.') - c.argument('authorizations', options_list=['--authorizations', '-a'], nargs='+', - help="space-separated authorization pairs in a format of `:`") - c.argument('create_ui_definition', options_list=[ - '--create-ui-definition', '-c'], help='JSON formatted string or a path to a file with such content', type=file_type) - c.argument('main_template', options_list=[ - '--main-template', '-t'], help='JSON formatted string or a path to a file with such content', type=file_type) - c.argument('deployment_mode', arg_type=get_enum_type(self.get_models( - 'DeploymentMode')), help='The managed application deployment mode.') + c.argument('authorizations', options_list=['--authorizations', '-a'], nargs='+', help="space-separated authorization pairs in a format of `:`") + c.argument('create_ui_definition', options_list=['--create-ui-definition', '-c'], help='JSON formatted string or a path to a file with such content', type=file_type) + c.argument('main_template', options_list=['--main-template', '-t'], help='JSON formatted string or a path to a file with such content', type=file_type) + c.argument('deployment_mode', arg_type=get_enum_type(self.get_models('DeploymentMode')), help='The managed application deployment mode.') with self.argument_context('account') as c: - c.argument('subscription', options_list=['--subscription', '-s'], - help='Name or ID of subscription.', completer=get_subscription_id_list) + c.argument('subscription', options_list=['--subscription', '-s'], help='Name or ID of subscription.', completer=get_subscription_id_list) c.ignore('_subscription') # hide global subscription parameter with self.argument_context('account management-group') as c: c.argument('group_name', options_list=['--name', '-n']) - c.argument('no_register', action='store_true', - help='Skip registration for resource provider Microsoft.Management') + c.argument('no_register', action='store_true', help='Skip registration for resource provider Microsoft.Management') with self.argument_context('account management-group show') as c: c.argument('expand', options_list=['--expand', '-e'], action='store_true') @@ -735,39 +634,31 @@ def load_arguments(self, _): with self.argument_context('account management-group hierarchy-settings create') as c: c.argument('default_management_group', options_list=['--default-management-group', '-m']) - c.argument('require_authorization_for_group_creation', options_list=[ - '--require-authorization-for-group-creation', '-r']) + c.argument('require_authorization_for_group_creation', options_list=['--require-authorization-for-group-creation', '-r']) with self.argument_context('account management-group hierarchy-settings update') as c: c.argument('default_management_group', options_list=['--default-management-group', '-m']) - c.argument('require_authorization_for_group_creation', options_list=[ - '--require-authorization-for-group-creation', '-r']) + c.argument('require_authorization_for_group_creation', options_list=['--require-authorization-for-group-creation', '-r']) with self.argument_context('ts') as c: c.argument('name', options_list=['--name', '-n'], help='The name of the template spec.') c.argument('version', options_list=['--version', '-v'], help='The template spec version.') with self.argument_context('ts create') as c: - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group to store the template spec.') + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group to store the template spec.') c.argument('template_file', arg_type=deployment_template_file_type) - c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, - help='The uiFormDefinition file path in the file system for the template spec version.') - c.argument('location', options_list=[ - '--location', '-l'], help='The location to store the template-spec and template-spec version(s). Cannot be changed after creation.') + c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, help='The uiFormDefinition file path in the file system for the template spec version.') + c.argument('location', options_list=['--location', '-l'], help='The location to store the template-spec and template-spec version(s). Cannot be changed after creation.') c.argument('display_name', arg_type=ts_display_name_type) c.argument('description', arg_type=ts_description_type) c.argument('version_description', arg_type=ts_version_description_type) c.argument('tags', tags_type) - c.argument('no_prompt', options_list=['--yes', '-y'], - action='store_true', help='Do not prompt for confirmation') + c.argument('no_prompt', options_list=['--yes', '-y'], action='store_true', help='Do not prompt for confirmation') with self.argument_context('ts update') as c: - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group to store the template spec.') + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group to store the template spec.') c.argument('template_spec', arg_type=deployment_template_spec_type) - c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, - help='The uiFormDefinition file path in the file system for the template spec version.') + c.argument('ui_form_definition_file', arg_type=ui_form_definition_file_type, help='The uiFormDefinition file path in the file system for the template spec version.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('display_name', arg_type=ts_display_name_type) c.argument('description', arg_type=ts_description_type) @@ -782,8 +673,7 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) with self.argument_context('ts delete') as c: - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group where the template spec or template spec version is stored.') + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the template spec or template spec version is stored.') c.argument('template_spec', arg_type=deployment_template_spec_type) with self.argument_context('ts list') as c: @@ -800,8 +690,7 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('query_string', arg_type=deployment_query_string_type) - c.argument('parameters', arg_type=deployment_parameters_type, - help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) c.argument('deployment_subscription', arg_type=stacks_stack_deployment_subscription) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -840,8 +729,7 @@ def load_arguments(self, _): c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('query_string', arg_type=deployment_query_string_type) - c.argument('parameters', arg_type=deployment_parameters_type, - help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -906,8 +794,7 @@ def load_arguments(self, _): with self.argument_context('stack group delete') as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group where the deployment stack exists') + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -920,8 +807,7 @@ def load_arguments(self, _): c.argument('outdir', arg_type=bicep_outdir_type) c.argument('outfile', arg_type=bicep_outfile_type) c.argument('stdout', arg_type=bicep_stdout_type) - c.argument('no_restore', arg_type=bicep_no_restore_type, - help="When set, builds the bicep file without restoring external modules.") + c.argument('no_restore', arg_type=bicep_no_restore_type, help="When set, builds the bicep file without restoring external modules.") with self.argument_context('bicep format') as c: c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to format in the file system.") @@ -942,8 +828,7 @@ def load_arguments(self, _): c.argument('force', arg_type=bicep_force_type, help="Allows overwriting the cached external modules.") with self.argument_context('bicep publish') as c: - c.argument('file', arg_type=bicep_file_type, - help="The path to the Bicep module file to publish in the file system.") + c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep module file to publish in the file system.") c.argument('target', arg_type=CLIArgumentType(options_list=['--target', '-t'], help="The target location where the Bicep module will be published.")) c.argument('documentationUri', arg_type=CLIArgumentType(options_list=['--documentationUri', '-d'], @@ -951,21 +836,18 @@ def load_arguments(self, _): c.argument('force', arg_type=bicep_force_type, help="Allow overwriting an existing Bicep module version.") with self.argument_context('bicep install') as c: - c.argument('version', options_list=[ - '--version', '-v'], help='The version of Bicep CLI to be installed. Default to the latest if not specified.') + c.argument('version', options_list=['--version', '-v'], help='The version of Bicep CLI to be installed. Default to the latest if not specified.') c.argument('target_platform', arg_type=bicep_target_platform_type) with self.argument_context('bicep upgrade') as c: c.argument('target_platform', arg_type=bicep_target_platform_type) with self.argument_context('bicep generate-params') as c: - c.argument('file', arg_type=bicep_file_type, - help="The path to the Bicep file to generate the parameters file from in the file system.") + c.argument('file', arg_type=bicep_file_type, help="The path to the Bicep file to generate the parameters file from in the file system.") c.argument('outdir', arg_type=bicep_outdir_type) c.argument('outfile', arg_type=bicep_outfile_type) c.argument('stdout', arg_type=bicep_stdout_type) - c.argument('no_restore', arg_type=bicep_no_restore_type, - help="When set, generates the parameters file without restoring external modules.") + c.argument('no_restore', arg_type=bicep_no_restore_type, help="When set, generates the parameters file without restoring external modules.") with self.argument_context('resourcemanagement private-link create') as c: c.argument('resource_group', arg_type=resource_group_name_type, @@ -1004,4 +886,4 @@ def load_arguments(self, _): with self.argument_context('private-link association delete') as c: c.argument('management_group_id', arg_type=management_group_id_type) - c.argument('name', options_list=['--name', '-n'], help='The name of the private link association') + c.argument('name', options_list=['--name', '-n'], help='The name of the private link association') \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index dbcc8c33e3a..2c232beb169 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -15,9 +15,8 @@ from azure.cli.core.commands.arm import handle_template_based_exception from azure.cli.command_modules.resource._client_factory import ( cf_resource_groups, cf_providers, cf_features, cf_feature_registrations, cf_tags, cf_deployments, - cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_policy_exemptions, cf_resource_links, - cf_resource_deploymentscripts, cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_group_subscriptions, cf_resource_templatespecs, cf_resource_deploymentstacks, - cf_management_groups_mixin, cf_management_group_entities, cf_hierarchy_settings, cf_resource_resourcemanagementprivatelinks, cf_resource_privatelinkassociations) + cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_policy_exemptions, cf_resource_links, cf_resource_deploymentstacks, + cf_resource_deploymentscripts, cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_groups_mixin, cf_management_group_subscriptions, cf_management_group_entities, cf_hierarchy_settings, cf_resource_templatespecs, cf_resource_resourcemanagementprivatelinks, cf_resource_privatelinkassociations) from azure.cli.command_modules.resource._validators import ( process_deployment_create_namespace, process_ts_create_or_update_namespace, _validate_template_spec, _validate_template_spec_out, process_assign_identity_namespace, process_assignment_create_namespace, validate_deployment_stack_files) @@ -67,8 +66,7 @@ def transform_resource_group_list(result): def transform_resource_list(result): transformed = [] for r in result: - res = OrderedDict([('Name', r['name']), ('ResourceGroup', r['resourceGroup']), - ('Location', r['location']), ('Type', r['type'])]) + res = OrderedDict([('Name', r['name']), ('ResourceGroup', r['resourceGroup']), ('Location', r['location']), ('Type', r['type'])]) try: res['Status'] = r['properties']['provisioningStatus'] except TypeError: @@ -76,26 +74,6 @@ def transform_resource_list(result): transformed.append(res) return transformed - -def transform_deployment(result): - r = result - format_result = OrderedDict([('Name', r['name']), - ('State', r['properties']['provisioningState']), - ('Timestamp', r['properties']['timestamp']), - ('Mode', r['properties']['mode'])]) - - # For deployments that are not under the resource group level, the return data does not contain 'resourceGroup' - if 'resourceGroup' in r and r['resourceGroup']: - format_result['ResourceGroup'] = r['resourceGroup'] - - return format_result - - -def transform_deployments_list(result): - sort_list = sorted(result, key=lambda deployment: deployment['properties']['timestamp']) - return [transform_deployment(r) for r in sort_list] - - def transform_stacks(result): return OrderedDict([('Name', result['name']), ('State', result['provisioningState']), @@ -122,10 +100,27 @@ def transform_stacks_export(result): ('ContentVersion', result['template']['contentVersion'])]) # pylint: disable=too-many-statements +def transform_deployment(result): + r = result + format_result = OrderedDict([('Name', r['name']), + ('State', r['properties']['provisioningState']), + ('Timestamp', r['properties']['timestamp']), + ('Mode', r['properties']['mode'])]) + + # For deployments that are not under the resource group level, the return data does not contain 'resourceGroup' + if 'resourceGroup' in r and r['resourceGroup']: + format_result['ResourceGroup'] = r['resourceGroup'] + + return format_result +def transform_deployments_list(result): + sort_list = sorted(result, key=lambda deployment: deployment['properties']['timestamp']) + return [transform_deployment(r) for r in sort_list] + + +# pylint: disable=too-many-statements def load_command_table(self, _): - # pylint: disable=too-many-locals from azure.cli.core.commands.arm import deployment_validate_table_format resource_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.resource.custom#{}') @@ -286,8 +281,7 @@ def load_command_table(self, _): g.custom_command('list', 'list_resources', table_transformer=transform_resource_list) g.custom_command('tag', 'tag_resource') g.custom_command('move', 'move_resource') - g.custom_command('invoke-action', 'invoke_resource_action', - transform=DeploymentOutputLongRunningOperation(self.cli_ctx)) + g.custom_command('invoke-action', 'invoke_resource_action', transform=DeploymentOutputLongRunningOperation(self.cli_ctx)) g.generic_update_command('update', getter_name='show_resource', setter_name='update_resource', client_factory=None) g.custom_command('patch', 'patch_resource') @@ -344,8 +338,7 @@ def load_command_table(self, _): g.command('list', 'list', table_transformer=transform_deployments_list, max_api='2016-09-01') g.show_command('show', 'get', table_transformer=transform_deployment) g.command('delete', 'begin_delete', supports_no_wait=True) - g.custom_command('validate', 'validate_arm_template', table_transformer=deployment_validate_table_format, - exception_handler=handle_template_based_exception) + g.custom_command('validate', 'validate_arm_template', table_transformer=deployment_validate_table_format, exception_handler=handle_template_based_exception) g.custom_command('export', 'export_deployment_as_template') g.wait_command('wait') g.command('cancel', 'cancel') @@ -356,23 +349,17 @@ def load_command_table(self, _): # az deployment with self.command_group('deployment', resource_deployment_sdk, min_api='2018-05-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: - g.custom_command('list', 'list_deployments_at_subscription_scope', table_transformer=transform_deployments_list, - deprecate_info=g.deprecate(redirect='deployment sub list', hide=True)) - g.custom_show_command('show', 'get_deployment_at_subscription_scope', - deprecate_info=g.deprecate(redirect='deployment sub show', hide=True)) - g.custom_command('delete', 'delete_deployment_at_subscription_scope', supports_no_wait=True, - deprecate_info=g.deprecate(redirect='deployment sub delete', hide=True)) + g.custom_command('list', 'list_deployments_at_subscription_scope', table_transformer=transform_deployments_list, deprecate_info=g.deprecate(redirect='deployment sub list', hide=True)) + g.custom_show_command('show', 'get_deployment_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub show', hide=True)) + g.custom_command('delete', 'delete_deployment_at_subscription_scope', supports_no_wait=True, deprecate_info=g.deprecate(redirect='deployment sub delete', hide=True)) g.custom_command('validate', 'validate_arm_template_at_subscription_scope', validator=process_deployment_create_namespace, table_transformer=deployment_validate_table_format, exception_handler=handle_template_based_exception, deprecate_info=g.deprecate(redirect='deployment sub validate', hide=True)) g.custom_command('create', 'deploy_arm_template_at_subscription_scope', supports_no_wait=True, validator=process_deployment_create_namespace, exception_handler=handle_template_based_exception, deprecate_info=g.deprecate(redirect='deployment sub create', hide=True)) - g.custom_command('export', 'export_template_at_subscription_scope', - deprecate_info=g.deprecate(redirect='deployment sub export', hide=True)) - g.custom_wait_command('wait', 'get_deployment_at_subscription_scope', - deprecate_info=g.deprecate(redirect='deployment sub wait', hide=True)) - g.custom_command('cancel', 'cancel_deployment_at_subscription_scope', - deprecate_info=g.deprecate(redirect='deployment sub cancel', hide=True)) + g.custom_command('export', 'export_template_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub export', hide=True)) + g.custom_wait_command('wait', 'get_deployment_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub wait', hide=True)) + g.custom_command('cancel', 'cancel_deployment_at_subscription_scope', deprecate_info=g.deprecate(redirect='deployment sub cancel', hide=True)) with self.command_group('deployment operation', resource_deployment_operation_sdk, min_api='2018-05-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_subscription_scope', @@ -397,8 +384,7 @@ def load_command_table(self, _): with self.command_group('deployment operation sub', resource_deployment_operation_sdk, min_api='2018-05-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_subscription_scope') - g.custom_show_command('show', 'get_deployment_operations_at_subscription_scope', - client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_subscription_scope', client_factory=cf_deployment_operations) with self.command_group('deployment-scripts', resource_deploymentscripts_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSCRIPTS) as g: g.custom_command('list', 'list_deployment_scripts') @@ -408,8 +394,7 @@ def load_command_table(self, _): with self.command_group('ts', resource_templatespecs_sdk, resource_type=ResourceType.MGMT_RESOURCE_TEMPLATESPECS, min_api='2019-06-01-preview') as g: g.custom_command('create', 'create_template_spec', validator=process_ts_create_or_update_namespace) - g.custom_command('update', 'update_template_spec', - validator=process_ts_create_or_update_namespace, confirmation=True) + g.custom_command('update', 'update_template_spec', validator=process_ts_create_or_update_namespace, confirmation=True) g.custom_command('export', 'export_template_spec', validator=_validate_template_spec_out) g.custom_show_command('show', 'get_template_spec', validator=_validate_template_spec) g.custom_command('list', 'list_template_specs') @@ -428,19 +413,15 @@ def load_command_table(self, _): g.custom_show_command('show', 'show_deployment_stack_at_subscription', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_subscription', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_subscription') - g.custom_command('create', 'create_deployment_stack_at_subscription', - validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_subscription', - table_transformer=transform_stacks_export) + g.custom_command('create', 'create_deployment_stack_at_subscription', validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export', 'export_template_deployment_stack_at_subscription', table_transformer=transform_stacks_export) with self.command_group('stack group', resource_deploymentstacks_sdk, resource_type=ResourceType.MGMT_RESOURCE_DEPLOYMENTSTACKS) as g: g.custom_show_command('show', 'show_deployment_stack_at_resource_group', table_transformer=transform_stacks) g.custom_command('list', 'list_deployment_stack_at_resource_group', table_transformer=transform_stacks_list) g.custom_command('delete', 'delete_deployment_stack_at_resource_group') - g.custom_command('create', 'create_deployment_stack_at_resource_group', - validator=validate_deployment_stack_files, table_transformer=transform_stacks) - g.custom_command('export', 'export_template_deployment_stack_at_resource_group', - table_transformer=transform_stacks_export) + g.custom_command('create', 'create_deployment_stack_at_resource_group', validator=validate_deployment_stack_files, table_transformer=transform_stacks) + g.custom_command('export', 'export_template_deployment_stack_at_resource_group', table_transformer=transform_stacks_export) # az deployment group with self.command_group('deployment group', resource_deployment_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: @@ -459,8 +440,7 @@ def load_command_table(self, _): with self.command_group('deployment operation group', resource_deployment_operation_sdk, resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_resource_group') - g.custom_show_command('show', 'get_deployment_operations_at_resource_group', - client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_resource_group', client_factory=cf_deployment_operations) # az deployment mg with self.command_group('deployment mg', resource_deployment_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: @@ -479,8 +459,7 @@ def load_command_table(self, _): with self.command_group('deployment operation mg', resource_deployment_operation_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_management_group') - g.custom_show_command('show', 'get_deployment_operations_at_management_group', - client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_management_group', client_factory=cf_deployment_operations) # az deployment tenant with self.command_group('deployment tenant', resource_deployment_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: @@ -499,8 +478,7 @@ def load_command_table(self, _): with self.command_group('deployment operation tenant', resource_deployment_operation_sdk, min_api='2019-07-01', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES) as g: g.custom_command('list', 'list_deployment_operations_at_tenant_scope') - g.custom_show_command('show', 'get_deployment_operations_at_tenant_scope', - client_factory=cf_deployment_operations) + g.custom_show_command('show', 'get_deployment_operations_at_tenant_scope', client_factory=cf_deployment_operations) with self.command_group('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g: g.custom_command('create', 'create_policy_assignment', validator=process_assignment_create_namespace) @@ -635,4 +613,4 @@ def load_command_table(self, _): g.custom_command('create', 'create_private_link_association') g.custom_show_command('show', 'get_private_link_association') g.custom_command('list', 'list_private_link_association') - g.custom_command('delete', 'delete_private_link_association', confirmation=True) + g.custom_command('delete', 'delete_private_link_association', confirmation=True) \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 457e2bf3637..65e95cea17c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -23,7 +23,7 @@ from azure.mgmt.resource.resources.models import GenericResource, DeploymentMode -from azure.cli.core.azclierror import ArgumentUsageError, InvalidArgumentValueError, RequiredArgumentMissingError, ResourceNotFoundError +from azure.cli.core.azclierror import ArgumentUsageError, InvalidArgumentValueError, RequiredArgumentMissingError from azure.cli.core.parser import IncorrectUsageError from azure.cli.core.util import get_file_json, read_file_content, shell_safe_json_parse, sdk_no_wait from azure.cli.core.commands import LongRunningOperation @@ -57,6 +57,7 @@ ) from ._utils import _build_preflight_error_message, _build_http_response_error_message + logger = get_logger(__name__) RPAAS_APIS = {'microsoft.datadog': '/subscriptions/{subscriptionId}/providers/Microsoft.Datadog/agreements/default?api-version=2020-02-01-preview', @@ -306,8 +307,7 @@ def _remove_comments_from_json(template, preserve_order=True, file_path=None): # In order to solve the package conflict introduced by jsmin, the jsmin code is referenced into json_min minified = json_min(template) try: - # use strict=False to allow multiline strings - return shell_safe_json_parse(minified, preserve_order, strict=False) + return shell_safe_json_parse(minified, preserve_order, strict=False) # use strict=False to allow multiline strings except CLIError: # Because the processing of removing comments and compression will lead to misplacement of error location, # so the error message should be wrapped. @@ -450,8 +450,7 @@ def deploy_arm_template_at_subscription_scope(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, - ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -489,8 +488,7 @@ def _deploy_arm_template_at_subscription_scope(cmd, no_prompt=no_prompt, template_spec=template_spec, query_string=query_string) - mgmt_client = _get_deployment_management_client( - cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) from azure.core.exceptions import HttpResponseError Deployment = cmd.get_models('Deployment') @@ -537,8 +535,7 @@ def deploy_arm_template_at_resource_group(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, - ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -629,8 +626,7 @@ def deploy_arm_template_at_management_group(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, - ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -674,8 +670,7 @@ def _deploy_arm_template_at_management_group(cmd, parameters=parameters, mode=mode, no_prompt=no_prompt, template_spec=template_spec, query_string=query_string) - mgmt_client = _get_deployment_management_client( - cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) from azure.core.exceptions import HttpResponseError ScopedDeployment = cmd.get_models('ScopedDeployment') @@ -723,8 +718,7 @@ def deploy_arm_template_at_tenant_scope(cmd, return None ChangeType = cmd.get_models('ChangeType') - has_change = any(change.change_type not in [ChangeType.no_change, - ChangeType.ignore] for change in what_if_result.changes) + has_change = any(change.change_type not in [ChangeType.no_change, ChangeType.ignore] for change in what_if_result.changes) if not proceed_if_no_change or has_change: from knack.prompting import prompt_y_n @@ -760,8 +754,7 @@ def _deploy_arm_template_at_tenant_scope(cmd, parameters=parameters, mode='Incremental', no_prompt=no_prompt, template_spec=template_spec, query_string=query_string,) - mgmt_client = _get_deployment_management_client( - cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) from azure.core.exceptions import HttpResponseError ScopedDeployment = cmd.get_models('ScopedDeployment') @@ -816,8 +809,7 @@ def _what_if_deploy_arm_template_at_resource_group_core(cmd, resource_group_name deployment_what_if = DeploymentWhatIf(properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if(resource_group_name, deployment_name, parameters=deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core( - cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -842,14 +834,12 @@ def _what_if_deploy_arm_template_at_subscription_scope_core(cmd, return_result=None): what_if_properties = _prepare_deployment_what_if_properties(cmd, 'subscription', template_file, template_uri, parameters, DeploymentMode.incremental, result_format, no_prompt, template_spec, query_string) - mgmt_client = _get_deployment_management_client( - cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) ScopedDeploymentWhatIf = cmd.get_models('ScopedDeploymentWhatIf') scoped_deployment_what_if = ScopedDeploymentWhatIf(location=deployment_location, properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if_at_subscription_scope(deployment_name, parameters=scoped_deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core( - cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -874,14 +864,12 @@ def _what_if_deploy_arm_template_at_management_group_core(cmd, management_group_ return_result=None): what_if_properties = _prepare_deployment_what_if_properties(cmd, 'managementGroup', template_file, template_uri, parameters, DeploymentMode.incremental, result_format, no_prompt, template_spec=template_spec, query_string=query_string) - mgmt_client = _get_deployment_management_client( - cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) ScopedDeploymentWhatIf = cmd.get_models('ScopedDeploymentWhatIf') scoped_deployment_what_if = ScopedDeploymentWhatIf(location=deployment_location, properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if_at_management_group_scope(management_group_id, deployment_name, parameters=scoped_deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core( - cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -906,13 +894,11 @@ def _what_if_deploy_arm_template_at_tenant_scope_core(cmd, return_result=None): what_if_properties = _prepare_deployment_what_if_properties(cmd, 'tenant', template_file, template_uri, parameters, DeploymentMode.incremental, result_format, no_prompt, template_spec, query_string) - mgmt_client = _get_deployment_management_client( - cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) + mgmt_client = _get_deployment_management_client(cmd.cli_ctx, plug_pipeline=(template_uri is None and template_spec is None)) ScopedDeploymentWhatIf = cmd.get_models('ScopedDeploymentWhatIf') scoped_deployment_what_if = ScopedDeploymentWhatIf(location=deployment_location, properties=what_if_properties) what_if_poller = mgmt_client.begin_what_if_at_tenant_scope(deployment_name, parameters=scoped_deployment_what_if) - what_if_result = _what_if_deploy_arm_template_core( - cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) + what_if_result = _what_if_deploy_arm_template_core(cmd.cli_ctx, what_if_poller, no_pretty_print, exclude_change_types) return what_if_result if no_pretty_print or return_result else None @@ -950,8 +936,7 @@ def _prepare_template_uri_with_query_string(template_uri, input_query_string): return urlunsplit((scheme, netloc, path, new_query_string, fragment)) except Exception: # pylint: disable=broad-except - raise InvalidArgumentValueError( - 'Unable to parse parameter: {} .Make sure the value is formed correctly.'.format(input_query_string)) + raise InvalidArgumentValueError('Unable to parse parameter: {} .Make sure the value is formed correctly.'.format(input_query_string)) def _prepare_deployment_properties_unmodified(cmd, deployment_scope, template_file=None, template_uri=None, parameters=None, @@ -971,8 +956,7 @@ def _prepare_deployment_properties_unmodified(cmd, deployment_scope, template_fi if template_uri: if query_string: template_link = TemplateLink(uri=template_uri, query_string=query_string) - template_uri = _prepare_template_uri_with_query_string( - template_uri=template_uri, input_query_string=query_string) + template_uri = _prepare_template_uri_with_query_string(template_uri=template_uri, input_query_string=query_string) else: template_link = TemplateLink(uri=template_uri) template_obj = _remove_comments_from_json(_urlretrieve(template_uri).decode('utf-8'), file_path=template_uri) @@ -982,25 +966,21 @@ def _prepare_deployment_properties_unmodified(cmd, deployment_scope, template_fi # ResourceType.MGMT_RESOURCE_TEMPLATESPECS than our designated version. This ensures the api-version of all the rest requests for # template_spec are consistent in the same profile: api_version = get_api_version(cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS) - template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], - api_version=api_version).properties['mainTemplate'] + template_obj = show_resource(cmd=cmd, resource_ids=[template_spec], api_version=api_version).properties['mainTemplate'] else: if _is_bicepparam_file_provided(parameters): ensure_bicep_installation(cli_ctx) minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): - raise ArgumentUsageError( - f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + raise ArgumentUsageError(f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") if len(parameters) > 1: - raise ArgumentUsageError( - "Can not use --parameters argument more than once when using a .bicepparam file") + raise ArgumentUsageError("Can not use --parameters argument more than once when using a .bicepparam file") bicepparam_file = parameters[0][0] if not is_bicep_file(template_file): raise ArgumentUsageError("Only a .bicep template is allowed with a .bicepparam parameter file") - build_bicepparam_output = run_bicep_command( - cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) + build_bicepparam_output = run_bicep_command(cmd.cli_ctx, ["build-params", bicepparam_file, "--bicep-file", template_file, "--stdout"]) build_bicepparam_output_json = json.loads(build_bicepparam_output) template_content = build_bicepparam_output_json["templateJson"] bicepparam_json_content = build_bicepparam_output_json["parametersJson"] @@ -1074,7 +1054,6 @@ def _get_deployment_management_client(cli_ctx, aux_subscriptions=None, aux_tenan return deployment_client - def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -1413,8 +1392,7 @@ def _update_provider(cmd, namespace, registering, wait, properties=None, mg_id=N if is_rpaas and accept_terms and registering and mg_id is None: # call accept term API from azure.cli.core.util import send_raw_request - send_raw_request(cmd.cli_ctx, 'put', RPAAS_APIS[namespace.lower()], - body=json.dumps({"properties": {"accepted": True}})) + send_raw_request(cmd.cli_ctx, 'put', RPAAS_APIS[namespace.lower()], body=json.dumps({"properties": {"accepted": True}})) else: action = 'Registering' if registering else 'Unregistering' msg_template = '%s is still on-going. You can monitor using \'az provider show -n %s\'' @@ -2236,11 +2214,9 @@ def create_template_spec(cmd, resource_group_name, name, template_file=None, loc exists = False if no_prompt is False: try: # Check if child template spec already exists. - rcf.template_spec_versions.get(resource_group_name=resource_group_name, - template_spec_name=name, template_spec_version=version) + rcf.template_spec_versions.get(resource_group_name=resource_group_name, template_spec_name=name, template_spec_version=version) from knack.prompting import prompt_y_n - confirmation = prompt_y_n( - "This will override template spec {} version {}. Proceed?".format(name, version)) + confirmation = prompt_y_n("This will override template spec {} version {}. Proceed?".format(name, version)) if not confirmation: return None exists = True @@ -2265,28 +2241,22 @@ def create_template_spec(cmd, resource_group_name, name, template_file=None, loc if not exists: try: # Check if parent template spec already exists. - existing_parent = rcf.template_specs.get( - resource_group_name=resource_group_name, template_spec_name=name) + existing_parent = rcf.template_specs.get(resource_group_name=resource_group_name, template_spec_name=name) if tags is None: # New version should inherit tags from parent if none are provided. tags = getattr(existing_parent, 'tags') except Exception: # pylint: disable=broad-except tags = tags or {} - TemplateSpec = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, - 'TemplateSpec', mod='models') - template_spec_parent = TemplateSpec( - location=location, description=description, display_name=display_name, tags=tags) + TemplateSpec = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpec', mod='models') + template_spec_parent = TemplateSpec(location=location, description=description, display_name=display_name, tags=tags) rcf.template_specs.create_or_update(resource_group_name, name, template_spec_parent) - TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, - 'TemplateSpecVersion', mod='models') - template_spec_version = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, - main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) + TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpecVersion', mod='models') + template_spec_version = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) return rcf.template_spec_versions.create_or_update(resource_group_name, name, version, template_spec_version) tags = tags or {} TemplateSpec = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpec', mod='models') - template_spec_parent = TemplateSpec(location=location, description=description, - display_name=display_name, tags=tags) + template_spec_parent = TemplateSpec(location=location, description=description, display_name=display_name, tags=tags) return rcf.template_specs.create_or_update(resource_group_name, name, template_spec_parent) @@ -2320,8 +2290,7 @@ def update_template_spec(cmd, resource_group_name=None, name=None, template_spec input_ui_form_definition = json.loads(json.dumps(ui_form_definition_content)) if version: - existing_template = rcf.template_spec_versions.get( - resource_group_name=resource_group_name, template_spec_name=name, template_spec_version=version) + existing_template = rcf.template_spec_versions.get(resource_group_name=resource_group_name, template_spec_name=name, template_spec_version=version) location = getattr(existing_template, 'location') @@ -2334,11 +2303,9 @@ def update_template_spec(cmd, resource_group_name=None, name=None, template_spec input_template = getattr(existing_template, 'main_template') if ui_form_definition_file is None: input_ui_form_definition = getattr(existing_template, 'ui_form_definition') - TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, - 'TemplateSpecVersion', mod='models') + TemplateSpecVersion = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpecVersion', mod='models') - updated_template_spec = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, - main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) + updated_template_spec = TemplateSpecVersion(location=location, linked_templates=artifacts, description=version_description, main_template=input_template, tags=tags, ui_form_definition=input_ui_form_definition) return rcf.template_spec_versions.create_or_update(resource_group_name, name, version, updated_template_spec) existing_template = rcf.template_specs.get(resource_group_name=resource_group_name, template_spec_name=name) @@ -2396,7 +2363,6 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() - def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2829,12 +2795,9 @@ def list_resources(cmd, resource_group_name=None, def register_provider(cmd, resource_provider_namespace, consent_to_permissions=False, mg=None, wait=False, accept_terms=None): properties = None if cmd.supported_api_version(min_api='2021-04-01') and consent_to_permissions: - ProviderRegistrationRequest, ProviderConsentDefinition = cmd.get_models( - 'ProviderRegistrationRequest', 'ProviderConsentDefinition') - properties = ProviderRegistrationRequest(third_party_provider_consent=ProviderConsentDefinition( - consent_to_authorization=consent_to_permissions)) - _update_provider(cmd, resource_provider_namespace, registering=True, wait=wait, - properties=properties, mg_id=mg, accept_terms=accept_terms) + ProviderRegistrationRequest, ProviderConsentDefinition = cmd.get_models('ProviderRegistrationRequest', 'ProviderConsentDefinition') + properties = ProviderRegistrationRequest(third_party_provider_consent=ProviderConsentDefinition(consent_to_authorization=consent_to_permissions)) + _update_provider(cmd, resource_provider_namespace, registering=True, wait=wait, properties=properties, mg_id=mg, accept_terms=accept_terms) def unregister_provider(cmd, resource_provider_namespace, wait=False): @@ -2942,8 +2905,7 @@ def create_policy_assignment(cmd, policy=None, policy_set_definition=None, params = _load_file_string_or_uri(params, 'params', False) PolicyAssignment = cmd.get_models('PolicyAssignment') - assignment = PolicyAssignment(display_name=display_name, policy_definition_id=policy_id, - scope=scope, enforcement_mode=enforcement_mode, description=description) + assignment = PolicyAssignment(display_name=display_name, policy_definition_id=policy_id, scope=scope, enforcement_mode=enforcement_mode, description=description) assignment.parameters = params if params else None if cmd.supported_api_version(min_api='2017-06-01-preview'): @@ -2979,8 +2941,7 @@ def create_policy_assignment(cmd, policy=None, policy_set_definition=None, # Create the identity's role assignment if requested if identities is not None and identity_scope: from azure.cli.core.commands.arm import assign_identity as _assign_identity_helper - _assign_identity_helper(cmd.cli_ctx, lambda: createdAssignment, - lambda resource: createdAssignment, identity_role, identity_scope) + _assign_identity_helper(cmd.cli_ctx, lambda: createdAssignment, lambda resource: createdAssignment, identity_role, identity_scope) return createdAssignment @@ -3092,8 +3053,7 @@ def list_policy_assignment(cmd, disable_scope_strict_match=None, resource_group_ management_group = _parse_management_group_id(scope) if management_group: - result = policy_client.policy_assignments.list_for_management_group( - management_group_id=management_group, filter='atScope()') + result = policy_client.policy_assignments.list_for_management_group(management_group_id=management_group, filter='atScope()') elif all([resource_type, resource_group, subscription]): namespace = id_parts.get('namespace') parent_resource_path = '' if not id_parts.get('child_name_1') else (id_parts['type'] + '/' + id_parts['name']) @@ -3131,8 +3091,7 @@ def create_policy_non_compliance_message(cmd, name, message, scope=None, resourc assignment = policy_client.policy_assignments.get(scope, name) NonComplianceMessage = cmd.get_models('NonComplianceMessage') - created_message = NonComplianceMessage( - message=message, policy_definition_reference_id=policy_definition_reference_id) + created_message = NonComplianceMessage(message=message, policy_definition_reference_id=policy_definition_reference_id) if not assignment.non_compliance_messages: assignment.non_compliance_messages = [] assignment.non_compliance_messages.append(created_message) @@ -3149,11 +3108,9 @@ def delete_policy_non_compliance_message(cmd, name, message, scope=None, resourc assignment = policy_client.policy_assignments.get(scope, name) NonComplianceMessage = cmd.get_models('NonComplianceMessage') - message_to_remove = NonComplianceMessage( - message=message, policy_definition_reference_id=policy_definition_reference_id) + message_to_remove = NonComplianceMessage(message=message, policy_definition_reference_id=policy_definition_reference_id) if assignment.non_compliance_messages: - assignment.non_compliance_messages = [ - existingMessage for existingMessage in assignment.non_compliance_messages if not _is_non_compliance_message_equivalent(existingMessage, message_to_remove)] + assignment.non_compliance_messages = [existingMessage for existingMessage in assignment.non_compliance_messages if not _is_non_compliance_message_equivalent(existingMessage, message_to_remove)] return policy_client.policy_assignments.create(scope, name, assignment).non_compliance_messages @@ -3356,8 +3313,7 @@ def update_policy_definition(cmd, policy_definition_name, rules=None, params=Non params = _load_file_string_or_uri(params, 'params', False) policy_client = _resource_policy_client_factory(cmd.cli_ctx) - definition = _get_custom_or_builtin_policy( - cmd, policy_client, policy_definition_name, subscription, management_group) + definition = _get_custom_or_builtin_policy(cmd, policy_client, policy_definition_name, subscription, management_group) # pylint: disable=line-too-long,no-member PolicyDefinition = cmd.get_models('PolicyDefinition') @@ -3392,8 +3348,7 @@ def update_policy_setdefinition(cmd, policy_set_definition_name, definitions=Non definition_groups = _load_file_string_or_uri(definition_groups, 'definition_groups', False) policy_client = _resource_policy_client_factory(cmd.cli_ctx) - definition = _get_custom_or_builtin_policy( - cmd, policy_client, policy_set_definition_name, subscription, management_group, True) + definition = _get_custom_or_builtin_policy(cmd, policy_client, policy_set_definition_name, subscription, management_group, True) # pylint: disable=line-too-long,no-member PolicySetDefinition = cmd.get_models('PolicySetDefinition') parameters = PolicySetDefinition( @@ -3484,8 +3439,7 @@ def list_policy_exemption(cmd, disable_scope_strict_match=None, resource_group_n management_group = _parse_management_group_id(scope) if management_group: - result = policy_client.policy_exemptions.list_for_management_group( - management_group_id=management_group, filter='atScope()') + result = policy_client.policy_exemptions.list_for_management_group(management_group_id=management_group, filter='atScope()') elif all([resource_type, resource_group, subscription]): namespace = id_parts.get('namespace') parent_resource_path = '' if not id_parts.get('child_name_1') else (id_parts['type'] + '/' + id_parts['name']) @@ -3502,8 +3456,7 @@ def list_policy_exemption(cmd, disable_scope_strict_match=None, resource_group_n raise ArgumentUsageError('usage error: --scope ARM_ID | --resource-group NAME') if not disable_scope_strict_match: - result = [i for i in result if i.id.lower().strip('/').startswith(_scope.lower().strip('/') + - "/providers/microsoft.authorization/policyexemptions")] + result = [i for i in result if i.id.lower().strip('/').startswith(_scope.lower().strip('/') + "/providers/microsoft.authorization/policyexemptions")] return result @@ -3679,8 +3632,7 @@ def cli_hierarchy_settings_create( require_authorization_for_group_creation=None, default_management_group=None): from azure.mgmt.managementgroups.models import CreateOrUpdateSettingsRequest - create_or_update_parameters = CreateOrUpdateSettingsRequest( - require_authorization_for_group_creation=require_authorization_for_group_creation, default_management_group=default_management_group) + create_or_update_parameters = CreateOrUpdateSettingsRequest(require_authorization_for_group_creation=require_authorization_for_group_creation, default_management_group=default_management_group) return client.create_or_update(group_name, create_or_update_parameters) @@ -3702,8 +3654,7 @@ def cli_hierarchysettings_group_update_custom_func( def cli_hierarchysettings_group_update_get(): from azure.mgmt.managementgroups.models import CreateOrUpdateSettingsRequest - update_parameters = CreateOrUpdateSettingsRequest( - require_authorization_for_group_creation=None, default_management_group=None) + update_parameters = CreateOrUpdateSettingsRequest(require_authorization_for_group_creation=None, default_management_group=None) return update_parameters @@ -4453,15 +4404,13 @@ def publish_bicep_file(cmd, file, target, documentationUri=None, force=None): if bicep_version_greater_than_or_equal_to(minimum_supported_version_for_documentationUri_parameter): args += ["--documentationUri", documentationUri] else: - logger.error("az bicep publish with --documentationUri/-d parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", - minimum_supported_version_for_documentationUri_parameter) + logger.error("az bicep publish with --documentationUri/-d parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version_for_documentationUri_parameter) if force: minimum_supported_version_for_publish_force = "0.17.1" if bicep_version_greater_than_or_equal_to(minimum_supported_version_for_publish_force): args += ["--force"] else: - logger.error("az bicep publish with --force parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", - minimum_supported_version_for_publish_force) + logger.error("az bicep publish with --force parameter could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version_for_publish_force) run_bicep_command(cmd.cli_ctx, args) else: logger.error("az bicep publish could not be executed with the current version of Bicep CLI. Please upgrade Bicep CLI to v%s or later.", minimum_supported_version) @@ -4566,4 +4515,4 @@ def delete_private_link_association(cmd, management_group_id, name): def list_private_link_association(cmd, management_group_id): rcf = _resource_privatelinks_client_factory(cmd.cli_ctx) - return rcf.private_link_association.list(group_id=management_group_id) + return rcf.private_link_association.list(group_id=management_group_id) \ No newline at end of file From 32f70f378380396ce6e5ea5b2008ce4de8816b79 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 16 Jun 2023 18:03:11 -0400 Subject: [PATCH 116/139] added requested changes --- .../azure/cli/command_modules/resource/_params.py | 10 +++++----- .../azure/cli/command_modules/resource/commands.py | 5 ++++- .../azure/cli/command_modules/resource/custom.py | 9 +++++---- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 233524645d2..94ffdf30d2b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -103,10 +103,10 @@ def load_arguments(self, _): stacks_stack_name_type = CLIArgumentType(help='The deployment stack name') stacks_stack_deployment_resource_group = CLIArgumentType(options_list=['--deployment-resource-group', '--dr'], help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') stacks_stack_deployment_subscription = CLIArgumentType(options_list=['--deployment-subscription', '--ds'], help='The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack.') - stacks_delete_resources_type = CLIArgumentType(options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') - stacks_delete_resource_groups_type = CLIArgumentType(options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') - stacks_delete_all_type = CLIArgumentType(options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') + stacks_delete_resources_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') + stacks_delete_resource_groups_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') + stacks_delete_all_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') + stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(['none', 'denyDelete', 'denyWriteAndDelete']), help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') @@ -886,4 +886,4 @@ def load_arguments(self, _): with self.argument_context('private-link association delete') as c: c.argument('management_group_id', arg_type=management_group_id_type) - c.argument('name', options_list=['--name', '-n'], help='The name of the private link association') \ No newline at end of file + c.argument('name', options_list=['--name', '-n'], help='The name of the private link association') diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index 2c232beb169..ec2c9d0edf1 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -74,6 +74,7 @@ def transform_resource_list(result): transformed.append(res) return transformed + def transform_stacks(result): return OrderedDict([('Name', result['name']), ('State', result['provisioningState']), @@ -99,6 +100,7 @@ def transform_stacks_export(result): return OrderedDict([('$schema', result['template']['$schema']), ('ContentVersion', result['template']['contentVersion'])]) + # pylint: disable=too-many-statements def transform_deployment(result): r = result @@ -114,6 +116,7 @@ def transform_deployment(result): return format_result +# pylint: disable=too-many-locals def transform_deployments_list(result): sort_list = sorted(result, key=lambda deployment: deployment['properties']['timestamp']) return [transform_deployment(r) for r in sort_list] @@ -613,4 +616,4 @@ def load_command_table(self, _): g.custom_command('create', 'create_private_link_association') g.custom_show_command('show', 'get_private_link_association') g.custom_command('list', 'list_private_link_association') - g.custom_command('delete', 'delete_private_link_association', confirmation=True) \ No newline at end of file + g.custom_command('delete', 'delete_private_link_association', confirmation=True) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 65e95cea17c..d3c4149e96b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -23,7 +23,7 @@ from azure.mgmt.resource.resources.models import GenericResource, DeploymentMode -from azure.cli.core.azclierror import ArgumentUsageError, InvalidArgumentValueError, RequiredArgumentMissingError +from azure.cli.core.azclierror import ArgumentUsageError, InvalidArgumentValueError, RequiredArgumentMissingError, ResourceNotFoundError from azure.cli.core.parser import IncorrectUsageError from azure.cli.core.util import get_file_json, read_file_content, shell_safe_json_parse, sdk_no_wait from azure.cli.core.commands import LongRunningOperation @@ -1054,6 +1054,7 @@ def _get_deployment_management_client(cli_ctx, aux_subscriptions=None, aux_tenan return deployment_client + def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -2363,6 +2364,7 @@ def list_template_specs(cmd, resource_group_name=None, name=None): return rcf.template_specs.list_by_resource_group(resource_group_name) return rcf.template_specs.list_by_subscription() + def create_deployment_stack_at_subscription(cmd, name, location, deny_settings_mode, delete_resources=False, delete_resource_groups=False, delete_all=False, deployment_resource_group=None, template_file=None, template_spec=None, template_uri=None, query_string=None, parameters=None, description=None, deny_settings_excluded_principals=None, deny_settings_excluded_actions=None, deny_settings_apply_to_child_scopes=False, tags=None, yes=False): rcf = _resource_deploymentstacks_client_factory(cmd.cli_ctx) @@ -2472,8 +2474,7 @@ def delete_deployment_stack_at_subscription(cmd, name=None, id=None, delete_reso delete_name = name rcf.deployment_stacks.get_at_subscription(name) except: - raise ResourceNotFoundError("DeploymentStack " + delete_name + - " not found in the current subscription scope.") + raise ResourceNotFoundError("DeploymentStack " + delete_name + " not found in the current subscription scope.") return rcf.deployment_stacks.begin_delete_at_subscription(delete_name, unmanage_action_resources=delete_resources_enum, unmanage_action_resource_groups=delete_resource_groups_enum) raise InvalidArgumentValueError("Please enter the stack name or stack resource id") @@ -4515,4 +4516,4 @@ def delete_private_link_association(cmd, management_group_id, name): def list_private_link_association(cmd, management_group_id): rcf = _resource_privatelinks_client_factory(cmd.cli_ctx) - return rcf.private_link_association.list(group_id=management_group_id) \ No newline at end of file + return rcf.private_link_association.list(group_id=management_group_id) From 5107973e37ff0e535aa1ea10a4f85d1f43f5ccaf Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Fri, 16 Jun 2023 18:12:11 -0400 Subject: [PATCH 117/139] fixed link --- src/azure-cli/service_name.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/service_name.json b/src/azure-cli/service_name.json index e09984ae650..6f547ba60b3 100644 --- a/src/azure-cli/service_name.json +++ b/src/azure-cli/service_name.json @@ -152,7 +152,7 @@ { "Command": "az databoxedge", "AzureServiceName": "Azure Stack", - "URL": "https://aka.ms/deploymentStacks" + "URL": "https://docs.microsoft.com/azure/databox-online/" }, { "Command": "az demo", @@ -172,7 +172,7 @@ { "Command": "az stack", "AzureServiceName": "Azure Resource Manager", - "URL": "https://github.com/Azure/deployment-stacks/blob/main/TUTORIAL.md" + "URL": "https://aka.ms/deploymentStacks" }, { "Command": "az devops", From 24edfa0872eee965f12e8969379d1cfb3f379957 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 19 Jun 2023 12:40:55 -0400 Subject: [PATCH 118/139] Added requested changes --- .../cli/command_modules/resource/_params.py | 24 ++++++++----------- .../cli/command_modules/resource/custom.py | 2 +- .../{ => data}/bicep_simple_template.bicep | 0 3 files changed, 11 insertions(+), 15 deletions(-) rename src/azure-cli/azure/cli/command_modules/resource/tests/latest/{ => data}/bicep_simple_template.bicep (100%) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 94ffdf30d2b..530a88a3ef6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -11,6 +11,7 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel + from azure.mgmt.resource.deploymentstacks.models import DenySettingsMode from azure.mgmt.resource.policy.models import (ExemptionCategory, EnforcementMode) from azure.cli.core.commands.validators import get_default_location_from_resource_group @@ -106,7 +107,7 @@ def load_arguments(self, _): stacks_delete_resources_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(['none', 'denyDelete', 'denyWriteAndDelete']), help='Define which operations are denied on resources managed by the stack: denyDelete or denyWriteAndDelete.') + stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(DenySettingsMode), help='Define which operations are denied on resources managed by the stack.') stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') @@ -680,11 +681,10 @@ def load_arguments(self, _): c.argument('resource_group', arg_type=resource_group_name_type) with self.argument_context('stack mg') as c: - c.argument('management_group_id', arg_type=management_group_id_type, - help='The management group id to create stack at.') + c.argument('management_group_id', arg_type=management_group_id_type, help='The management group id to create stack at.') with self.argument_context('stack mg create') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) + c.argument('name', arg_type=stacks_name_type) c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) @@ -722,7 +722,7 @@ def load_arguments(self, _): c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack sub create') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) + c.argument('name', arg_type=stacks_name_type) c.argument('deployment_resource_group', arg_type=stacks_stack_deployment_resource_group) c.argument('location', arg_type=get_location_type(self.cli_ctx), help='The location to store deployment stack.') c.argument('template_file', arg_type=deployment_template_file_type) @@ -758,15 +758,13 @@ def load_arguments(self, _): c.argument('yes', help='Do not prompt for confirmation') with self.argument_context('stack group create') as c: - c.argument('name', options_list=['--name', '-n'], arg_type=stacks_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group where the deployment stack will be created.') + c.argument('name', arg_type=stacks_name_type) + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack will be created.') c.argument('template_file', arg_type=deployment_template_file_type) c.argument('template_spec', arg_type=deployment_template_spec_type) c.argument('template_uri', arg_type=deployment_template_uri_type) c.argument('query_string', arg_type=deployment_query_string_type) - c.argument('parameters', arg_type=deployment_parameters_type, - help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') + c.argument('parameters', arg_type=deployment_parameters_type, help='Parameters may be supplied from a file using the `@{path}` syntax, a JSON string, or as pairs. Parameters are evaluated in order, so when a value is assigned twice, the latter value will be used. It is recommended that you supply your parameters file first, and then override selectively using KEY=VALUE syntax.') c.argument('description', arg_type=stacks_description_type) c.argument('subscription', arg_type=subscription_type) c.argument('delete_resources', arg_type=stacks_delete_resources_type) @@ -782,14 +780,12 @@ def load_arguments(self, _): for scope in ['stack group show', 'stack group export']: with self.argument_context(scope) as c: c.argument('name', options_list=['--name', '-n'], arg_type=stacks_stack_name_type) - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group where the deployment stack exists') + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('id', arg_type=stacks_stack_type) c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack group list') as c: - c.argument('resource_group', arg_type=resource_group_name_type, - help='The resource group where the deployment stack exists') + c.argument('resource_group', arg_type=resource_group_name_type, help='The resource group where the deployment stack exists') c.argument('subscription', arg_type=subscription_type) with self.argument_context('stack group delete') as c: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index d3c4149e96b..7b7290915e5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1117,7 +1117,7 @@ def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, del from knack.prompting import prompt_y_n build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( name) - build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" + build_confirmation_string += "The following actions will be applied to any resources that are no longer managed by the deployment stack after the template is applied:\n" # first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: build_confirmation_string += "\nDetach: resources and resource groups\n" diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/bicep_simple_template.bicep b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/data/bicep_simple_template.bicep similarity index 100% rename from src/azure-cli/azure/cli/command_modules/resource/tests/latest/bicep_simple_template.bicep rename to src/azure-cli/azure/cli/command_modules/resource/tests/latest/data/bicep_simple_template.bicep From 312593d9f2a38fec1b5e21ac34e5abaceba1f5ff Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 19 Jun 2023 15:01:51 -0400 Subject: [PATCH 119/139] retrigger checks From 85b7e29b29b1a60cc23ede90fc5b4d762c79caa3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 20 Jun 2023 12:06:24 -0400 Subject: [PATCH 120/139] removed enumeration change, add back later --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 530a88a3ef6..2762409fdbb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -11,7 +11,6 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel - from azure.mgmt.resource.deploymentstacks.models import DenySettingsMode from azure.mgmt.resource.policy.models import (ExemptionCategory, EnforcementMode) from azure.cli.core.commands.validators import get_default_location_from_resource_group @@ -107,7 +106,7 @@ def load_arguments(self, _): stacks_delete_resources_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(DenySettingsMode), help='Define which operations are denied on resources managed by the stack.') + stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(['none', 'denyDelete', 'denyWriteAndDelete']), help='Define which operations are denied on resources managed by the stack.') stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') From 50c02d51dcd374799b61f65bfe48275967eecc9e Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 20 Jun 2023 12:20:19 -0400 Subject: [PATCH 121/139] retrigger checks From 3916c396868fe4a8248cce33592d3efeb3eb57b0 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 20 Jun 2023 21:53:49 -0400 Subject: [PATCH 122/139] removed unnecessary comments --- .../resource/tests/latest/test_resource.py | 36 ++++--------------- 1 file changed, 6 insertions(+), 30 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 620b8464600..cdd095a5c24 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2539,7 +2539,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - #create deployment stack with template spec and parameter file + # create deployment stack with template spec and parameter file self.cmd('stack group create --name {name} --resource-group {resource-group} --template-spec "{template-spec-id}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup @@ -2570,11 +2570,8 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('resource show -n {resource-three} -g {resource-group} --resource-type {resource-type-specs}') # check resource2 does not exist in Azure - should have been purged - #find a way to check that resource2 does not exist in Azure - #self.cmd('resource list -g {resource-group-two}', self.check('length([])', 4)) self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - #new code - not tested yet # create new resource group - testing delete-all flag self.cmd('group create --location {location} --name {resource-group-two}') @@ -2602,7 +2599,6 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup - delete resource group two self.cmd('group delete --name {resource-group-two} --yes') - #new code #2 # create new resource group - testing delete-all flag self.cmd('group create --location {location} --name {resource-group-two}') @@ -2713,7 +2709,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # delete stack self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - #confirm stack is deleted + # confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create stack @@ -2727,7 +2723,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # delete stack with stack id self.cmd('stack group delete --id {id} --resource-group {resource-group} --yes') - #confirm stack is deleted + # confirm stack is deleted self.cmd('stack group list --resource-group {resource-group}', checks=self.check("length([?name=='{name}'])", 0)) # create new resource group - delete flag --delete-resources @@ -2748,7 +2744,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # delete stack with resource2 set to delete self.cmd('stack group delete -g {resource-group-two} --name {name} --delete-resources --yes') - #confirm resource2 has been removed from Azure + # confirm resource2 has been removed from Azure self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) # cleanup - delete resource group two @@ -2778,7 +2774,6 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # cleanup - delete resource group two self.cmd('group delete --name {resource-group-two} --yes') - # new #2 # create new resource group - testing delete-all flag self.cmd('group create --location {location} --name {resource-group-two}') @@ -2791,7 +2786,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): # delete stack with delete-all set self.cmd('stack group delete --name {name} -g {resource-group-two} --delete-all --yes') - #confirm rg resource1 has been removed from azure + # confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) # cleanup - delete resource group two @@ -2859,14 +2854,6 @@ def test_create_deployment_stack_management_group(self, resource_group): 'actual-mg': self.create_random_name('azure-cli-management', 30), 'mg': "AzBlueprintAssignTest" }) - # create mg - #self.cmd('account management-group create --name {mg}', checks=[]) - - # create template spec - #basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location "westus2" --template-file {template-file} --resource-group {resource-group}').get_output_in_json() - #template_spec_id = basic_template_spec['id'] - - #self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) @@ -2874,12 +2861,6 @@ def test_create_deployment_stack_management_group(self, resource_group): # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - #create deployment stack with template spec and parameter file - #self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) - - # cleanup - #self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - # test delete flag --delete-resource-groups - create stack with resource1 self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) @@ -2919,7 +2900,6 @@ def test_show_deployment_stack_management_group(self): 'actual-mg':self.create_random_name('azure-cli-management', 30) }) - #self.cmd('account management-group create --name {mg}', checks=[]) created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none"', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] @@ -2965,8 +2945,6 @@ def test_delete_deployment_stack_management_group(self): 'actual-mg':self.create_random_name('azure-cli-management', 30) }) - #self.cmd('account management-group create --name {mg}', checks=[]) - # create stack self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() @@ -2976,7 +2954,7 @@ def test_delete_deployment_stack_management_group(self): # delete stack with stack name self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') - #add delete with stack id + # add delete with stack id created_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() stack_id = created_stack['id'] @@ -3021,8 +2999,6 @@ def test_export_template_deployment_stack_management_group(self): 'actual-mg':self.create_random_name('azure-cli-management', 30) }) - #self.cmd('account management-group create --name {mg}', checks=[]) - created_deployment_stack = self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() deployment_stack_id = created_deployment_stack['id'] From 401d6f78284c529dbbe77ee8f0942188ae23ce5d Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Jun 2023 14:29:23 -0400 Subject: [PATCH 123/139] Added ExemptionCategory import to get through error & updated setup.py to point to the released sdk --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 3 ++- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 2762409fdbb..64433109f9d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -11,7 +11,8 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel - from azure.mgmt.resource.policy.models import (ExemptionCategory, EnforcementMode) + from azure.mgmt.resource.policy.v2020_07_01_preview.models import ExemptionCategory + from azure.mgmt.resource.policy.models import EnforcementMode from azure.cli.core.commands.validators import get_default_location_from_resource_group from azure.cli.core.api import get_subscription_id_list diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 54d598d07f3..fc7dcd0c94e 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -71,7 +71,7 @@ azure-mgmt-recoveryservicesbackup==6.0.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -azure-mgmt-resource==23.0.1 +azure-mgmt-resource==23.1.0b2 azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 1f594dec4da..a05e75e230c 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -115,7 +115,7 @@ 'azure-mgmt-redhatopenshift~=1.2.0', 'azure-mgmt-redis~=14.1.0', 'azure-mgmt-relay~=0.1.0', - 'azure-mgmt-resource==23.0.1', + 'azure-mgmt-resource==23.1.0b2', 'azure-mgmt-search~=9.0', 'azure-mgmt-security==3.0.0', 'azure-mgmt-servicebus~=8.2.0', From 96b0e8a52775d45d8e65486ba92e776179954676 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Jun 2023 14:36:48 -0400 Subject: [PATCH 124/139] Also pointed Darwin and Linux to point to new SDK --- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 7d23fdb319e..828ecf34a57 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-recoveryservicesbackup==6.0.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -azure-mgmt-resource==23.0.1 +azure-mgmt-resource==23.1.0b2 azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 50322449a55..e72787c4b6e 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-recoveryservicesbackup==6.0.0 azure-mgmt-redhatopenshift==1.2.0 azure-mgmt-redis==14.1.0 azure-mgmt-relay==0.1.0 -azure-mgmt-resource==23.0.1 +azure-mgmt-resource==23.1.0b2 azure-mgmt-search==9.0.0 azure-mgmt-security==3.0.0 azure-mgmt-servicebus==8.2.0 From 7794e91ad212f57937ffcec7ee5b72882e4cfa59 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Jun 2023 14:56:10 -0400 Subject: [PATCH 125/139] Fixed bicep test file broken path --- .../resource/tests/latest/test_resource.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index cdd095a5c24..7692abfdc08 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2157,7 +2157,7 @@ def test_create_deployment_stack_subscription(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), @@ -2357,7 +2357,7 @@ def test_delete_deployment_stack_subscription(self): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2511,7 +2511,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), @@ -2838,7 +2838,7 @@ def test_create_deployment_stack_management_group(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), @@ -2931,7 +2931,7 @@ def test_delete_deployment_stack_management_group(self): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, From 05280ae75e55451a9875c2a45c2e3499b038e97c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Jun 2023 15:15:24 -0400 Subject: [PATCH 126/139] Removed exception category to see if CI builds pass --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 64433109f9d..6eeec43d65c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -11,7 +11,6 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel - from azure.mgmt.resource.policy.v2020_07_01_preview.models import ExemptionCategory from azure.mgmt.resource.policy.models import EnforcementMode from azure.cli.core.commands.validators import get_default_location_from_resource_group @@ -289,9 +288,9 @@ def load_arguments(self, _): c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) + c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption') c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') - c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') + c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the polteicy exemption.') c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') with self.argument_context('policy exemption create', min_api='2020-09-01', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: From 48cfa1bd8abfed422caaf87fd9237704a97c656c Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Jun 2023 21:26:33 -0400 Subject: [PATCH 127/139] Added DenySettingsMode, removed extra build confirmation string, added sub create and group passed IT --- .../cli/command_modules/resource/_params.py | 3 +- .../cli/command_modules/resource/custom.py | 31 +- ...reate_deployment_stack_resource_group.yaml | 2446 ++++++++------- ..._create_deployment_stack_subscription.yaml | 2746 ++++++++++------- 4 files changed, 2991 insertions(+), 2235 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 6eeec43d65c..8606e69b396 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -12,6 +12,7 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel from azure.mgmt.resource.policy.models import EnforcementMode + from azure.mgmt.resource.deploymentstacks.models import DenySettingsMode from azure.cli.core.commands.validators import get_default_location_from_resource_group from azure.cli.core.api import get_subscription_id_list @@ -106,7 +107,7 @@ def load_arguments(self, _): stacks_delete_resources_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resources'], help='Flag to indicate delete rather than detach for the resources.') stacks_delete_resource_groups_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-resource-groups'], help='Flag to indicate delete rather than detach for the resource groups.') stacks_delete_all_type = CLIArgumentType(arg_type=get_three_state_flag(), options_list=['--delete-all'], help='Flag to indicate delete rather than detach for the resources and resource groups.') - stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(['none', 'denyDelete', 'denyWriteAndDelete']), help='Define which operations are denied on resources managed by the stack.') + stacks_deny_settings_mode = CLIArgumentType(arg_type=get_enum_type(DenySettingsMode), help='Define which operations are denied on resources managed by the stack.') stacks_excluded_principals = CLIArgumentType(options_list=['--deny-settings-excluded-principals', '--ep'], help='List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.') stacks_excluded_actions = CLIArgumentType(options_list=['--deny-settings-excluded-actions', '--ea'], help="List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted.") stacks_apply_to_child_scopes = CLIArgumentType(options_list=['--deny-settings-apply-to-child-scopes', '--cs'], help='DenySettings will be applied to child scopes.') diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 7b7290915e5..d015746690f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1109,35 +1109,6 @@ def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): return excluded_actions_array -def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, delete_resource_groups_enum): - detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - if not yes: - from knack.prompting import prompt_y_n - build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( - name) - build_confirmation_string += "The following actions will be applied to any resources that are no longer managed by the deployment stack after the template is applied:\n" - # first case we have only detach - if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: - build_confirmation_string += "\nDetach: resources and resource groups\n" - # second case we only have delete - elif delete_resources_enum == delete_model and delete_resource_groups_enum == delete_model: - build_confirmation_string += "\nDeleting: resources and resource groups\n" - else: - if delete_resources_enum == detach_model: - build_confirmation_string += "\nDetach: resources\n" - build_confirmation_string += "\nDeleting: resource groups\n" - else: - build_confirmation_string += "\nDetach: resource groups\n" - build_confirmation_string += "\nDeleting: resources\n" - confirmation = prompt_y_n(build_confirmation_string + "\n") - if not confirmation: - return None - - return build_confirmation_string - - def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -1200,7 +1171,7 @@ def _build_stacks_confirmation_string(rcf, yes, name, delete_resources_enum, del from knack.prompting import prompt_y_n build_confirmation_string = "The DeploymentStack {} you're trying to create already exists in the current subscription.\n".format( name) - build_confirmation_string += "The following actions will be applied to any resources the are no longer managed by the deployment stack after the template is applied:\n" + build_confirmation_string += "The following actions will be applied to any resources that are no longer managed by the deployment stack after the template is applied:\n" # first case we have only detach if delete_resources_enum == detach_model and delete_resource_groups_enum == detach_model: build_confirmation_string += "\nDetach: resources and resource groups\n" diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index b3a5ff06183..115b46b1a18 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -13,8 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -30,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:19 GMT + - Wed, 21 Jun 2023 21:01:57 GMT expires: - '-1' pragma: @@ -58,8 +57,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -75,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:20 GMT + - Wed, 21 Jun 2023 21:01:58 GMT expires: - '-1' pragma: @@ -107,17 +105,16 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:21.9822121Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:01:59.6551891Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:21.9822121Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:01:59.6551891Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -128,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:22 GMT + - Wed, 21 Jun 2023 21:02:00 GMT expires: - '-1' pragma: @@ -168,8 +165,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -187,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:23.810323Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:23.810323Z\"\r\n },\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -201,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:23 GMT + - Wed, 21 Jun 2023 21:02:01 GMT expires: - '-1' pragma: @@ -232,8 +228,7 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -249,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:24 GMT + - Wed, 21 Jun 2023 21:02:02 GMT expires: - '-1' pragma: @@ -264,7 +259,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -283,44 +278,44 @@ interactions: Connection: - keep-alive Content-Length: - - '725' + - '737' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:25.2749795Z\",\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:03.2930232Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:25.2749795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbef7b13-9e7b-454d-a159-d39a30f16827?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM cache-control: - no-cache content-length: - - '1154' + - '1223' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:25 GMT + - Wed, 21 Jun 2023 21:02:03 GMT expires: - '-1' pragma: @@ -351,14 +346,61 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n + \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Jun 2023 21:02:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbef7b13-9e7b-454d-a159-d39a30f16827?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/cbef7b13-9e7b-454d-a159-d39a30f16827\",\r\n - \ \"name\": \"cbef7b13-9e7b-454d-a159-d39a30f16827\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n + \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -367,7 +409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:42 GMT + - Wed, 21 Jun 2023 21:02:33 GMT expires: - '-1' pragma: @@ -400,39 +442,39 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-25-a3cdf\",\r\n - \ \"duration\": \"PT5.9334887S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n + \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:25.2749795Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:25.2749795Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:42 GMT + - Wed, 21 Jun 2023 21:02:33 GMT expires: - '-1' pragma: @@ -464,39 +506,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-25-a3cdf\",\r\n - \ \"duration\": \"PT5.9334887S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n + \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:25.2749795Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:25.2749795Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:43 GMT + - Wed, 21 Jun 2023 21:02:35 GMT expires: - '-1' pragma: @@ -530,8 +572,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -543,7 +584,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:13:43 GMT + - Wed, 21 Jun 2023 21:02:35 GMT expires: - '-1' pragma: @@ -574,8 +615,7 @@ interactions: - --name --resource-group --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -591,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:45 GMT + - Wed, 21 Jun 2023 21:02:36 GMT expires: - '-1' pragma: @@ -620,8 +660,7 @@ interactions: - --name --resource-group --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -639,9 +678,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:23.810323Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:23.810323Z\"\r\n },\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -653,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:45 GMT + - Wed, 21 Jun 2023 21:02:38 GMT expires: - '-1' pragma: @@ -672,7 +711,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, + body: '{"tags": {}, "properties": {"templateLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": false}}}' @@ -686,45 +725,43 @@ interactions: Connection: - keep-alive Content-Length: - - '414' + - '426' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {},\r\n \"bar\": {}\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:46.412179Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:46.412179Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU cache-control: - no-cache content-length: - - '1383' + - '1336' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:13:46 GMT + - Wed, 21 Jun 2023 21:02:38 GMT expires: - '-1' pragma: @@ -755,14 +792,61 @@ interactions: - --name --resource-group --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5\",\r\n - \ \"name\": \"3972fe9d-78a2-47ba-aa7c-eb1287b6b6d5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n + \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Jun 2023 21:02:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-spec --deny-settings-mode --parameters + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n + \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -771,7 +855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:03 GMT + - Wed, 21 Jun 2023 21:03:09 GMT expires: - '-1' pragma: @@ -804,40 +888,41 @@ interactions: - --name --resource-group --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-46-1e819\",\r\n - \ \"duration\": \"PT5.9149557S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n + \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"String\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"String\"\r\n }\r\n },\r\n \"templateLink\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:46.412179Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:46.412179Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1823' + - '1894' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:03 GMT + - Wed, 21 Jun 2023 21:03:09 GMT expires: - '-1' pragma: @@ -869,40 +954,41 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-13-46-1e819\",\r\n - \ \"duration\": \"PT5.9149557S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n + \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"String\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"String\"\r\n }\r\n },\r\n \"templateLink\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:13:46.412179Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:13:46.412179Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1823' + - '1894' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:05 GMT + - Wed, 21 Jun 2023 21:03:10 GMT expires: - '-1' pragma: @@ -936,8 +1022,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -949,7 +1034,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:14:05 GMT + - Wed, 21 Jun 2023 21:03:10 GMT expires: - '-1' pragma: @@ -979,8 +1064,7 @@ interactions: ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -996,7 +1080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:06 GMT + - Wed, 21 Jun 2023 21:03:11 GMT expires: - '-1' pragma: @@ -1011,97 +1095,9 @@ interactions: code: 404 message: Not Found - request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://aka.ms/BicepLatestRelease - response: - body: - string: '' - headers: - cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive - content-length: - - '0' - date: - - Mon, 17 Apr 2023 15:14:07 GMT - expires: - - Mon, 17 Apr 2023 15:14:07 GMT - location: - - https://downloads.bicep.azure.com/releases/latest - pragma: - - no-cache - request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e - server: - - Kestrel - strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://downloads.bicep.azure.com/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/98925381","assets_url":"https://api.github.com/repos/Azure/bicep/releases/98925381/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/98925381/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.16.2","id":98925381,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4F5XtF","tag_name":"v0.16.2","target_commitish":"main","name":"v0.16.2","draft":false,"prerelease":false,"created_at":"2023-04-05T15:27:33Z","published_at":"2023-04-11T19:26:02Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196329","id":103196329,"node_id":"RA_kwDOD7S9ks4GJqap","name":"Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27360858,"download_count":3,"created_at":"2023-04-11T14:16:45Z","updated_at":"2023-04-11T14:16:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196317","id":103196317,"node_id":"RA_kwDOD7S9ks4GJqad","name":"Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27766844,"download_count":3,"created_at":"2023-04-11T14:16:34Z","updated_at":"2023-04-11T14:16:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196376","id":103196376,"node_id":"RA_kwDOD7S9ks4GJqbY","name":"Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27643258,"download_count":2,"created_at":"2023-04-11T14:17:11Z","updated_at":"2023-04-11T14:17:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196341","id":103196341,"node_id":"RA_kwDOD7S9ks4GJqa1","name":"Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28087538,"download_count":4,"created_at":"2023-04-11T14:16:53Z","updated_at":"2023-04-11T14:16:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196295","id":103196295,"node_id":"RA_kwDOD7S9ks4GJqaH","name":"Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27640274,"download_count":4,"created_at":"2023-04-11T14:16:25Z","updated_at":"2023-04-11T14:16:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196274","id":103196274,"node_id":"RA_kwDOD7S9ks4GJqZy","name":"Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27964739,"download_count":5,"created_at":"2023-04-11T14:16:14Z","updated_at":"2023-04-11T14:16:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196098","id":103196098,"node_id":"RA_kwDOD7S9ks4GJqXC","name":"Azure.Bicep.Core.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":573156,"download_count":3,"created_at":"2023-04-11T14:14:38Z","updated_at":"2023-04-11T14:14:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196103","id":103196103,"node_id":"RA_kwDOD7S9ks4GJqXH","name":"Azure.Bicep.Core.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":184789,"download_count":3,"created_at":"2023-04-11T14:14:40Z","updated_at":"2023-04-11T14:14:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196109","id":103196109,"node_id":"RA_kwDOD7S9ks4GJqXN","name":"Azure.Bicep.Decompiler.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":98381,"download_count":4,"created_at":"2023-04-11T14:14:43Z","updated_at":"2023-04-11T14:14:43Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196113","id":103196113,"node_id":"RA_kwDOD7S9ks4GJqXR","name":"Azure.Bicep.Decompiler.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23934,"download_count":3,"created_at":"2023-04-11T14:14:45Z","updated_at":"2023-04-11T14:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196120","id":103196120,"node_id":"RA_kwDOD7S9ks4GJqXY","name":"Azure.Bicep.MSBuild.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45560,"download_count":3,"created_at":"2023-04-11T14:14:47Z","updated_at":"2023-04-11T14:14:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196124","id":103196124,"node_id":"RA_kwDOD7S9ks4GJqXc","name":"Azure.Bicep.MSBuild.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6942,"download_count":3,"created_at":"2023-04-11T14:14:49Z","updated_at":"2023-04-11T14:14:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196129","id":103196129,"node_id":"RA_kwDOD7S9ks4GJqXh","name":"Azure.Bicep.RegistryModuleTool.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23603320,"download_count":5,"created_at":"2023-04-11T14:14:51Z","updated_at":"2023-04-11T14:14:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196139","id":103196139,"node_id":"RA_kwDOD7S9ks4GJqXr","name":"Azure.Bicep.RegistryModuleTool.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":200972,"download_count":3,"created_at":"2023-04-11T14:14:55Z","updated_at":"2023-04-11T14:14:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196179","id":103196179,"node_id":"RA_kwDOD7S9ks4GJqYT","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25104436,"download_count":6,"created_at":"2023-04-11T14:15:15Z","updated_at":"2023-04-11T14:15:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195975","id":103195975,"node_id":"RA_kwDOD7S9ks4GJqVH","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":56867505,"download_count":25,"created_at":"2023-04-11T14:13:31Z","updated_at":"2023-04-11T14:13:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196001","id":103196001,"node_id":"RA_kwDOD7S9ks4GJqVh","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57090165,"download_count":444,"created_at":"2023-04-11T14:13:48Z","updated_at":"2023-04-11T14:13:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195965","id":103195965,"node_id":"RA_kwDOD7S9ks4GJqU9","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57254260,"download_count":4539,"created_at":"2023-04-11T14:13:21Z","updated_at":"2023-04-11T14:13:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196044","id":103196044,"node_id":"RA_kwDOD7S9ks4GJqWM","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57069200,"download_count":190,"created_at":"2023-04-11T14:14:12Z","updated_at":"2023-04-11T14:14:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196028","id":103196028,"node_id":"RA_kwDOD7S9ks4GJqV8","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57479968,"download_count":985,"created_at":"2023-04-11T14:14:00Z","updated_at":"2023-04-11T14:14:03Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196077","id":103196077,"node_id":"RA_kwDOD7S9ks4GJqWt","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":24119368,"download_count":354,"created_at":"2023-04-11T14:14:30Z","updated_at":"2023-04-11T14:14:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196207","id":103196207,"node_id":"RA_kwDOD7S9ks4GJqYv","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56920088,"download_count":3,"created_at":"2023-04-11T14:15:26Z","updated_at":"2023-04-11T14:15:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196090","id":103196090,"node_id":"RA_kwDOD7S9ks4GJqW6","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56797064,"download_count":5303,"created_at":"2023-04-11T14:14:33Z","updated_at":"2023-04-11T14:14:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196241","id":103196241,"node_id":"RA_kwDOD7S9ks4GJqZR","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":45804447,"download_count":4,"created_at":"2023-04-11T14:15:49Z","updated_at":"2023-04-11T14:15:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196224","id":103196224,"node_id":"RA_kwDOD7S9ks4GJqZA","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":37789327,"download_count":90,"created_at":"2023-04-11T14:15:39Z","updated_at":"2023-04-11T14:15:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.16.2","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.16.2","body":"## - Bug fixes and features\r\n\r\nBicep team:\r\n* Use the correct bitwise operator - for combining flags in JSON model loader (#10325)"}' - headers: - content-length: - - '35354' - content-md5: - - AwJGuppw+a+FbEhqTdvO2A== - content-type: - - application/octet-stream - date: - - Mon, 17 Apr 2023 15:14:06 GMT - etag: - - '0x8DB3F4CBE36BE83' - last-modified: - - Mon, 17 Apr 2023 14:05:04 GMT - x-azure-ref: - - 0P2I9ZAAAAABo++susPBtSbvhwcYVFfEOUEhMMzBFREdFMDMwNgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= - x-azure-ref-originshield: - - 0z189ZAAAAADPLyKMXk5cRprO5dVsXPcvRVdSMzBFREdFMDUxMgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.15.31.15270", "templateHash": "6048262845766178169"}}, "parameters": {"location": + "0.17.1.54307", "templateHash": "991381235984945273"}}, "parameters": {"location": {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": @@ -1120,41 +1116,40 @@ interactions: Connection: - keep-alive Content-Length: - - '909' + - '919' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:09.4069708Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:09.4069708Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:03:17.1566091Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ddfb2b4a-049b-44e6-a71f-a2acc15e6832?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM cache-control: - no-cache content-length: - - '1049' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:09 GMT + - Wed, 21 Jun 2023 21:03:17 GMT expires: - '-1' pragma: @@ -1184,14 +1179,60 @@ interactions: ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ddfb2b4a-049b-44e6-a71f-a2acc15e6832?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ddfb2b4a-049b-44e6-a71f-a2acc15e6832\",\r\n - \ \"name\": \"ddfb2b4a-049b-44e6-a71f-a2acc15e6832\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n + \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Jun 2023 21:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n + \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1200,7 +1241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:26 GMT + - Wed, 21 Jun 2023 21:03:47 GMT expires: - '-1' pragma: @@ -1232,16 +1273,16 @@ interactions: ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-09-e8dcc\",\r\n - \ \"duration\": \"PT6.7820992S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n + \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1251,20 +1292,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:09.4069708Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:09.4069708Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1836' + - '1851' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:26 GMT + - Wed, 21 Jun 2023 21:03:47 GMT expires: - '-1' pragma: @@ -1296,16 +1337,16 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-09-e8dcc\",\r\n - \ \"duration\": \"PT6.7820992S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n + \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1315,20 +1356,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:09.4069708Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:09.4069708Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1836' + - '1851' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:28 GMT + - Wed, 21 Jun 2023 21:03:49 GMT expires: - '-1' pragma: @@ -1362,8 +1403,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1375,7 +1415,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:14:28 GMT + - Wed, 21 Jun 2023 21:03:49 GMT expires: - '-1' pragma: @@ -1406,8 +1446,7 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -1423,7 +1462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:29 GMT + - Wed, 21 Jun 2023 21:03:49 GMT expires: - '-1' pragma: @@ -1438,7 +1477,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -1466,43 +1505,43 @@ interactions: Connection: - keep-alive Content-Length: - - '1500' + - '1512' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:29.5977893Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3465c47-138a-4c9f-aa3f-89e62ded8192?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A cache-control: - no-cache content-length: - - '1129' + - '1171' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:29 GMT + - Wed, 21 Jun 2023 21:03:50 GMT expires: - '-1' pragma: @@ -1533,14 +1572,61 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n + \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Jun 2023 21:03:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3465c47-138a-4c9f-aa3f-89e62ded8192?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e3465c47-138a-4c9f-aa3f-89e62ded8192\",\r\n - \ \"name\": \"e3465c47-138a-4c9f-aa3f-89e62ded8192\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n + \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1549,7 +1635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:47 GMT + - Wed, 21 Jun 2023 21:04:21 GMT expires: - '-1' pragma: @@ -1582,39 +1668,40 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-29-e0275\",\r\n - \ \"duration\": \"PT7.3669109S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n + \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:29.5977893Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1945' + - '1987' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:47 GMT + - Wed, 21 Jun 2023 21:04:21 GMT expires: - '-1' pragma: @@ -1647,39 +1734,123 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-29-e0275\",\r\n - \ \"duration\": \"PT7.3669109S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n + \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1987' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Jun 2023 21:04:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '1512' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:29.5977893Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3a04%3a23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg cache-control: - no-cache content-length: - - '1945' + - '1171' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:48 GMT + - Wed, 21 Jun 2023 21:04:23 GMT expires: - '-1' pragma: @@ -1694,75 +1865,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": - {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, - "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, - "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", - "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", - "properties": {"displayName": "DanteTemplateSpec", "description": "Template - Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", - "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), - parameters(''specVersionName''))]", "location": "[parameters(''location'')]", - "properties": {"description": "generated version number for testing stacks", - "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": - {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', - parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": - {"applyToChildScopes": false}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - stack group create Connection: - keep-alive - Content-Length: - - '1500' - Content-Type: - - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:48.9046739Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n + \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"initializing\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/04791c82-9545-4352-b0b1-0f2801121874?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1129' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:14:48 GMT + - Wed, 21 Jun 2023 21:04:24 GMT expires: - '-1' pragma: @@ -1777,8 +1915,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1797,14 +1933,13 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/04791c82-9545-4352-b0b1-0f2801121874?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/04791c82-9545-4352-b0b1-0f2801121874\",\r\n - \ \"name\": \"04791c82-9545-4352-b0b1-0f2801121874\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n + \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1813,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:05 GMT + - Wed, 21 Jun 2023 21:04:54 GMT expires: - '-1' pragma: @@ -1846,20 +1981,21 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-48-cbe1c\",\r\n - \ \"duration\": \"PT5.4791339S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n + \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -1867,20 +2003,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:48.9046739Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2378' + - '2420' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:06 GMT + - Wed, 21 Jun 2023 21:04:54 GMT expires: - '-1' pragma: @@ -1912,8 +2048,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -1946,39 +2081,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -1986,7 +2124,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -1994,25 +2133,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:07 GMT + - Wed, 21 Jun 2023 21:04:56 GMT expires: - '-1' pragma: @@ -2040,8 +2181,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: @@ -2049,20 +2189,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:33.490185Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:54.0989594Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:34.021481Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:54.4896164Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: cache-control: - no-cache content-length: - - '714' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:11 GMT + - Wed, 21 Jun 2023 21:04:56 GMT expires: - '-1' pragma: @@ -2094,8 +2234,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -2128,39 +2267,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2168,7 +2310,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2176,25 +2319,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:12 GMT + - Wed, 21 Jun 2023 21:04:58 GMT expires: - '-1' pragma: @@ -2222,8 +2367,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 response: @@ -2231,9 +2375,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:51.2566393Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:04:25.9580653Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:51.7879646Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:26.7549909Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2244,7 +2388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:14 GMT + - Wed, 21 Jun 2023 21:04:59 GMT expires: - '-1' pragma: @@ -2277,20 +2421,21 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-14-48-cbe1c\",\r\n - \ \"duration\": \"PT5.4791339S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n + \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -2298,20 +2443,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:14:48.9046739Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2378' + - '2420' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:14 GMT + - Wed, 21 Jun 2023 21:05:00 GMT expires: - '-1' pragma: @@ -2330,7 +2475,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -2358,43 +2503,43 @@ interactions: Connection: - keep-alive Content-Length: - - '1502' + - '1514' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:15:15.8597093Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3a05%3a00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg cache-control: - no-cache content-length: - - '1131' + - '1173' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:15 GMT + - Wed, 21 Jun 2023 21:05:00 GMT expires: - '-1' pragma: @@ -2429,23 +2574,22 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n - \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:15:32 GMT + - Wed, 21 Jun 2023 21:05:00 GMT expires: - '-1' pragma: @@ -2478,14 +2622,13 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n - \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2494,7 +2637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:16:03 GMT + - Wed, 21 Jun 2023 21:05:30 GMT expires: - '-1' pragma: @@ -2527,14 +2670,13 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n - \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2543,7 +2685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:16:33 GMT + - Wed, 21 Jun 2023 21:06:01 GMT expires: - '-1' pragma: @@ -2576,14 +2718,13 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n - \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2592,7 +2733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:17:03 GMT + - Wed, 21 Jun 2023 21:06:31 GMT expires: - '-1' pragma: @@ -2625,14 +2766,13 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n - \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2641,7 +2781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:17:33 GMT + - Wed, 21 Jun 2023 21:07:01 GMT expires: - '-1' pragma: @@ -2674,14 +2814,13 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n - \ \"name\": \"419b49da-4dd9-4037-add4-54cf689a1bb6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2690,7 +2829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:04 GMT + - Wed, 21 Jun 2023 21:07:32 GMT expires: - '-1' pragma: @@ -2723,20 +2862,21 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-15-15-bce4c\",\r\n - \ \"duration\": \"PT2M18.6526334S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n + \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -2744,20 +2884,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-17T15:15:15.8597093Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2387' + - '2429' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:04 GMT + - Wed, 21 Jun 2023 21:07:32 GMT expires: - '-1' pragma: @@ -2789,8 +2929,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -2823,39 +2962,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2863,7 +3005,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2871,25 +3014,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:05 GMT + - Wed, 21 Jun 2023 21:07:33 GMT expires: - '-1' pragma: @@ -2917,8 +3062,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: @@ -2926,9 +3070,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:15:17.7408241Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:05:03.3850369Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:15:18.1001611Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:03.8381721Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -2939,7 +3083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:06 GMT + - Wed, 21 Jun 2023 21:07:34 GMT expires: - '-1' pragma: @@ -2971,20 +3115,21 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-15-15-bce4c\",\r\n - \ \"duration\": \"PT2M18.6526334S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n + \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -2992,20 +3137,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-17T15:14:29.5977893Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-17T15:15:15.8597093Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2387' + - '2429' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:06 GMT + - Wed, 21 Jun 2023 21:07:35 GMT expires: - '-1' pragma: @@ -3039,8 +3184,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -3052,7 +3196,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:18:06 GMT + - Wed, 21 Jun 2023 21:07:36 GMT expires: - '-1' pragma: @@ -3086,8 +3230,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -3101,7 +3244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:08 GMT + - Wed, 21 Jun 2023 21:07:37 GMT expires: - '-1' pragma: @@ -3129,8 +3272,7 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -3146,7 +3288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:09 GMT + - Wed, 21 Jun 2023 21:07:38 GMT expires: - '-1' pragma: @@ -3161,7 +3303,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", @@ -3189,43 +3331,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1564' + - '1576' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:18:10.0313517Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:18:10.0313517Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n },\r\n + \ \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n + \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3a07%3a39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro cache-control: - no-cache content-length: - - '1222' + - '1291' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:09 GMT + - Wed, 21 Jun 2023 21:07:38 GMT expires: - '-1' pragma: @@ -3255,23 +3398,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n - \ \"name\": \"5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n + \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:26 GMT + - Wed, 21 Jun 2023 21:07:38 GMT expires: - '-1' pragma: @@ -3303,14 +3445,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n - \ \"name\": \"5ecbbe1e-2daa-435f-ba69-0f6ac877f7f3\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n + \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3319,7 +3460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:57 GMT + - Wed, 21 Jun 2023 21:08:09 GMT expires: - '-1' pragma: @@ -3351,40 +3492,41 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-18-10-edbf3\",\r\n - \ \"duration\": \"PT32.7615071S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n + \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:18:10.0313517Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1977' + - '2046' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:57 GMT + - Wed, 21 Jun 2023 21:08:10 GMT expires: - '-1' pragma: @@ -3416,8 +3558,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -3431,7 +3572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:18:57 GMT + - Wed, 21 Jun 2023 21:08:10 GMT expires: - '-1' pragma: @@ -3459,65 +3600,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-17T15:18:14.1630065Z","changedTime":"2023-04-17T15:18:14.5903652Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:18:14.4184883Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:18:14.4184883Z"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNj6M4EP0vOe%2fBkI%2fdHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9%2fyKFllpLntwbJdVX713rPq%2b6jbDv2i7van0bfvo21x6s8nd%2fRttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2bqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD%2fBaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2bZ9ErJcyusHz90WNhq4xNYTAfCkLS%2bEyXO262h%2fTw495QTPKWb3xMAgxvxq%2b0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2bTzZd9R%2b%2bpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM%2fiK8hJPx3JPsZs%2flj85mRFmJsc%2f9d%2f4QyfHHyfFesfyu%2fnn0XlVYUh62l1M%2fj7wX20yvUgDi3HnL7i85p%2bIA3F68BcVmIw82ufXB%2f7ehrgWaWv%2fiaemUhJJK9Pc6i8CoHsFpJFXrAe5h%2fk2qB7fUxyOaJ648qWb7MkjzQlLcGyqx%2f7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13%2f9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC%2f1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP%2fbFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2blZieYBz7uoybD7%2bzLyoL8zUnmn97cgrQJy%2bXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ%2fulVs%2fpVPj%2bPfvz4Fw%3d%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '1993' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 17 Apr 2023 15:19:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNj6M4EP0vOe/BkI/dHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9/yKFllpLntwbJdVX713rPq%2B6jbDv2i7van0bfvo21x6s8nd/RttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2BqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD/BaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2BZ9ErJcyusHz90WNhq4xNYTAfCkLS%2BEyXO262h/Tw495QTPKWb3xMAgxvxq%2B0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2BTzZd9R%2B%2BpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM/iK8hJPx3JPsZs/lj85mRFmJsc/9d/4QyfHHyfFesfyu/nn0XlVYUh62l1M/j7wX20yvUgDi3HnL7i85p%2BIA3F68BcVmIw82ufXB/7ehrgWaWv/iaemUhJJK9Pc6i8CoHsFpJFXrAe5h/k2qB7fUxyOaJ648qWb7MkjzQlLcGyqx/7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13/9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC/1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP/bFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2BlZieYBz7uoybD7%2BzLyoL8zUnmn97cgrQJy%2BXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ/ulVs/pVPj%2BPfvz4Fw%3D%3D - response: - body: - string: '{"value":[]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:07:42.5534309Z","changedTime":"2023-06-21T21:07:42.7915151Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:07:42.6352598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:07:42.6352598Z"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '670' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:19:01 GMT + - Wed, 21 Jun 2023 21:08:10 GMT expires: - '-1' pragma: @@ -3545,8 +3642,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -3560,7 +3656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:19:01 GMT + - Wed, 21 Jun 2023 21:08:11 GMT expires: - '-1' pragma: @@ -3588,40 +3684,41 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-18-10-edbf3\",\r\n - \ \"duration\": \"PT32.7615071S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n + \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:18:10.0313517Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1977' + - '2046' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:19:02 GMT + - Wed, 21 Jun 2023 21:08:12 GMT expires: - '-1' pragma: @@ -3640,7 +3737,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -3658,41 +3755,40 @@ interactions: Connection: - keep-alive Content-Length: - - '677' + - '689' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:19:03.5194311Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3a08%3a13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc cache-control: - no-cache content-length: - - '1062' + - '1076' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:19:02 GMT + - Wed, 21 Jun 2023 21:08:13 GMT expires: - '-1' pragma: @@ -3726,23 +3822,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:19:21 GMT + - Wed, 21 Jun 2023 21:08:13 GMT expires: - '-1' pragma: @@ -3774,14 +3869,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3790,7 +3884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:19:51 GMT + - Wed, 21 Jun 2023 21:08:43 GMT expires: - '-1' pragma: @@ -3822,14 +3916,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3838,7 +3931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:20:21 GMT + - Wed, 21 Jun 2023 21:09:14 GMT expires: - '-1' pragma: @@ -3870,14 +3963,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3886,7 +3978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:20:51 GMT + - Wed, 21 Jun 2023 21:09:44 GMT expires: - '-1' pragma: @@ -3918,14 +4010,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3934,7 +4025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:21:21 GMT + - Wed, 21 Jun 2023 21:10:15 GMT expires: - '-1' pragma: @@ -3966,14 +4057,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3982,7 +4072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:21:52 GMT + - Wed, 21 Jun 2023 21:10:45 GMT expires: - '-1' pragma: @@ -4014,23 +4104,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n - \ \"name\": \"530b1066-dc77-4c41-baee-1861bf7cd905\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '268' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:22 GMT + - Wed, 21 Jun 2023 21:11:15 GMT expires: - '-1' pragma: @@ -4062,39 +4151,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-19-03-89445\",\r\n - \ \"duration\": \"PT3M17.4715886S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-17T15:19:03.5194311Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '1876' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:22 GMT + - Wed, 21 Jun 2023 21:11:46 GMT expires: - '-1' pragma: @@ -4116,38 +4188,59 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack group create Connection: - keep-alive ParameterSetName: - - -g + - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n + \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '1889' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:22 GMT + - Wed, 21 Jun 2023 21:11:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -4169,22 +4262,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNj6M4EP0vOe%2fBkI%2fdHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9%2fyKFllpLntwbJdVX713rPq%2b6jbDv2i7van0bfvo21x6s8nd%2fRttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2bqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD%2fBaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2bZ9ErJcyusHz90WNhq4xNYTAfCkLS%2bEyXO262h%2fTw495QTPKWb3xMAgxvxq%2b0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2bTzZd9R%2b%2bpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM%2fiK8hJPx3JPsZs%2flj85mRFmJsc%2f9d%2f4QyfHHyfFesfyu%2fnn0XlVYUh62l1M%2fj7wX20yvUgDi3HnL7i85p%2bIA3F68BcVmIw82ufXB%2f7ehrgWaWv%2fiaemUhJJK9Pc6i8CoHsFpJFXrAe5h%2fk2qB7fUxyOaJ648qWb7MkjzQlLcGyqx%2f7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13%2f9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC%2f1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP%2fbFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2blZieYBz7uoybD7%2bzLyoL8zUnmn97cgrQJy%2bXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ%2fulVs%2fpVPj%2bPfvz4Fw%3d%3d"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1335' + - '288' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:24 GMT + - Wed, 21 Jun 2023 21:11:47 GMT expires: - '-1' pragma: @@ -4202,7 +4294,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -4212,10 +4304,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNj6M4EP0vOe/BkI/dHqkPa6A6sImJDWUTbgTSHQihWwnp0BnNf9/yKFllpLntwbJdVX713rPq%2B6jbDv2i7van0bfvo21x6s8nd/RttP2Kznm2Y6mBr8LVX2HzXptxX4ad%2BqT7OfPCGa0j7tsg7qYHwSZTqbmLwWmyxmqxQd1LBD/BaLxKWYOtnC0Tgbhfzpbpukm0MHETNgnqVdysHZHiEDrgq%2BZ9ErJcyusHz90WNhq4xNYTAfCkLS%2BEyXO262h/Tw495QTPKWb3xMAgxvxq%2B0qjKQZAnCBGmKt51VeMMDBkFiNB0Am%2BTzZd9R%2B%2BpF6FIxrJogjd3L7vkhebj7hs8kv5AnNj4PiA71PfbDvPh4KwJYPWYtMer3XlJu4Tvb3z0zxlODbELe9gTHWRbJTtEck0dDfmaXjkhwhj7SshcUhLi22qMLf7ofIKM/iK8hJPx3JPsZs/lj85mRFmJsc/9d/4QyfHHyfFesfyu/nn0XlVYUh62l1M/j7wX20yvUgDi3HnL7i85p%2BIA3F68BcVmIw82ufXB/7ehrgWaWv/iaemUhJJK9Pc6i8CoHsFpJFXrAe5h/k2qB7fUxyOaJ648qWb7MkjzQlLcGyqx/7kfzvVbv5lse78FYNAZS15VR5z9nZcWm13/9yKF0EU0Z8q4uhVzPFyd6gf3yODlUIxpxovZxH81KBJPzq0lPcPYaxSpwzrgeYh2m0OVWvnYetc6o1p77NxEbgcVLqfLBk6cQqeaC/1AmwNTG7zc6tpeYxyHPstKH2pXzOnCjv2PPpjVJxP/bFo68JO5v8cS2NwWmTCfvtvx1IkIkJnPVvWIlL410w0SGMZNIjiJW7eGtVyP95DIq7RoqKvJOu7JHj7NFnErX0FQrMi%2BlZieYBz7uoybD7%2BzLyoL8zUnmn97cgrQJy%2BXVWK0yWGLllxsjXrbPdrDQZT5ZeTGDVQ/ulVs/pVPj%2BPfvz4Fw%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: string: '{"value":[]}' @@ -4227,7 +4318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:25 GMT + - Wed, 21 Jun 2023 21:11:47 GMT expires: - '-1' pragma: @@ -4253,23 +4344,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:13:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '55598' + - '74728' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:25 GMT + - Wed, 21 Jun 2023 21:11:48 GMT expires: - '-1' pragma: @@ -4297,16 +4387,16 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-19-03-89445\",\r\n - \ \"duration\": \"PT3M17.4715886S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n + \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4316,20 +4406,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-17T15:18:10.0313517Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-17T15:19:03.5194311Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1876' + - '1889' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:26 GMT + - Wed, 21 Jun 2023 21:11:48 GMT expires: - '-1' pragma: @@ -4363,8 +4453,7 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -4376,7 +4465,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:22:26 GMT + - Wed, 21 Jun 2023 21:11:49 GMT expires: - '-1' pragma: @@ -4408,8 +4497,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -4421,11 +4509,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:22:28 GMT + - Wed, 21 Jun 2023 21:11:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4451,10 +4539,49 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 21 Jun 2023 21:11:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4464,7 +4591,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:22:44 GMT + - Wed, 21 Jun 2023 21:12:08 GMT expires: - '-1' pragma: @@ -4494,8 +4621,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -4509,7 +4635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:45 GMT + - Wed, 21 Jun 2023 21:12:10 GMT expires: - '-1' pragma: @@ -4537,8 +4663,7 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -4554,7 +4679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:46 GMT + - Wed, 21 Jun 2023 21:12:10 GMT expires: - '-1' pragma: @@ -4569,7 +4694,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/deployments", @@ -4594,42 +4719,42 @@ interactions: Connection: - keep-alive Content-Length: - - '1330' + - '1342' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:22:47.1411809Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:22:47.1411809Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 cache-control: - no-cache content-length: - - '1144' + - '1186' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:22:46 GMT + - Wed, 21 Jun 2023 21:12:10 GMT expires: - '-1' pragma: @@ -4659,23 +4784,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n - \ \"name\": \"2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n + \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:04 GMT + - Wed, 21 Jun 2023 21:12:11 GMT expires: - '-1' pragma: @@ -4707,14 +4831,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n - \ \"name\": \"2b674fbd-3731-401a-8578-c5776f07f8c6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n + \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4723,7 +4846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:34 GMT + - Wed, 21 Jun 2023 21:12:41 GMT expires: - '-1' pragma: @@ -4755,37 +4878,38 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-22-47-170ae\",\r\n - \ \"duration\": \"PT31.060408S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n + \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:22:47.1411809Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1615' + - '1658' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:34 GMT + - Wed, 21 Jun 2023 21:12:41 GMT expires: - '-1' pragma: @@ -4817,8 +4941,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -4832,7 +4955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:35 GMT + - Wed, 21 Jun 2023 21:12:42 GMT expires: - '-1' pragma: @@ -4860,37 +4983,38 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-22-47-170ae\",\r\n - \ \"duration\": \"PT31.060408S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n + \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:22:47.1411809Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1615' + - '1658' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:35 GMT + - Wed, 21 Jun 2023 21:12:43 GMT expires: - '-1' pragma: @@ -4909,7 +5033,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -4927,41 +5051,40 @@ interactions: Connection: - keep-alive Content-Length: - - '677' + - '689' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:23:36.4146692Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als cache-control: - no-cache content-length: - - '1062' + - '1077' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:35 GMT + - Wed, 21 Jun 2023 21:12:44 GMT expires: - '-1' pragma: @@ -4995,14 +5118,60 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Jun 2023 21:12:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n - \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5011,7 +5180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:23:53 GMT + - Wed, 21 Jun 2023 21:13:14 GMT expires: - '-1' pragma: @@ -5043,14 +5212,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n - \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5059,7 +5227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:24:23 GMT + - Wed, 21 Jun 2023 21:13:44 GMT expires: - '-1' pragma: @@ -5091,14 +5259,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n - \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5107,7 +5274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:24:54 GMT + - Wed, 21 Jun 2023 21:14:15 GMT expires: - '-1' pragma: @@ -5139,14 +5306,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n - \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5155,7 +5321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:25:24 GMT + - Wed, 21 Jun 2023 21:14:45 GMT expires: - '-1' pragma: @@ -5187,14 +5353,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n - \ \"name\": \"334ca4c8-6803-4b15-92c8-65e0a285e13c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5203,7 +5368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:25:54 GMT + - Wed, 21 Jun 2023 21:15:15 GMT expires: - '-1' pragma: @@ -5235,16 +5400,16 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-23-36-df8d6\",\r\n - \ \"duration\": \"PT2M16.5672394S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n + \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5253,20 +5418,20 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-17T15:23:36.4146692Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1654' + - '1669' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:25:54 GMT + - Wed, 21 Jun 2023 21:15:16 GMT expires: - '-1' pragma: @@ -5296,23 +5461,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:13:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '55598' + - '74728' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:25:54 GMT + - Wed, 21 Jun 2023 21:15:16 GMT expires: - '-1' pragma: @@ -5340,16 +5504,16 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-23-36-df8d6\",\r\n - \ \"duration\": \"PT2M16.5672394S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n + \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5358,20 +5522,20 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-17T15:22:47.1411809Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-17T15:23:36.4146692Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1654' + - '1669' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:25:56 GMT + - Wed, 21 Jun 2023 21:15:18 GMT expires: - '-1' pragma: @@ -5405,8 +5569,7 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -5418,7 +5581,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:25:56 GMT + - Wed, 21 Jun 2023 21:15:18 GMT expires: - '-1' pragma: @@ -5448,8 +5611,7 @@ interactions: ParameterSetName: - --name -g --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -5465,7 +5627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:25:56 GMT + - Wed, 21 Jun 2023 21:15:18 GMT expires: - '-1' pragma: @@ -5503,15 +5665,15 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:25:58 GMT + - Wed, 21 Jun 2023 21:15:22 GMT expires: - - Mon, 17 Apr 2023 15:25:58 GMT + - Wed, 21 Jun 2023 21:15:22 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 server: - Kestrel strict-transport-security: @@ -5536,28 +5698,91 @@ interactions: uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/98925381","assets_url":"https://api.github.com/repos/Azure/bicep/releases/98925381/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/98925381/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.16.2","id":98925381,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4F5XtF","tag_name":"v0.16.2","target_commitish":"main","name":"v0.16.2","draft":false,"prerelease":false,"created_at":"2023-04-05T15:27:33Z","published_at":"2023-04-11T19:26:02Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196329","id":103196329,"node_id":"RA_kwDOD7S9ks4GJqap","name":"Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27360858,"download_count":3,"created_at":"2023-04-11T14:16:45Z","updated_at":"2023-04-11T14:16:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196317","id":103196317,"node_id":"RA_kwDOD7S9ks4GJqad","name":"Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27766844,"download_count":3,"created_at":"2023-04-11T14:16:34Z","updated_at":"2023-04-11T14:16:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196376","id":103196376,"node_id":"RA_kwDOD7S9ks4GJqbY","name":"Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27643258,"download_count":2,"created_at":"2023-04-11T14:17:11Z","updated_at":"2023-04-11T14:17:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196341","id":103196341,"node_id":"RA_kwDOD7S9ks4GJqa1","name":"Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28087538,"download_count":4,"created_at":"2023-04-11T14:16:53Z","updated_at":"2023-04-11T14:16:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196295","id":103196295,"node_id":"RA_kwDOD7S9ks4GJqaH","name":"Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27640274,"download_count":4,"created_at":"2023-04-11T14:16:25Z","updated_at":"2023-04-11T14:16:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196274","id":103196274,"node_id":"RA_kwDOD7S9ks4GJqZy","name":"Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27964739,"download_count":5,"created_at":"2023-04-11T14:16:14Z","updated_at":"2023-04-11T14:16:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196098","id":103196098,"node_id":"RA_kwDOD7S9ks4GJqXC","name":"Azure.Bicep.Core.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":573156,"download_count":3,"created_at":"2023-04-11T14:14:38Z","updated_at":"2023-04-11T14:14:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196103","id":103196103,"node_id":"RA_kwDOD7S9ks4GJqXH","name":"Azure.Bicep.Core.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":184789,"download_count":3,"created_at":"2023-04-11T14:14:40Z","updated_at":"2023-04-11T14:14:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196109","id":103196109,"node_id":"RA_kwDOD7S9ks4GJqXN","name":"Azure.Bicep.Decompiler.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":98381,"download_count":4,"created_at":"2023-04-11T14:14:43Z","updated_at":"2023-04-11T14:14:43Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196113","id":103196113,"node_id":"RA_kwDOD7S9ks4GJqXR","name":"Azure.Bicep.Decompiler.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23934,"download_count":3,"created_at":"2023-04-11T14:14:45Z","updated_at":"2023-04-11T14:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196120","id":103196120,"node_id":"RA_kwDOD7S9ks4GJqXY","name":"Azure.Bicep.MSBuild.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45560,"download_count":3,"created_at":"2023-04-11T14:14:47Z","updated_at":"2023-04-11T14:14:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196124","id":103196124,"node_id":"RA_kwDOD7S9ks4GJqXc","name":"Azure.Bicep.MSBuild.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6942,"download_count":3,"created_at":"2023-04-11T14:14:49Z","updated_at":"2023-04-11T14:14:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196129","id":103196129,"node_id":"RA_kwDOD7S9ks4GJqXh","name":"Azure.Bicep.RegistryModuleTool.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23603320,"download_count":5,"created_at":"2023-04-11T14:14:51Z","updated_at":"2023-04-11T14:14:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196139","id":103196139,"node_id":"RA_kwDOD7S9ks4GJqXr","name":"Azure.Bicep.RegistryModuleTool.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":200972,"download_count":3,"created_at":"2023-04-11T14:14:55Z","updated_at":"2023-04-11T14:14:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196179","id":103196179,"node_id":"RA_kwDOD7S9ks4GJqYT","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25104436,"download_count":6,"created_at":"2023-04-11T14:15:15Z","updated_at":"2023-04-11T14:15:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195975","id":103195975,"node_id":"RA_kwDOD7S9ks4GJqVH","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":56867505,"download_count":25,"created_at":"2023-04-11T14:13:31Z","updated_at":"2023-04-11T14:13:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196001","id":103196001,"node_id":"RA_kwDOD7S9ks4GJqVh","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57090165,"download_count":446,"created_at":"2023-04-11T14:13:48Z","updated_at":"2023-04-11T14:13:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195965","id":103195965,"node_id":"RA_kwDOD7S9ks4GJqU9","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57254260,"download_count":4583,"created_at":"2023-04-11T14:13:21Z","updated_at":"2023-04-11T14:13:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196044","id":103196044,"node_id":"RA_kwDOD7S9ks4GJqWM","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57069200,"download_count":193,"created_at":"2023-04-11T14:14:12Z","updated_at":"2023-04-11T14:14:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196028","id":103196028,"node_id":"RA_kwDOD7S9ks4GJqV8","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57479968,"download_count":993,"created_at":"2023-04-11T14:14:00Z","updated_at":"2023-04-11T14:14:03Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196077","id":103196077,"node_id":"RA_kwDOD7S9ks4GJqWt","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":24119368,"download_count":363,"created_at":"2023-04-11T14:14:30Z","updated_at":"2023-04-11T14:14:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196207","id":103196207,"node_id":"RA_kwDOD7S9ks4GJqYv","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56920088,"download_count":3,"created_at":"2023-04-11T14:15:26Z","updated_at":"2023-04-11T14:15:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196090","id":103196090,"node_id":"RA_kwDOD7S9ks4GJqW6","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56797064,"download_count":5379,"created_at":"2023-04-11T14:14:33Z","updated_at":"2023-04-11T14:14:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196241","id":103196241,"node_id":"RA_kwDOD7S9ks4GJqZR","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":45804447,"download_count":4,"created_at":"2023-04-11T14:15:49Z","updated_at":"2023-04-11T14:15:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196224","id":103196224,"node_id":"RA_kwDOD7S9ks4GJqZA","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":37789327,"download_count":90,"created_at":"2023-04-11T14:15:39Z","updated_at":"2023-04-11T14:15:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.16.2","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.16.2","body":"## - Bug fixes and features\r\n\r\nBicep team:\r\n* Use the correct bitwise operator - for combining flags in JSON model loader (#10325)"}' - headers: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files + (bicep-style parameters file). This includes support for:\r\n - support for + expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - + supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group + create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate + bicepparam file from given Bicep file (#10595)\r\n - Buildparams command + vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env + variables in .bicepparam files (#10726)\r\n - Support bicepparam files for + VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - + Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming + modules from ACR (#10747)\r\n* Bicep build command linter provides a structured + output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* + Mark overload matches as PotentialMatches if any argument is of type ''any'' + (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* + Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from + symbol resolution logic (#10626)\r\n* Derive operation return type from operands + (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in + addition to metadata.json (#10860)\r\n* Add intellisense support for param + and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI + by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument + is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries + (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* + Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' + headers: + accept-ranges: + - bytes + connection: + - keep-alive content-length: - - '35354' - content-md5: - - 2LXlN/iJTiK28Is0vPc+lQ== + - '41660' content-type: - application/octet-stream date: - - Mon, 17 Apr 2023 15:25:58 GMT + - Wed, 21 Jun 2023 21:15:22 GMT etag: - - '0x8DB3F551F2D15C5' + - '0x8DB7236999A3CDE' last-modified: - - Mon, 17 Apr 2023 15:05:03 GMT + - Wed, 21 Jun 2023 09:05:03 GMT x-azure-ref: - - 0B2U9ZAAAAAAti0kXDWD7QKY5r6eH1as0UEhMMzBFREdFMDMxNwA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= - x-azure-ref-originshield: - - 0B2U9ZAAAAADpN5x+rv/MS4z+JSAhlSZuRVdSMzBFREdFMTUxNgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= + - 20230621T211522Z-eqz6fa3b6p5dh9wf38v0fptumg00000001g000000000a11t x-cache: - - TCP_MISS + - TCP_HIT x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -5568,9 +5793,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.15.31.15270", "templateHash": "8627291063605171044"}}, "parameters": {"location": + "0.17.1.54307", "templateHash": "6417493495661768720"}}, "parameters": {"location": {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", @@ -5589,43 +5814,43 @@ interactions: Connection: - keep-alive Content-Length: - - '898' + - '909' Content-Type: - application/json ParameterSetName: - --name -g --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n \"kind\": - {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:26:01.7240555Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:26:01.7240555Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": + \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\",\r\n \"type\": \"string\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:15:28.9477407Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3a15%3a29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU cache-control: - no-cache content-length: - - '1183' + - '1252' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:26:01 GMT + - Wed, 21 Jun 2023 21:15:28 GMT expires: - '-1' pragma: @@ -5655,23 +5880,22 @@ interactions: ParameterSetName: - --name -g --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n - \ \"name\": \"57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n + \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:26:19 GMT + - Wed, 21 Jun 2023 21:15:28 GMT expires: - '-1' pragma: @@ -5703,14 +5927,13 @@ interactions: ParameterSetName: - --name -g --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n - \ \"name\": \"57d10d9e-5c15-4271-842e-a58ab2ebc5ac\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n + \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5719,7 +5942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:26:49 GMT + - Wed, 21 Jun 2023 21:15:59 GMT expires: - '-1' pragma: @@ -5751,38 +5974,39 @@ interactions: ParameterSetName: - --name -g --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-26-01-7caa2\",\r\n - \ \"duration\": \"PT30.216154S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n + \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n - \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n - \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeifptsq2nbgkiw\"\r\n + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:26:01.7240555Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:26:01.7240555Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1735' + - '1805' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:26:49 GMT + - Wed, 21 Jun 2023 21:16:00 GMT expires: - '-1' pragma: @@ -5814,38 +6038,39 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-04-17-15-26-01-7caa2\",\r\n - \ \"duration\": \"PT30.216154S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n + \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n - \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n - \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeifptsq2nbgkiw\"\r\n + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:26:01.7240555Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:26:01.7240555Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1735' + - '1805' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:26:50 GMT + - Wed, 21 Jun 2023 21:16:00 GMT expires: - '-1' pragma: @@ -5879,8 +6104,7 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -5892,7 +6116,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:26:50 GMT + - Wed, 21 Jun 2023 21:16:01 GMT expires: - '-1' pragma: @@ -5924,8 +6148,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -5937,11 +6160,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:26:52 GMT + - Wed, 21 Jun 2023 21:16:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -5967,10 +6190,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -5980,11 +6202,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:27:07 GMT + - Wed, 21 Jun 2023 21:16:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6008,10 +6230,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6021,11 +6242,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:27:23 GMT + - Wed, 21 Jun 2023 21:16:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6049,10 +6270,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6062,11 +6282,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:27:38 GMT + - Wed, 21 Jun 2023 21:16:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6090,10 +6310,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6103,11 +6322,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:27:53 GMT + - Wed, 21 Jun 2023 21:16:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6131,10 +6350,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6144,11 +6362,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:28:09 GMT + - Wed, 21 Jun 2023 21:17:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6172,10 +6390,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6185,11 +6402,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:28:24 GMT + - Wed, 21 Jun 2023 21:17:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6213,10 +6430,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6226,11 +6442,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:28:39 GMT + - Wed, 21 Jun 2023 21:17:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6254,10 +6470,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6267,11 +6482,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:28:54 GMT + - Wed, 21 Jun 2023 21:17:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6295,10 +6510,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENjZGRjNGNzg4NUIyQzkyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6308,7 +6522,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:29:09 GMT + - Wed, 21 Jun 2023 21:18:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 09d15982e84..819d8a9dc82 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -13,8 +13,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -30,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:47:38 GMT + - Thu, 22 Jun 2023 01:08:22 GMT expires: - '-1' pragma: @@ -58,8 +57,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: @@ -75,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:47:39 GMT + - Thu, 22 Jun 2023 01:08:22 GMT expires: - '-1' pragma: @@ -107,17 +105,16 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:41.2378552Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:24.5090807Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:41.2378552Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:24.5090807Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -128,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:47:41 GMT + - Thu, 22 Jun 2023 01:08:24 GMT expires: - '-1' pragma: @@ -168,8 +165,7 @@ interactions: ParameterSetName: - --name --version --location --template-file --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -187,21 +183,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:42.878524Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:42.878524Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1476' + - '1478' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:47:43 GMT + - Thu, 22 Jun 2023 01:08:26 GMT expires: - '-1' pragma: @@ -231,8 +227,7 @@ interactions: ParameterSetName: - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -247,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:47:43 GMT + - Thu, 22 Jun 2023 01:08:26 GMT expires: - '-1' pragma: @@ -288,8 +283,7 @@ interactions: ParameterSetName: - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -300,26 +294,27 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T14:47:43.9972279Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:43.9972279Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:27.423522Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1914e2a0-450d-441b-90e6-5053910cd635?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3a08%3a28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw cache-control: - no-cache content-length: - - '1222' + - '1274' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:47:43 GMT + - Thu, 22 Jun 2023 01:08:27 GMT expires: - '-1' pragma: @@ -349,14 +344,60 @@ interactions: ParameterSetName: - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n + \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:08:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deny-settings-mode --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1914e2a0-450d-441b-90e6-5053910cd635?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1914e2a0-450d-441b-90e6-5053910cd635\",\r\n - \ \"name\": \"1914e2a0-450d-441b-90e6-5053910cd635\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n + \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -365,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:01 GMT + - Thu, 22 Jun 2023 01:08:57 GMT expires: - '-1' pragma: @@ -397,8 +438,7 @@ interactions: ParameterSetName: - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -406,32 +446,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-47-44-938c1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.923729S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:43.9972279Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:43.9972279Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1666' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:01 GMT + - Thu, 22 Jun 2023 01:08:58 GMT expires: - '-1' pragma: @@ -463,8 +503,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -472,32 +511,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-47-44-938c1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.923729S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:43.9972279Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:43.9972279Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1666' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:02 GMT + - Thu, 22 Jun 2023 01:08:59 GMT expires: - '-1' pragma: @@ -531,8 +570,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -544,7 +582,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:48:03 GMT + - Thu, 22 Jun 2023 01:09:00 GMT expires: - '-1' pragma: @@ -556,7 +594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -574,8 +612,7 @@ interactions: ParameterSetName: - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -590,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:02 GMT + - Thu, 22 Jun 2023 01:09:00 GMT expires: - '-1' pragma: @@ -618,8 +655,7 @@ interactions: ParameterSetName: - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 response: @@ -637,21 +673,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:47:42.878524Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:47:42.878524Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1476' + - '1478' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:03 GMT + - Thu, 22 Jun 2023 01:09:01 GMT expires: - '-1' pragma: @@ -691,8 +727,7 @@ interactions: ParameterSetName: - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -702,28 +737,27 @@ interactions: \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {},\r\n \"bar\": {}\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:04.590335Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:04.590335Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9aa98320-084f-405f-9efb-958dfc8525f7?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E cache-control: - no-cache content-length: - - '1451' + - '1389' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:04 GMT + - Thu, 22 Jun 2023 01:09:02 GMT expires: - '-1' pragma: @@ -735,7 +769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -753,14 +787,60 @@ interactions: ParameterSetName: - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n + \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:09:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-spec --deny-settings-mode --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9aa98320-084f-405f-9efb-958dfc8525f7?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9aa98320-084f-405f-9efb-958dfc8525f7\",\r\n - \ \"name\": \"9aa98320-084f-405f-9efb-958dfc8525f7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n + \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -769,7 +849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:22 GMT + - Thu, 22 Jun 2023 01:09:32 GMT expires: - '-1' pragma: @@ -801,8 +881,7 @@ interactions: ParameterSetName: - --name --location --template-spec --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -810,33 +889,34 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-04-c57d2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.0330783S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"String\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"String\"\r\n }\r\n },\r\n \"templateLink\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:04.590335Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:04.590335Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1843' + - '1898' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:22 GMT + - Thu, 22 Jun 2023 01:09:32 GMT expires: - '-1' pragma: @@ -868,8 +948,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -877,33 +956,34 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-04-c57d2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.0330783S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"templateLink\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"String\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"String\"\r\n }\r\n },\r\n \"templateLink\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:04.590335Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:04.590335Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1843' + - '1898' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:22 GMT + - Thu, 22 Jun 2023 01:09:34 GMT expires: - '-1' pragma: @@ -937,8 +1017,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -950,7 +1029,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:48:23 GMT + - Thu, 22 Jun 2023 01:09:34 GMT expires: - '-1' pragma: @@ -981,8 +1060,7 @@ interactions: - --name --location --template-file --deployment-resource-group --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -997,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:23 GMT + - Thu, 22 Jun 2023 01:09:34 GMT expires: - '-1' pragma: @@ -1039,8 +1117,7 @@ interactions: - --name --location --template-file --deployment-resource-group --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1051,26 +1128,27 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T14:48:24.2911292Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:24.2911292Z\"\r\n + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:35.8967059Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 cache-control: - no-cache content-length: - - '1270' + - '1324' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:24 GMT + - Thu, 22 Jun 2023 01:09:35 GMT expires: - '-1' pragma: @@ -1101,14 +1179,61 @@ interactions: - --name --location --template-file --deployment-resource-group --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n + \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:09:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deployment-resource-group --deny-settings-mode + --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9\",\r\n - \ \"name\": \"ff6cbaf6-3eb1-4868-bbfc-8b053746e9d9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n + \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1117,7 +1242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:41 GMT + - Thu, 22 Jun 2023 01:10:07 GMT expires: - '-1' pragma: @@ -1150,8 +1275,7 @@ interactions: - --name --location --template-file --deployment-resource-group --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1159,32 +1283,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-24-b7f04\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.6894468S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:24.2911292Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:24.2911292Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1710' + - '1764' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:41 GMT + - Thu, 22 Jun 2023 01:10:07 GMT expires: - '-1' pragma: @@ -1216,8 +1340,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1225,32 +1348,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-24-b7f04\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.6894468S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:24.2911292Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:24.2911292Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1710' + - '1764' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:42 GMT + - Thu, 22 Jun 2023 01:10:08 GMT expires: - '-1' pragma: @@ -1284,8 +1407,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1297,7 +1419,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:48:42 GMT + - Thu, 22 Jun 2023 01:10:08 GMT expires: - '-1' pragma: @@ -1309,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -1328,8 +1450,7 @@ interactions: - --name --location --template-file --deny-settings-mode --deployment-resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1344,7 +1465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:43 GMT + - Thu, 22 Jun 2023 01:10:08 GMT expires: - '-1' pragma: @@ -1358,11 +1479,162 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://aka.ms/BicepLatestRelease + response: + body: + string: '' + headers: + cache-control: + - max-age=0, no-cache, no-store + connection: + - keep-alive + content-length: + - '0' + date: + - Thu, 22 Jun 2023 01:10:10 GMT + expires: + - Thu, 22 Jun 2023 01:10:10 GMT + location: + - https://downloads.bicep.azure.com/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://downloads.bicep.azure.com/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":14,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":61,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":640,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":8677,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":271,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1024,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1743,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":9090,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":144,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files + (bicep-style parameters file). This includes support for:\r\n - support for + expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - + supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group + create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate + bicepparam file from given Bicep file (#10595)\r\n - Buildparams command + vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env + variables in .bicepparam files (#10726)\r\n - Support bicepparam files for + VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - + Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming + modules from ACR (#10747)\r\n* Bicep build command linter provides a structured + output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* + Mark overload matches as PotentialMatches if any argument is of type ''any'' + (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* + Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from + symbol resolution logic (#10626)\r\n* Derive operation return type from operands + (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in + addition to metadata.json (#10860)\r\n* Add intellisense support for param + and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI + by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument + is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries + (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* + Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' + headers: + content-length: + - '41661' + content-md5: + - l4ATFhxnZwZ7nJNCUpaQlQ== + content-type: + - application/octet-stream + date: + - Thu, 22 Jun 2023 01:10:11 GMT + etag: + - '0x8DB72BCB58C32B9' + last-modified: + - Thu, 22 Jun 2023 01:05:02 GMT + x-azure-ref: + - 0c5+TZAAAAAAFgvQ5abb+QrplYS+mwDHCTUlBRURHRTIyMjEANTY3YTBjMmEtNTdjOS00YmExLTk2MzUtMDg2ZTBiZWVjMTFh + x-azure-ref-originshield: + - 0c5+TZAAAAABngyLkP1kHQpyxmisRxOPqTU5aMjIxMDYwNjExMDIzADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + x-cache: + - TCP_REMOTE_HIT + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + status: + code: 200 + message: OK - request: body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.15.31.15270", "templateHash": "6048262845766178169"}}, "parameters": {"location": + "0.17.1.54307", "templateHash": "991381235984945273"}}, "parameters": {"location": {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": @@ -1381,15 +1653,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1066' + - '1064' Content-Type: - application/json ParameterSetName: - --name --location --template-file --deny-settings-mode --deployment-resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1403,21 +1674,67 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T14:48:45.9834666Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:45.9834666Z\"\r\n + \"2023-06-22T01:10:16.8403093Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c?api-version=2022-08-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + cache-control: + - no-cache + content-length: + - '1165' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:10:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n + \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"initializing\"\r\n}" + headers: cache-control: - no-cache content-length: - - '1165' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:48:46 GMT + - Thu, 22 Jun 2023 01:10:17 GMT expires: - '-1' pragma: @@ -1426,13 +1743,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1448,14 +1767,13 @@ interactions: - --name --location --template-file --deny-settings-mode --deployment-resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c\",\r\n - \ \"name\": \"d5a6aa7b-dc3b-4900-9282-cc2e7fe4e70c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n + \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1464,7 +1782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:03 GMT + - Thu, 22 Jun 2023 01:10:48 GMT expires: - '-1' pragma: @@ -1497,8 +1815,7 @@ interactions: - --name --location --template-file --deny-settings-mode --deployment-resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1506,9 +1823,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-46-888c8\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT10.7818268S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1518,20 +1835,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:45.9834666Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:45.9834666Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1953' + - '1952' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:03 GMT + - Thu, 22 Jun 2023 01:10:48 GMT expires: - '-1' pragma: @@ -1563,8 +1880,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1572,9 +1888,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-48-46-888c8\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT10.7818268S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1584,20 +1900,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:48:45.9834666Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:48:45.9834666Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1953' + - '1952' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:04 GMT + - Thu, 22 Jun 2023 01:10:49 GMT expires: - '-1' pragma: @@ -1631,8 +1947,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1644,7 +1959,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:49:05 GMT + - Thu, 22 Jun 2023 01:10:49 GMT expires: - '-1' pragma: @@ -1656,7 +1971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -1678,8 +1993,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -1693,7 +2007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:06 GMT + - Thu, 22 Jun 2023 01:10:51 GMT expires: - '-1' pragma: @@ -1722,8 +2036,7 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1738,7 +2051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:06 GMT + - Thu, 22 Jun 2023 01:10:51 GMT expires: - '-1' pragma: @@ -1790,8 +2103,7 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1802,26 +2114,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000004\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:07.6453685Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e47a2d7-c693-4524-9964-0868080af07d?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw cache-control: - no-cache content-length: - - '1258' + - '1285' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:07 GMT + - Thu, 22 Jun 2023 01:10:52 GMT expires: - '-1' pragma: @@ -1852,14 +2164,61 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n + \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:10:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e47a2d7-c693-4524-9964-0868080af07d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2e47a2d7-c693-4524-9964-0868080af07d\",\r\n - \ \"name\": \"2e47a2d7-c693-4524-9964-0868080af07d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n + \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1868,7 +2227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:25 GMT + - Thu, 22 Jun 2023 01:11:23 GMT expires: - '-1' pragma: @@ -1901,8 +2260,7 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1910,32 +2268,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-08-42fb4\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.2114975S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:07.6453685Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2113' + - '2140' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:25 GMT + - Thu, 22 Jun 2023 01:11:24 GMT expires: - '-1' pragma: @@ -1968,8 +2327,7 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -1977,32 +2335,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-08-42fb4\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.2114975S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:07.6453685Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2113' + - '2140' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:26 GMT + - Thu, 22 Jun 2023 01:11:24 GMT expires: - '-1' pragma: @@ -2058,8 +2417,7 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -2070,26 +2428,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000005\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:26.842025Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3da1624-5ef4-49e0-808f-2dcef96f9893?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3a11%3a25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs cache-control: - no-cache content-length: - - '1257' + - '1285' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:26 GMT + - Thu, 22 Jun 2023 01:11:25 GMT expires: - '-1' pragma: @@ -2105,7 +2463,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n + \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:11:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -2124,14 +2530,13 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3da1624-5ef4-49e0-808f-2dcef96f9893?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b3da1624-5ef4-49e0-808f-2dcef96f9893\",\r\n - \ \"name\": \"b3da1624-5ef4-49e0-808f-2dcef96f9893\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n + \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2140,7 +2545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:43 GMT + - Thu, 22 Jun 2023 01:11:55 GMT expires: - '-1' pragma: @@ -2173,8 +2578,7 @@ interactions: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -2182,13 +2586,14 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-26-2deba\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT5.7608851S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -2196,20 +2601,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:26.842025Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2571' + - '2599' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:43 GMT + - Thu, 22 Jun 2023 01:11:55 GMT expires: - '-1' pragma: @@ -2241,8 +2646,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -2275,39 +2679,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2315,7 +2722,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2323,25 +2731,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:45 GMT + - Thu, 22 Jun 2023 01:11:58 GMT expires: - '-1' pragma: @@ -2369,8 +2779,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: @@ -2378,9 +2787,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:11.8272791Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:12.2336603Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2391,7 +2800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:46 GMT + - Thu, 22 Jun 2023 01:11:59 GMT expires: - '-1' pragma: @@ -2423,8 +2832,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -2457,39 +2865,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2497,7 +2908,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -2505,25 +2917,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:47 GMT + - Thu, 22 Jun 2023 01:12:01 GMT expires: - '-1' pragma: @@ -2551,8 +2965,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 response: @@ -2560,9 +2973,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:29.6099169Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:11:28.2016155Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:30.1255896Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:28.6235078Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2573,7 +2986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:47 GMT + - Thu, 22 Jun 2023 01:12:01 GMT expires: - '-1' pragma: @@ -2606,8 +3019,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -2615,13 +3027,14 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-26-2deba\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT5.7608851S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -2629,20 +3042,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:26.842025Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2571' + - '2599' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:48 GMT + - Thu, 22 Jun 2023 01:12:03 GMT expires: - '-1' pragma: @@ -2698,8 +3111,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -2710,26 +3122,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-three000006\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n + \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:49.5789242Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3a12%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g cache-control: - no-cache content-length: - - '1260' + - '1287' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:49:49 GMT + - Thu, 22 Jun 2023 01:12:04 GMT expires: - '-1' pragma: @@ -2764,14 +3176,61 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n - \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:12:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2780,7 +3239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:50:06 GMT + - Thu, 22 Jun 2023 01:12:34 GMT expires: - '-1' pragma: @@ -2813,14 +3272,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n - \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2829,7 +3287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:50:36 GMT + - Thu, 22 Jun 2023 01:13:04 GMT expires: - '-1' pragma: @@ -2862,14 +3320,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n - \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2878,7 +3335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:51:07 GMT + - Thu, 22 Jun 2023 01:13:35 GMT expires: - '-1' pragma: @@ -2911,14 +3368,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n - \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2927,7 +3383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:51:37 GMT + - Thu, 22 Jun 2023 01:14:05 GMT expires: - '-1' pragma: @@ -2960,14 +3416,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n - \ \"name\": \"dbcdfc6f-f642-4c13-b6ca-13ed5bf8484d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2976,7 +3431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:07 GMT + - Thu, 22 Jun 2023 01:14:36 GMT expires: - '-1' pragma: @@ -3009,8 +3464,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -3018,13 +3472,14 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-49-c2aab\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M18.4348045S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -3032,20 +3487,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-14T14:49:49.5789242Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2581' + - '2608' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:07 GMT + - Thu, 22 Jun 2023 01:14:36 GMT expires: - '-1' pragma: @@ -3077,8 +3532,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -3111,39 +3565,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -3151,7 +3608,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -3159,25 +3617,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:09 GMT + - Thu, 22 Jun 2023 01:14:38 GMT expires: - '-1' pragma: @@ -3205,8 +3665,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: @@ -3214,9 +3673,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:11.8272791Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:12.2336603Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -3227,7 +3686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:10 GMT + - Thu, 22 Jun 2023 01:14:39 GMT expires: - '-1' pragma: @@ -3259,8 +3718,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -3293,39 +3751,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -3333,7 +3794,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -3341,25 +3803,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:12 GMT + - Thu, 22 Jun 2023 01:14:40 GMT expires: - '-1' pragma: @@ -3387,8 +3851,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: @@ -3396,9 +3859,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:54.1718211Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:12:08.0902158Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:49:55.0155302Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:08.9184105Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3409,7 +3872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:13 GMT + - Thu, 22 Jun 2023 01:14:41 GMT expires: - '-1' pragma: @@ -3441,8 +3904,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -3456,7 +3918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:13 GMT + - Thu, 22 Jun 2023 01:14:43 GMT expires: - '-1' pragma: @@ -3484,22 +3946,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:49:11.8085494Z","changedTime":"2023-04-14T14:49:11.9367465Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:11.8272791Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:11.8272791Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:49:12.2032478Z","changedTime":"2023-04-14T14:49:12.3429638Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:12.2336603Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:12.2336603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:49:54.1471459Z","changedTime":"2023-04-14T14:49:54.2967752Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:54.1718211Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:54.1718211Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:49:54.9775049Z","changedTime":"2023-04-14T14:49:55.1093424Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:49:55.0155302Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:49:55.0155302Z"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke%2ffv1eS99G3fY8PO67ph99%2bjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p%2fbw34bBJO3nC%2bbGI0il%2br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2bHqdeKcT1hZRBS9eaEgFtxBNKVNS%2fISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2bXzWniMQVC6%2bE7N3D4joi7fNjM6N4a%2b3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP%2fhpknsQGuRWdjTEc0zU0uVgIk%2bDtXk43%2fMDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx%2fFHJAjELEd7qf%2bdPOxG%2b9NIbfMfvXb8I%2f5cWUqyn3WWo7x3%2f5brQmbrufuc%2fb7O8ack65PLG%2b4M%2fnM9VQq93%2fCOss4RGl1j%2fRJgBz8tEXJxfbfIlsHsFEvm7%2bnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2b%2fh8ZmNoeIe%2b17iP%2bZmr%2bSqKm49djhpJj37ZQBKu%2fRa1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG%2fCRnult7OhY%2bjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E%2f6uW9er%2b%2f5fIN8xxhJs9ZPQGIc53Yc%2bpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY%2fK2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2blfts%2f0rf95kCPZaA3af3yZxGxoTIT94%2ff3764UprlT1eZw2QBaYBvSe%2fOrIrd72cgmch4M85AU9x%2f%2bKq9%2fVfx%2bfPoj1F17IfXqt1X7tX6j0%2bWMTCpCu7a61%2bfLK44A381Xew5k%2fDXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa%2fy%2byfP%2f%2bAw%3d%3d"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:10:55.6069337Z","changedTime":"2023-06-22T01:10:55.7745704Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:55.6495451Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:55.6495451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:10:56.0163696Z","changedTime":"2023-06-22T01:10:56.2433114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:56.0557146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:56.0557146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:12:08.0639163Z","changedTime":"2023-06-22T01:12:08.2152268Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.0902158Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.0902158Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:12:08.8913791Z","changedTime":"2023-06-22T01:12:09.0903012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.9184105Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.9184105Z"}}]}' headers: cache-control: - no-cache content-length: - - '4210' + - '2695' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:52:15 GMT + - Thu, 22 Jun 2023 01:14:43 GMT expires: - '-1' pragma: @@ -3517,65 +3978,63 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - resource list + - group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke/fv1eS99G3fY8PO67ph99%2BjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p/bw34bBJO3nC%2BbGI0il%2Br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2BHqdeKcT1hZRBS9eaEgFtxBNKVNS/ISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2BXzWniMQVC6%2BE7N3D4joi7fNjM6N4a%2B3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP/hpknsQGuRWdjTEc0zU0uVgIk%2BDtXk43/MDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx/FHJAjELEd7qf%2BdPOxG%2B9NIbfMfvXb8I/5cWUqyn3WWo7x3/5brQmbrufuc/b7O8ack65PLG%2B4M/nM9VQq93/COss4RGl1j/RJgBz8tEXJxfbfIlsHsFEvm7%2BnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2B/h8ZmNoeIe%2B17iP%2BZmr%2BSqKm49djhpJj37ZQBKu/Ra1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG/CRnult7OhY%2BjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E/6uW9er%2B/5fIN8xxhJs9ZPQGIc53Yc%2BpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY/K2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2Blfts/0rf95kCPZaA3af3yZxGxoTIT94/f3764UprlT1eZw2QBaYBvSe/OrIrd72cgmch4M85AU9x/%2BKq9/Vfx%2BfPoj1F17IfXqt1X7tX6j0%2BWMTCpCu7a61%2BfLK44A381Xew5k/DXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa/y%2ByfP/%2BAw%3D%3D + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache content-length: - - '12' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 14:52:15 GMT + - Thu, 22 Jun 2023 01:14:45 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - group delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3585,19 +4044,17 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:52:19 GMT + - Thu, 22 Jun 2023 01:14:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: code: 202 message: Accepted @@ -3615,10 +4072,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3628,11 +4084,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:52:34 GMT + - Thu, 22 Jun 2023 01:15:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -3656,10 +4112,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3669,11 +4124,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:52:49 GMT + - Thu, 22 Jun 2023 01:15:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -3697,10 +4152,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3710,11 +4164,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:53:04 GMT + - Thu, 22 Jun 2023 01:15:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -3738,10 +4192,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3751,11 +4204,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:53:19 GMT + - Thu, 22 Jun 2023 01:15:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -3779,10 +4232,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3792,7 +4244,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:53:34 GMT + - Thu, 22 Jun 2023 01:16:01 GMT expires: - '-1' pragma: @@ -3818,8 +4270,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -3827,13 +4278,14 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-49-49-c2aab\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M18.4348045S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": @@ -3841,20 +4293,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-14T14:49:07.6453685Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-14T14:49:49.5789242Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2581' + - '2608' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:35 GMT + - Thu, 22 Jun 2023 01:16:02 GMT expires: - '-1' pragma: @@ -3888,8 +4340,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -3901,7 +4352,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:53:36 GMT + - Thu, 22 Jun 2023 01:16:02 GMT expires: - '-1' pragma: @@ -3931,8 +4382,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -3947,7 +4397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:36 GMT + - Thu, 22 Jun 2023 01:16:02 GMT expires: - '-1' pragma: @@ -3974,52 +4424,96 @@ interactions: false}}}' headers: Accept: - - application/json + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '750' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + cache-control: + - no-cache + content-length: + - '1224' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:16:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - stack sub create Connection: - keep-alive - Content-Length: - - '750' - Content-Type: - - application/json ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000004\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:37.0815652Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n + \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"initializing\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdbb946-d6ff-4282-a176-3dda6d773f8c?api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '1197' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:37 GMT + - Thu, 22 Jun 2023 01:16:03 GMT expires: - '-1' pragma: @@ -4028,13 +4522,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -4049,14 +4545,13 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdbb946-d6ff-4282-a176-3dda6d773f8c?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdbb946-d6ff-4282-a176-3dda6d773f8c\",\r\n - \ \"name\": \"efdbb946-d6ff-4282-a176-3dda6d773f8c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n + \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4065,7 +4560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:54 GMT + - Thu, 22 Jun 2023 01:16:34 GMT expires: - '-1' pragma: @@ -4097,8 +4592,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4106,30 +4600,31 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-37-13a35\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.4767612S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:37.0815652Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1627' + - '1654' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:54 GMT + - Thu, 22 Jun 2023 01:16:35 GMT expires: - '-1' pragma: @@ -4161,8 +4656,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4170,30 +4664,31 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-37-13a35\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.4767612S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:37.0815652Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1627' + - '1654' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:55 GMT + - Thu, 22 Jun 2023 01:16:36 GMT expires: - '-1' pragma: @@ -4238,8 +4733,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4250,26 +4744,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000005\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:56.3804755Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4c78135c-82d8-47e8-93be-1fe8d2d29950?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ cache-control: - no-cache content-length: - - '1197' + - '1223' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:53:55 GMT + - Thu, 22 Jun 2023 01:16:37 GMT expires: - '-1' pragma: @@ -4285,7 +4779,54 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n + \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Jun 2023 01:16:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -4303,14 +4844,13 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4c78135c-82d8-47e8-93be-1fe8d2d29950?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4c78135c-82d8-47e8-93be-1fe8d2d29950\",\r\n - \ \"name\": \"4c78135c-82d8-47e8-93be-1fe8d2d29950\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n + \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4319,7 +4859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:13 GMT + - Thu, 22 Jun 2023 01:17:07 GMT expires: - '-1' pragma: @@ -4351,8 +4891,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4360,31 +4899,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-56-095ec\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.4909992S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:56.3804755Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1763' + - '1789' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:13 GMT + - Thu, 22 Jun 2023 01:17:07 GMT expires: - '-1' pragma: @@ -4416,8 +4956,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -4431,7 +4970,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:14 GMT + - Thu, 22 Jun 2023 01:17:08 GMT expires: - '-1' pragma: @@ -4459,8 +4998,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2022-09-01 response: @@ -4474,7 +5012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:14 GMT + - Thu, 22 Jun 2023 01:17:08 GMT expires: - '-1' pragma: @@ -4503,8 +5041,7 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4512,31 +5049,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-53-56-095ec\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.4909992S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:53:56.3804755Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1763' + - '1789' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:14 GMT + - Thu, 22 Jun 2023 01:17:09 GMT expires: - '-1' pragma: @@ -4582,8 +5120,7 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4594,26 +5131,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-three000006\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:15.7903814Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d560f60d-ff6f-4be6-ac3a-9ed25e6041b8?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y cache-control: - no-cache content-length: - - '1199' + - '1225' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:15 GMT + - Thu, 22 Jun 2023 01:17:10 GMT expires: - '-1' pragma: @@ -4629,7 +5166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -4648,23 +5185,22 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d560f60d-ff6f-4be6-ac3a-9ed25e6041b8?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d560f60d-ff6f-4be6-ac3a-9ed25e6041b8\",\r\n - \ \"name\": \"d560f60d-ff6f-4be6-ac3a-9ed25e6041b8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n + \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:32 GMT + - Thu, 22 Jun 2023 01:17:10 GMT expires: - '-1' pragma: @@ -4697,40 +5233,22 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-15-fc6b2\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.1492966S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:15.7903814Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n + \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '1767' + - '260' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:32 GMT + - Thu, 22 Jun 2023 01:17:41 GMT expires: - '-1' pragma: @@ -4752,38 +5270,61 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group show + - stack sub create Connection: - keep-alive ParameterSetName: - - -n + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '252' + - '1794' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:33 GMT + - Thu, 22 Jun 2023 01:17:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -4805,22 +5346,21 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '256' + - '252' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:34 GMT + - Thu, 22 Jun 2023 01:17:42 GMT expires: - '-1' pragma: @@ -4842,39 +5382,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource list + - group show Connection: - keep-alive + ParameterSetName: + - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory - Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working - Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU - Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage - - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my - key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:47:40.2820149Z","changedTime":"2023-04-14T14:47:41.581614Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:47:41.2378552Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:47:41.2378552Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:47:42.3718757Z","changedTime":"2023-04-14T14:47:43.081646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:47:42.878524Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:47:42.878524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:48:51.1256762Z","changedTime":"2023-04-14T14:48:52.0814271Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke%2ffv1eS99G3fY8PO67ph99%2bjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p%2fbw34bBJO3nC%2bbGI0il%2br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2bHqdeKcT1hZRBS9eaEgFtxBNKVNS%2fISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2bXzWniMQVC6%2bE7N3D4joi7fNjM6N4a%2b3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP%2fhpknsQGuRWdjTEc0zU0uVgIk%2bDtXk43%2fMDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx%2fFHJAjELEd7qf%2bdPOxG%2b9NIbfMfvXb8I%2f5cWUqyn3WWo7x3%2f5brQmbrufuc%2fb7O8ack65PLG%2b4M%2fnM9VQq93%2fCOss4RGl1j%2fRJgBz8tEXJxfbfIlsHsFEvm7%2bnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2b%2fh8ZmNoeIe%2b17iP%2bZmr%2bSqKm49djhpJj37ZQBKu%2fRa1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG%2fCRnult7OhY%2bjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E%2f6uW9er%2b%2f5fIN8xxhJs9ZPQGIc53Yc%2bpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY%2fK2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2blfts%2f0rf95kCPZaA3af3yZxGxoTIT94%2ff3764UprlT1eZw2QBaYBvSe%2fOrIrd72cgmch4M85AU9x%2f%2bKq9%2fVfx%2bfPoj1F17IfXqt1X7tX6j0%2bWMTCpCu7a61%2bfLK44A381Xew5k%2fDXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa%2fy%2byfP%2f%2bAw%3d%3d"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '111263' + - '256' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:36 GMT + - Thu, 22 Jun 2023 01:17:43 GMT expires: - '-1' pragma: @@ -4892,7 +5420,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -4900,22 +5428,29 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=vVRNk9o4EP0vnPfgD2B3UpXDyrbAyiAjyS0Z3wwiA7bxTI0NA6Ty39MiM1lStbet2oNL1ke/fv1eS99G3fY8PO67ph99%2BjbaVv1w7IPRp9H2wo5lsfNyQy9VoC9p/bw34bBJO3nC%2BbGI0il%2Br9C0SdZNDtwbT4QmAST9eAX2cQ16EEBjBSxc5l4NrZguFAdoFtNFvqqV5iar01qBXmb1yuc5nFOfxrJ%2BHqdeKcT1hZRBS9eaEgFtxBNKVNS/ISYpvV2H47M6DLjHSYlrblSGnnlIri6vMBrXKEVONAM6l3M7WA8xIPUchgKqFTyP1539hS8wV%2BXzWniMQVC6%2BE7N3D4joi7fNjM6N4a%2B3uHHmLfYzstzhdjCo63DxjFbaRuo4AFjP/hpknsQGuRWdjTEc0zU0uVgIk%2BDtXk43/MDoKGOJRdwzjcO29i0dOPBRpU5xxL3BfSvmwbX3vVx/FHJAjELEd7qf%2BdPOxG%2B9NIbfMfvXb8I/5cWUqyn3WWo7x3/5brQmbrufuc/b7O8ack65PLG%2B4M/nM9VQq93/COss4RGl1j/RJgBz8tEXJxfbfIlsHsFEvm7%2BnWxdTW81ycD1Nt7uzieomgdR9SglVg3UZ52c8SlRCb0BKDJqtG7%2B/h8ZmNoeIe%2B17iP%2BZmr%2BSqKm49djhpJj37ZQBKu/Ra1SJyfTBx2DPVN8p9cOjxD0INEwEssdBrmP3398Jdttc3zxP9Hn5wRlehIYZzBngHUE2Ocz8SG/CRnult7OhY%2BjUpjoxvewd72c2OZMjvCMfcil0QWlt167qaBRe00E/6uW9er%2B/5fIN8xxhJs9ZPQGIc53Yc%2BpBIk3hE7KT3n1c0vnLuesJEObCexL2Uie8RYIEdqPTZXLY/K2uX7dX9qAU8XYR5kjnVpQP8MT4RuuXR34uD8aYkBH2PQywbx0b%2Blfts/0rf95kCPZaA3af3yZxGxoTIT94/f3764UprlT1eZw2QBaYBvSe/OrIrd72cgmch4M85AU9x/%2BKq9/Vfx%2BfPoj1F17IfXqt1X7tX6j0%2BWMTCpCu7a61%2BfLK44A381Xew5k/DXlNeAT1aCLcZnWf1Uy5bEWUMVv7JH6zmZ204lTydTMNdGpAJa/y%2ByfP/%2BAw%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2023-05-22T22:02:46.9870949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-20T04:10:15.1676505Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storepja53i65mrhwc","name":"storepja53i65mrhwc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-15T14:24:26.9018384Z","changedTime":"2023-06-01T08:36:22.3999273Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storetestmuhausman","name":"storetestmuhausman","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-16T14:04:26.199647Z","changedTime":"2023-05-16T14:14:48.0702501Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:08:23.3210529Z","changedTime":"2023-06-22T01:08:24.8527828Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:24.5090807Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:24.5090807Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:08:25.7086532Z","changedTime":"2023-06-22T01:08:26.2903722Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:26.1184254Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:26.1184254Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-22T01:10:19.5779943Z","changedTime":"2023-06-22T01:10:20.1522284Z","provisioningState":"Succeeded"}]}' headers: cache-control: - no-cache content-length: - - '4342' + - '148870' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:36 GMT + - Thu, 22 Jun 2023 01:17:43 GMT expires: - '-1' pragma: @@ -4943,8 +5478,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -4952,31 +5486,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-15-fc6b2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.1492966S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:53:37.0815652Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:15.7903814Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1767' + - '1794' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:38 GMT + - Thu, 22 Jun 2023 01:17:44 GMT expires: - '-1' pragma: @@ -5010,8 +5545,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -5023,7 +5557,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:54:38 GMT + - Thu, 22 Jun 2023 01:17:45 GMT expires: - '-1' pragma: @@ -5035,7 +5569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -5057,8 +5591,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -5072,7 +5605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:38 GMT + - Thu, 22 Jun 2023 01:17:46 GMT expires: - '-1' pragma: @@ -5082,7 +5615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -5101,8 +5634,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -5117,7 +5649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:40 GMT + - Thu, 22 Jun 2023 01:17:47 GMT expires: - '-1' pragma: @@ -5168,8 +5700,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -5180,27 +5711,28 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": - \"cli-test-resource-one000004\"\r\n },\r\n \"tsname\": {\r\n \"value\": - \"cli-test-template-spec000003\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n },\r\n + \ \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n + \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:40.3212474Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU cache-control: - no-cache content-length: - - '1338' + - '1392' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:40 GMT + - Thu, 22 Jun 2023 01:17:48 GMT expires: - '-1' pragma: @@ -5231,23 +5763,22 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171\",\r\n - \ \"name\": \"1364ed80-9747-49da-8921-3cd639352171\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n + \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:54:57 GMT + - Thu, 22 Jun 2023 01:17:48 GMT expires: - '-1' pragma: @@ -5280,14 +5811,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1364ed80-9747-49da-8921-3cd639352171\",\r\n - \ \"name\": \"1364ed80-9747-49da-8921-3cd639352171\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n + \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5296,7 +5826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:28 GMT + - Thu, 22 Jun 2023 01:18:18 GMT expires: - '-1' pragma: @@ -5329,8 +5859,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -5338,33 +5867,34 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-40-f9934\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT21.3324744S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:40.3212474Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2093' + - '2147' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:28 GMT + - Thu, 22 Jun 2023 01:18:18 GMT expires: - '-1' pragma: @@ -5396,8 +5926,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -5430,39 +5959,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -5470,7 +6002,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -5478,25 +6011,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:30 GMT + - Thu, 22 Jun 2023 01:18:21 GMT expires: - '-1' pragma: @@ -5524,28 +6059,27 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:44.063363Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:50.7335245Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-14T14:54:44.063363Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:17:50.7335245Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '628' + - '630' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:31 GMT + - Thu, 22 Jun 2023 01:18:21 GMT expires: - '-1' pragma: @@ -5577,8 +6111,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -5592,7 +6125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:31 GMT + - Thu, 22 Jun 2023 01:18:22 GMT expires: - '-1' pragma: @@ -5621,8 +6154,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -5630,33 +6162,34 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-54-40-f9934\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT21.3324744S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:54:40.3212474Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2093' + - '2147' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:31 GMT + - Thu, 22 Jun 2023 01:18:22 GMT expires: - '-1' pragma: @@ -5702,8 +6235,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -5717,13 +6249,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:55:32.6569562Z\"\r\n + \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3a18%3a24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE cache-control: - no-cache content-length: @@ -5731,7 +6263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:32 GMT + - Thu, 22 Jun 2023 01:18:23 GMT expires: - '-1' pragma: @@ -5766,23 +6298,22 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:55:49 GMT + - Thu, 22 Jun 2023 01:18:23 GMT expires: - '-1' pragma: @@ -5815,14 +6346,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5831,7 +6361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:56:19 GMT + - Thu, 22 Jun 2023 01:18:54 GMT expires: - '-1' pragma: @@ -5864,14 +6394,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5880,7 +6409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:56:50 GMT + - Thu, 22 Jun 2023 01:19:24 GMT expires: - '-1' pragma: @@ -5913,14 +6442,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5929,7 +6457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:57:20 GMT + - Thu, 22 Jun 2023 01:19:54 GMT expires: - '-1' pragma: @@ -5962,14 +6490,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5978,7 +6505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:57:50 GMT + - Thu, 22 Jun 2023 01:20:24 GMT expires: - '-1' pragma: @@ -6011,14 +6538,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6027,7 +6553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:58:20 GMT + - Thu, 22 Jun 2023 01:20:55 GMT expires: - '-1' pragma: @@ -6060,14 +6586,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6076,7 +6601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:58:51 GMT + - Thu, 22 Jun 2023 01:21:26 GMT expires: - '-1' pragma: @@ -6109,14 +6634,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n - \ \"name\": \"24913b00-fe0e-4171-99f5-28d33821fdf4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -6125,7 +6649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:20 GMT + - Thu, 22 Jun 2023 01:21:56 GMT expires: - '-1' pragma: @@ -6158,8 +6682,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -6167,9 +6690,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-55-32-1794a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M20.9077063S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6179,9 +6702,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-14T14:55:32.6569562Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6192,7 +6715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:21 GMT + - Thu, 22 Jun 2023 01:21:56 GMT expires: - '-1' pragma: @@ -6224,8 +6747,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -6239,7 +6761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:22 GMT + - Thu, 22 Jun 2023 01:21:57 GMT expires: - '-1' pragma: @@ -6267,53 +6789,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 - response: - body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000007%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVRLc%2bI4EP4vnPfgB2Q3UzWHlW0Fa4KMZLVkfLMRCdjCSQUSHlPz37fFkFmmam97cMmS%2bvH197X6%2b2hYHfePm6Hfjb58H62a3f59F42%2bjFYn9l5X60AZemoifcq7l42J98t8kB%2b4f6%2bS%2fA6%2fN%2bhdVgyTLQ%2fGE6FJBNluvAD72ILeC6BpCSyeq6ADJ%2b5mJQfoZ3cztehKzU3R5V0Jel50i5ArOOYhTWX3Ms6DWojzK6kjR1tNiQCX8IySMtkdMCapg%2fWA60u53eMdJzWe%2bbU09MhjcvZ5hdF4RiliogXQqZzavQ0wBuSBj1EC1SW8jNvB%2foovMFcT8k4EjEFUe%2f%2bhfPD3jIiuPiwf6NQY%2bnYTP8W81WpaHxuMLQLqfGxci4W2URndo%2b8nPk1UALFBbPVAY7RjopM%2bBxMqj1pzf7zFB0BjnUou4KiWPraxee3XrU0ac0wl3gvYvS17PLvy4%2fEjkxXGrER8qf%2bKnw4ift3JYB96fFf%2bEvyfW8ixHrcukN8b%2fPO20kV5Xv%2bOf%2boK1TvSxlxecH%2fih%2bOxyej5Bn%2bCddbQ6xrrnwizR3uZiZPXy2XfIrspQSJ%2bX7%2buVr6Ga30yQr6Dw8njFJXzGJEDJ7FuUgba7zEuJTKjHwCaLHq9vvVXDzaFng%2boe4f3mJ%2f5ms%2biuug4KORIBvTbErK4DR1ykXk9mdiuGfKbqZ9YBrQhqEEm4DUVOo%2fVT10%2f9WUrbZXKwn%2f5UYyUmU5K9DPYM4B8oo%2fXmdiYf8gHPbSBTkVIk9rY5BJvay%2f3ylhWmjXhmHumJJGVZZeeu3BgkTvNRLge2m5x2%2f8zxDtGX4Kt%2fiE0%2bmFO%2f6EOuQSJb8RO6sBrddEL974nbKIjO0jsS5nJHcaYIUZqAzYtHU%2fqzuf79X6w3ueTMPdSYV0aUD%2fDM6Edl%2f5NbL0%2bjhgI0Qe17DE%2b6lcaK%2bcqXOabI84Ltm631vl5sQoPm9a4z9lx4DA7StWPZwGEhaIJd4fNI%2fU2dHydL1cbRwoQcZE6KvVh81SFNh%2bCr6M%2fRs37bv%2fWuE3jJ9f%2fHFvGwKSpuG%2bx%2fxxbvOQMwsXdbMOZhL%2fueAc4tjJsM%2f5QdM%2bddCQtelryM3u0gafaDWX2%2fGEq5luJNEC7OcL3JS639L2O9DLvXv%2bsErZvzMT%2f4%2fd3KM6UFur5LBVMZpBHSMXO2yyq9e82kE1kuhwXoCne3z%2fpYPMkvn4d%2ffjxDw%3d%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '1631' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Apr 2023 14:59:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVRLc%2BI4EP4vnPfgB2Q3UzWHlW0Fa4KMZLVkfLMRCdjCSQUSHlPz37fFkFmmam97cMmS%2BvH197X6%2B2hYHfePm6Hfjb58H62a3f59F42%2BjFYn9l5X60AZemoifcq7l42J98t8kB%2B4f6%2BS/A6/N%2BhdVgyTLQ/GE6FJBNluvAD72ILeC6BpCSyeq6ADJ%2B5mJQfoZ3cztehKzU3R5V0Jel50i5ArOOYhTWX3Ms6DWojzK6kjR1tNiQCX8IySMtkdMCapg/WA60u53eMdJzWe%2BbU09MhjcvZ5hdF4RiliogXQqZzavQ0wBuSBj1EC1SW8jNvB/oovMFcT8k4EjEFUe/%2BhfPD3jIiuPiwf6NQY%2BnYTP8W81WpaHxuMLQLqfGxci4W2URndo%2B8nPk1UALFBbPVAY7RjopM%2BBxMqj1pzf7zFB0BjnUou4KiWPraxee3XrU0ac0wl3gvYvS17PLvy4/EjkxXGrER8qf%2BKnw4ift3JYB96fFf%2BEvyfW8ixHrcukN8b/PO20kV5Xv%2BOf%2BoK1TvSxlxecH/ih%2BOxyej5Bn%2BCddbQ6xrrnwizR3uZiZPXy2XfIrspQSJ%2BX7%2BuVr6Ga30yQr6Dw8njFJXzGJEDJ7FuUgba7zEuJTKjHwCaLHq9vvVXDzaFng%2Boe4f3mJ/5ms%2Biuug4KORIBvTbErK4DR1ykXk9mdiuGfKbqZ9YBrQhqEEm4DUVOo/VT10/9WUrbZXKwn/5UYyUmU5K9DPYM4B8oo/XmdiYf8gHPbSBTkVIk9rY5BJvay/3ylhWmjXhmHumJJGVZZeeu3BgkTvNRLge2m5x2/8zxDtGX4Kt/iE0%2BmFO/6EOuQSJb8RO6sBrddEL974nbKIjO0jsS5nJHcaYIUZqAzYtHU/qzuf79X6w3ueTMPdSYV0aUD/DM6Edl/5NbL0%2BjhgI0Qe17DE%2B6lcaK%2BcqXOabI84Ltm631vl5sQoPm9a4z9lx4DA7StWPZwGEhaIJd4fNI/U2dHydL1cbRwoQcZE6KvVh81SFNh%2BCr6M/Rs37bv/WuE3jJ9f/HFvGwKSpuG%2Bx/xxbvOQMwsXdbMOZhL/ueAc4tjJsM/5QdM%2BddCQtelryM3u0gafaDWX2/GEq5luJNEC7OcL3JS639L2O9DLvXv%2BsErZvzMT/4/d3KM6UFur5LBVMZpBHSMXO2yyq9e82kE1kuhwXoCne3z/pYPMkvn4d/fjxDw%3D%3D response: body: string: '{"value":[]}' @@ -6325,7 +6803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:26 GMT + - Thu, 22 Jun 2023 01:21:57 GMT expires: - '-1' pragma: @@ -6351,23 +6829,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:47:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-22T01:08:15Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '55470' + - '75737' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:26 GMT + - Thu, 22 Jun 2023 01:21:58 GMT expires: - '-1' pragma: @@ -6396,8 +6873,7 @@ interactions: - --name --location --deployment-resource-group --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -6405,9 +6881,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-55-32-1794a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M20.9077063S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6417,9 +6893,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-14T14:55:32.6569562Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6430,7 +6906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:26 GMT + - Thu, 22 Jun 2023 01:21:59 GMT expires: - '-1' pragma: @@ -6472,15 +6948,15 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 14:59:28 GMT + - Thu, 22 Jun 2023 01:22:02 GMT expires: - - Fri, 14 Apr 2023 14:59:28 GMT + - Thu, 22 Jun 2023 01:22:02 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 server: - Kestrel strict-transport-security: @@ -6505,26 +6981,89 @@ interactions: uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/98925381","assets_url":"https://api.github.com/repos/Azure/bicep/releases/98925381/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/98925381/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.16.2","id":98925381,"author":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4F5XtF","tag_name":"v0.16.2","target_commitish":"main","name":"v0.16.2","draft":false,"prerelease":false,"created_at":"2023-04-05T15:27:33Z","published_at":"2023-04-11T19:26:02Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196329","id":103196329,"node_id":"RA_kwDOD7S9ks4GJqap","name":"Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27360858,"download_count":3,"created_at":"2023-04-11T14:16:45Z","updated_at":"2023-04-11T14:16:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196317","id":103196317,"node_id":"RA_kwDOD7S9ks4GJqad","name":"Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27766844,"download_count":3,"created_at":"2023-04-11T14:16:34Z","updated_at":"2023-04-11T14:16:37Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.linux-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196376","id":103196376,"node_id":"RA_kwDOD7S9ks4GJqbY","name":"Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27643258,"download_count":2,"created_at":"2023-04-11T14:17:11Z","updated_at":"2023-04-11T14:17:14Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196341","id":103196341,"node_id":"RA_kwDOD7S9ks4GJqa1","name":"Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28087538,"download_count":4,"created_at":"2023-04-11T14:16:53Z","updated_at":"2023-04-11T14:16:54Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.osx-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196295","id":103196295,"node_id":"RA_kwDOD7S9ks4GJqaH","name":"Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27640274,"download_count":4,"created_at":"2023-04-11T14:16:25Z","updated_at":"2023-04-11T14:16:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-arm64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196274","id":103196274,"node_id":"RA_kwDOD7S9ks4GJqZy","name":"Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":27964739,"download_count":4,"created_at":"2023-04-11T14:16:14Z","updated_at":"2023-04-11T14:16:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.CommandLine.win-x64.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196098","id":103196098,"node_id":"RA_kwDOD7S9ks4GJqXC","name":"Azure.Bicep.Core.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":573156,"download_count":3,"created_at":"2023-04-11T14:14:38Z","updated_at":"2023-04-11T14:14:38Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196103","id":103196103,"node_id":"RA_kwDOD7S9ks4GJqXH","name":"Azure.Bicep.Core.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":184789,"download_count":3,"created_at":"2023-04-11T14:14:40Z","updated_at":"2023-04-11T14:14:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Core.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196109","id":103196109,"node_id":"RA_kwDOD7S9ks4GJqXN","name":"Azure.Bicep.Decompiler.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":98381,"download_count":4,"created_at":"2023-04-11T14:14:43Z","updated_at":"2023-04-11T14:14:43Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196113","id":103196113,"node_id":"RA_kwDOD7S9ks4GJqXR","name":"Azure.Bicep.Decompiler.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23934,"download_count":3,"created_at":"2023-04-11T14:14:45Z","updated_at":"2023-04-11T14:14:45Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.Decompiler.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196120","id":103196120,"node_id":"RA_kwDOD7S9ks4GJqXY","name":"Azure.Bicep.MSBuild.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45560,"download_count":3,"created_at":"2023-04-11T14:14:47Z","updated_at":"2023-04-11T14:14:47Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196124","id":103196124,"node_id":"RA_kwDOD7S9ks4GJqXc","name":"Azure.Bicep.MSBuild.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6942,"download_count":3,"created_at":"2023-04-11T14:14:49Z","updated_at":"2023-04-11T14:14:49Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.MSBuild.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196129","id":103196129,"node_id":"RA_kwDOD7S9ks4GJqXh","name":"Azure.Bicep.RegistryModuleTool.0.16.2.nupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":23603320,"download_count":4,"created_at":"2023-04-11T14:14:51Z","updated_at":"2023-04-11T14:14:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196139","id":103196139,"node_id":"RA_kwDOD7S9ks4GJqXr","name":"Azure.Bicep.RegistryModuleTool.0.16.2.snupkg","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":200972,"download_count":3,"created_at":"2023-04-11T14:14:55Z","updated_at":"2023-04-11T14:14:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/Azure.Bicep.RegistryModuleTool.0.16.2.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196179","id":103196179,"node_id":"RA_kwDOD7S9ks4GJqYT","name":"bicep-langserver.zip","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25104436,"download_count":4,"created_at":"2023-04-11T14:15:15Z","updated_at":"2023-04-11T14:15:16Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195975","id":103195975,"node_id":"RA_kwDOD7S9ks4GJqVH","name":"bicep-linux-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":56867505,"download_count":16,"created_at":"2023-04-11T14:13:31Z","updated_at":"2023-04-11T14:13:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196001","id":103196001,"node_id":"RA_kwDOD7S9ks4GJqVh","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57090165,"download_count":242,"created_at":"2023-04-11T14:13:48Z","updated_at":"2023-04-11T14:13:51Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103195965","id":103195965,"node_id":"RA_kwDOD7S9ks4GJqU9","name":"bicep-linux-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57254260,"download_count":2987,"created_at":"2023-04-11T14:13:21Z","updated_at":"2023-04-11T14:13:24Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196044","id":103196044,"node_id":"RA_kwDOD7S9ks4GJqWM","name":"bicep-osx-arm64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57069200,"download_count":134,"created_at":"2023-04-11T14:14:12Z","updated_at":"2023-04-11T14:14:15Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196028","id":103196028,"node_id":"RA_kwDOD7S9ks4GJqV8","name":"bicep-osx-x64","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":57479968,"download_count":559,"created_at":"2023-04-11T14:14:00Z","updated_at":"2023-04-11T14:14:03Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196077","id":103196077,"node_id":"RA_kwDOD7S9ks4GJqWt","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":24119368,"download_count":201,"created_at":"2023-04-11T14:14:30Z","updated_at":"2023-04-11T14:14:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196207","id":103196207,"node_id":"RA_kwDOD7S9ks4GJqYv","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56920088,"download_count":3,"created_at":"2023-04-11T14:15:26Z","updated_at":"2023-04-11T14:15:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196090","id":103196090,"node_id":"RA_kwDOD7S9ks4GJqW6","name":"bicep-win-x64.exe","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":56797064,"download_count":3292,"created_at":"2023-04-11T14:14:33Z","updated_at":"2023-04-11T14:14:36Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196241","id":103196241,"node_id":"RA_kwDOD7S9ks4GJqZR","name":"vs-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":45804447,"download_count":4,"created_at":"2023-04-11T14:15:49Z","updated_at":"2023-04-11T14:15:53Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/103196224","id":103196224,"node_id":"RA_kwDOD7S9ks4GJqZA","name":"vscode-bicep.vsix","label":"","uploader":{"login":"jeskew","id":705500,"node_id":"MDQ6VXNlcjcwNTUwMA==","avatar_url":"https://avatars.githubusercontent.com/u/705500?v=4","gravatar_id":"","url":"https://api.github.com/users/jeskew","html_url":"https://github.com/jeskew","followers_url":"https://api.github.com/users/jeskew/followers","following_url":"https://api.github.com/users/jeskew/following{/other_user}","gists_url":"https://api.github.com/users/jeskew/gists{/gist_id}","starred_url":"https://api.github.com/users/jeskew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeskew/subscriptions","organizations_url":"https://api.github.com/users/jeskew/orgs","repos_url":"https://api.github.com/users/jeskew/repos","events_url":"https://api.github.com/users/jeskew/events{/privacy}","received_events_url":"https://api.github.com/users/jeskew/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":37789327,"download_count":51,"created_at":"2023-04-11T14:15:39Z","updated_at":"2023-04-11T14:15:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.16.2/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.16.2","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.16.2","body":"## - Bug fixes and features\r\n\r\nBicep team:\r\n* Use the correct bitwise operator - for combining flags in JSON model loader (#10325)"}' - headers: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files + (bicep-style parameters file). This includes support for:\r\n - support for + expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - + supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group + create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate + bicepparam file from given Bicep file (#10595)\r\n - Buildparams command + vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env + variables in .bicepparam files (#10726)\r\n - Support bicepparam files for + VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - + Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming + modules from ACR (#10747)\r\n* Bicep build command linter provides a structured + output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* + Mark overload matches as PotentialMatches if any argument is of type ''any'' + (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* + Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from + symbol resolution logic (#10626)\r\n* Derive operation return type from operands + (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in + addition to metadata.json (#10860)\r\n* Add intellisense support for param + and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI + by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument + is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries + (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* + Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' + headers: + accept-ranges: + - bytes + connection: + - keep-alive content-length: - - '35354' - content-md5: - - 6xL0BXzP0qoRtMRMwvm3rA== + - '41660' content-type: - application/octet-stream date: - - Fri, 14 Apr 2023 14:59:28 GMT + - Thu, 22 Jun 2023 01:22:02 GMT etag: - - '0x8DB3CF13E56E578' + - '0x8DB7236999A3CDE' last-modified: - - Fri, 14 Apr 2023 14:05:03 GMT + - Wed, 21 Jun 2023 09:05:03 GMT x-azure-ref: - - 0UGo5ZAAAAADAEManMVBRR6E6vW8WCbUHUEhMMzBFREdFMDMxMgA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= - x-azure-ref-originshield: - - 0hWg5ZAAAAAAVoUZSl+1aRKEqxfJCX0+oRVdSMzBFREdFMDUwNwA1NjdhMGMyYS01N2M5LTRiYTEtOTYzNS0wODZlMGJlZWMxMWE= + - 20230622T012202Z-sp102gyr2x4xh8kue1spgtqpa400000003bg00000000fdav x-cache: - TCP_HIT x-ms-blob-type: @@ -6540,7 +7079,7 @@ interactions: body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.15.31.15270", "templateHash": "8627291063605171044"}}, "parameters": {"location": + "0.17.1.54307", "templateHash": "6417493495661768720"}}, "parameters": {"location": {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", @@ -6559,15 +7098,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1068' + - '1067' Content-Type: - application/json ParameterSetName: - --name --location --deployment-resource-group --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -6578,26 +7116,27 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": - \"westus2\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\"\r\n + \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\",\r\n \"type\": \"string\"\r\n \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T14:54:40.3212474Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:59:30.4471505Z\"\r\n + \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3a22%3a08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ cache-control: - no-cache content-length: - - '1299' + - '1353' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:30 GMT + - Thu, 22 Jun 2023 01:22:08 GMT expires: - '-1' pragma: @@ -6613,7 +7152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6632,23 +7171,22 @@ interactions: - --name --location --deployment-resource-group --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac\",\r\n - \ \"name\": \"746880da-19ca-48b6-900d-46fc390feeac\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n + \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 14:59:47 GMT + - Thu, 22 Jun 2023 01:22:09 GMT expires: - '-1' pragma: @@ -6681,14 +7219,13 @@ interactions: - --name --location --deployment-resource-group --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/746880da-19ca-48b6-900d-46fc390feeac\",\r\n - \ \"name\": \"746880da-19ca-48b6-900d-46fc390feeac\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n + \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -6697,7 +7234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 15:00:18 GMT + - Thu, 22 Jun 2023 01:22:38 GMT expires: - '-1' pragma: @@ -6730,8 +7267,7 @@ interactions: - --name --location --deployment-resource-group --template-file -p --deny-settings-mode --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -6739,31 +7275,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-59-30-72b7e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT30.3361764S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n - \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n - \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeq6bo5ulxyubzq\"\r\n + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:59:30.4471505Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1852' + - '1906' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 15:00:18 GMT + - Thu, 22 Jun 2023 01:22:39 GMT expires: - '-1' pragma: @@ -6795,8 +7332,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -6804,31 +7340,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-14-14-59-30-72b7e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT30.3361764S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n - \ \"kind\": {\r\n \"value\": \"StorageV2\"\r\n }\r\n },\r\n - \ \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storeq6bo5ulxyubzq\"\r\n + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T14:54:40.3212474Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T14:59:30.4471505Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1852' + - '1906' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 15:00:18 GMT + - Thu, 22 Jun 2023 01:22:39 GMT expires: - '-1' pragma: @@ -6862,8 +7399,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -6875,7 +7411,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:00:18 GMT + - Thu, 22 Jun 2023 01:22:40 GMT expires: - '-1' pragma: @@ -6887,7 +7423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -6907,8 +7443,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: @@ -6920,11 +7455,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:00:21 GMT + - Thu, 22 Jun 2023 01:22:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6950,10 +7485,49 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 22 Jun 2023 01:22:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6963,11 +7537,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:00:36 GMT + - Thu, 22 Jun 2023 01:22:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6991,10 +7565,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7004,11 +7577,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:00:52 GMT + - Thu, 22 Jun 2023 01:23:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7032,10 +7605,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7045,11 +7617,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:01:08 GMT + - Thu, 22 Jun 2023 01:23:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7073,10 +7645,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7086,11 +7657,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:01:23 GMT + - Thu, 22 Jun 2023 01:23:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7114,10 +7685,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw2MzExOTJEMjQ0Qjc4RjEzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7127,7 +7697,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 15:01:38 GMT + - Thu, 22 Jun 2023 01:23:59 GMT expires: - '-1' pragma: From 98be4bf923887f8340abaa9c72ab68720f7a9bfb Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Wed, 21 Jun 2023 22:38:32 -0400 Subject: [PATCH 128/139] Nit & removed extra unneeded functions --- .../cli/command_modules/resource/_params.py | 2 +- .../cli/command_modules/resource/custom.py | 54 ------------------- 2 files changed, 1 insertion(+), 55 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 8606e69b396..b846dd46607 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -291,7 +291,7 @@ def load_arguments(self, _): c.argument('description', help='Description of policy exemption.') c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption') c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') - c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the polteicy exemption.') + c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') with self.argument_context('policy exemption create', min_api='2020-09-01', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c: diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index d015746690f..6e48bf06e27 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1055,24 +1055,6 @@ def _get_deployment_management_client(cli_ctx, aux_subscriptions=None, aux_tenan return deployment_client -def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): - detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach - delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete - - delete_resources_enum = detach_model - delete_resource_groups_enum = detach_model - - if delete_all: - delete_resources_enum = delete_model - delete_resource_groups_enum = delete_model - if delete_resource_groups: - delete_resource_groups_enum = delete_model - if delete_resources: - delete_resources_enum = delete_model - - return delete_resources_enum, delete_resource_groups_enum - - def _prepare_stacks_deny_settings(rcf, deny_settings_mode): deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode deny_settings_enum = None @@ -1098,17 +1080,6 @@ def _prepare_stacks_excluded_principals(deny_settings_excluded_principals): return excluded_principals_array -def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): - excluded_actions_array = [] - if deny_settings_excluded_actions: - for action in deny_settings_excluded_actions.split(" "): - excluded_actions_array.append(str(action)) - else: - excluded_actions_array = None - - return excluded_actions_array - - def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups, delete_resources): detach_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Detach delete_model = rcf.deployment_stacks.models.DeploymentStacksDeleteDetachEnum.Delete @@ -1127,31 +1098,6 @@ def _prepare_stacks_delete_detach_models(rcf, delete_all, delete_resource_groups return delete_resources_enum, delete_resource_groups_enum -def _prepare_stacks_deny_settings(rcf, deny_settings_mode): - deny_settings_mode = None if deny_settings_mode.lower() == "none" else deny_settings_mode - deny_settings_enum = None - if deny_settings_mode: - if deny_settings_mode.lower().replace(' ', '') == "denydelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_delete - elif deny_settings_mode.lower().replace(' ', '') == "denywriteanddelete": - deny_settings_enum = rcf.deployment_stacks.models.DenySettingsMode.deny_write_and_delete - else: - raise InvalidArgumentValueError("Please enter only one of the following: denyDelete, or denyWriteAndDelete") - - return deny_settings_enum - - -def _prepare_stacks_excluded_principals(deny_settings_excluded_principals): - excluded_principals_array = [] - if deny_settings_excluded_principals: - for principal in deny_settings_excluded_principals.split(" "): - excluded_principals_array.append(str(principal)) - else: - excluded_principals_array = None - - return excluded_principals_array - - def _prepare_stacks_excluded_actions(deny_settings_excluded_actions): excluded_actions_array = [] if deny_settings_excluded_actions: From 877d753625df4d55ace186d6de37f98462b567d3 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Sun, 25 Jun 2023 23:05:37 -0400 Subject: [PATCH 129/139] Added back ExemptionCategory --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index b846dd46607..51daa628d54 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -11,6 +11,7 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel + from azure.mgmt.resource.policy.v2022_07_01_preview.models import ExemptionCategory from azure.mgmt.resource.policy.models import EnforcementMode from azure.mgmt.resource.deploymentstacks.models import DenySettingsMode from azure.cli.core.commands.validators import get_default_location_from_resource_group @@ -289,7 +290,7 @@ def load_arguments(self, _): c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption') + c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') From 4dba574e237e9b9bf6f115e59cd853e1ec07c3f9 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 26 Jun 2023 14:32:53 -0400 Subject: [PATCH 130/139] ExemptionCategory added as manual enum, removed import + bicep path fix + missed parameters added for tests --- .../cli/command_modules/resource/_params.py | 3 +- ...ate_deployment_stack_management_group.yaml | 1440 +++++++++++++---- ...reate_deployment_stack_resource_group.yaml | 1192 +++++++------- ..._create_deployment_stack_subscription.yaml | 1103 +++++++------ .../resource/tests/latest/test_resource.py | 46 +- 5 files changed, 2362 insertions(+), 1422 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 51daa628d54..4ce74544415 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -11,7 +11,6 @@ def load_arguments(self, _): from azure.mgmt.resource.locks.models import LockLevel from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel - from azure.mgmt.resource.policy.v2022_07_01_preview.models import ExemptionCategory from azure.mgmt.resource.policy.models import EnforcementMode from azure.mgmt.resource.deploymentstacks.models import DenySettingsMode from azure.cli.core.commands.validators import get_default_location_from_resource_group @@ -290,7 +289,7 @@ def load_arguments(self, _): c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) + c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(['ExemptionCategory'])) c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml index 74064bba2fb..cf5eb549faa 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_management_group.yaml @@ -1,4 +1,673 @@ interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1'' + under resource group ''cli_test_deployment_stacks000001'' was not found. For + more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Resources/templateSpecs/cli-test-template-spec000003'' + under resource group ''cli_test_deployment_stacks000001'' was not found. For + more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:11:39.5759867Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:11:39.5759867Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '632' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"linkedTemplates": [], + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ts create + Connection: + - keep-alive + Content-Length: + - '601' + Content-Type: + - application/json + ParameterSetName: + - --name --version --location --template-file --resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:11:41.4822579Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:11:41.4822579Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": + \"v1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-spec --deny-settings-mode + --parameters --description --deployment-subscription + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-spec --deny-settings-mode + --parameters --description --deployment-subscription + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"mainTemplate\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": + {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"foo\",\r\n + \ \"metadata\": {\r\n \"description\": \"description\"\r\n + \ }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n + \ \"defaultValue\": \"bar\",\r\n \"metadata\": {\r\n \"description\": + \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": + [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": + \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": + \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n + \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:11:41.4822579Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:11:41.4822579Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": + \"v1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"templateLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1"}, + "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "description": "MG stack deployment", "denySettings": {"excludedPrincipals": + [], "applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + Content-Length: + - '587' + Content-Type: + - application/json + ParameterSetName: + - --name --management-group-id --location --template-spec --deny-settings-mode + --parameters --description --deployment-subscription + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"description\": + \"MG stack deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": []\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {},\r\n \"bar\": {}\r\n + \ },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:11:43.2516895Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:11:43.2516895Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69bbd7ac-98d3-4890-909a-2729d836a6ec?api-version=2022-08-01-preview&t=2023-06-26T18%3a11%3a44&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=DBz_kYyiNIRIFvr8lI9Y_lzWXac7-4SakLX3Oiztdb_xDR8gFNCPxAnN3l0iVneo5ZPFspxV1dhjhYjEVqTJTxs4ji9yzXgUJU97pSwgY9ktSJks6tPj0_xe4YUhhLX_qSduz97swQyXZ9kl2cHLux4g7ft4DUOEDeSniN0wP-PYRCSYTypcWfhChwCn0A2T29KnLXMnSdl-ee2klYhs0nXb-A39-UdlPCEgYAYoua3l5haFLxQlnzpIkDT0taCj1SA1WE2Yxi6qZO8PyqIpQPX7UfRLoZHuIpUgdMDrtUcQaGRi0FxLDQW0a7ftoDQZuim9pdbx5RnObgZnQPVOag&h=E6qrnqfsNA7Pudex4h7IJV_ngZjTh_KYULjYIPD4fg4 + cache-control: + - no-cache + content-length: + - '1484' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-tenant-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-spec --deny-settings-mode + --parameters --description --deployment-subscription + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69bbd7ac-98d3-4890-909a-2729d836a6ec?api-version=2022-08-01-preview&t=2023-06-26T18%3A11%3A44&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=DBz_kYyiNIRIFvr8lI9Y_lzWXac7-4SakLX3Oiztdb_xDR8gFNCPxAnN3l0iVneo5ZPFspxV1dhjhYjEVqTJTxs4ji9yzXgUJU97pSwgY9ktSJks6tPj0_xe4YUhhLX_qSduz97swQyXZ9kl2cHLux4g7ft4DUOEDeSniN0wP-PYRCSYTypcWfhChwCn0A2T29KnLXMnSdl-ee2klYhs0nXb-A39-UdlPCEgYAYoua3l5haFLxQlnzpIkDT0taCj1SA1WE2Yxi6qZO8PyqIpQPX7UfRLoZHuIpUgdMDrtUcQaGRi0FxLDQW0a7ftoDQZuim9pdbx5RnObgZnQPVOag&h=E6qrnqfsNA7Pudex4h7IJV_ngZjTh_KYULjYIPD4fg4 + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69bbd7ac-98d3-4890-909a-2729d836a6ec\",\r\n + \ \"name\": \"69bbd7ac-98d3-4890-909a-2729d836a6ec\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '212' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:11:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-spec --deny-settings-mode + --parameters --description --deployment-subscription + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69bbd7ac-98d3-4890-909a-2729d836a6ec?api-version=2022-08-01-preview&t=2023-06-26T18%3A11%3A44&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=DBz_kYyiNIRIFvr8lI9Y_lzWXac7-4SakLX3Oiztdb_xDR8gFNCPxAnN3l0iVneo5ZPFspxV1dhjhYjEVqTJTxs4ji9yzXgUJU97pSwgY9ktSJks6tPj0_xe4YUhhLX_qSduz97swQyXZ9kl2cHLux4g7ft4DUOEDeSniN0wP-PYRCSYTypcWfhChwCn0A2T29KnLXMnSdl-ee2klYhs0nXb-A39-UdlPCEgYAYoua3l5haFLxQlnzpIkDT0taCj1SA1WE2Yxi6qZO8PyqIpQPX7UfRLoZHuIpUgdMDrtUcQaGRi0FxLDQW0a7ftoDQZuim9pdbx5RnObgZnQPVOag&h=E6qrnqfsNA7Pudex4h7IJV_ngZjTh_KYULjYIPD4fg4 + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69bbd7ac-98d3-4890-909a-2729d836a6ec\",\r\n + \ \"name\": \"69bbd7ac-98d3-4890-909a-2729d836a6ec\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:12:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-spec --deny-settings-mode + --parameters --description --deployment-subscription + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-11-43-607c9\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"description\": \"MG stack deployment\",\r\n \"duration\": \"PT10.770354S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false,\r\n \"excludedPrincipals\": []\r\n },\r\n \"outputs\": {\r\n + \ \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n + \ \"value\": \"abc\",\r\n \"type\": \"String\"\r\n },\r\n + \ \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": \"String\"\r\n + \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:11:43.2516895Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:11:43.2516895Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1994' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:12:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg delete + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-11-43-607c9\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"description\": \"MG stack deployment\",\r\n \"duration\": \"PT10.770354S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false,\r\n \"excludedPrincipals\": []\r\n },\r\n \"outputs\": {\r\n + \ \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n + \ },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": + \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n + \ \"value\": \"abc\",\r\n \"type\": \"String\"\r\n },\r\n + \ \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": \"String\"\r\n + \ }\r\n },\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\"\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:11:43.2516895Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:11:43.2516895Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1994' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:12:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --management-group-id --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 26 Jun 2023 18:12:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-tenant-deletes: + - '14999' + status: + code: 200 + message: OK - request: body: null headers: @@ -12,10 +681,10 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --description --delete-all --deny-settings-excluded-principals + --deny-settings-excluded-actions --deny-settings-apply-to-child-scopes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -30,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:34:38 GMT + - Mon, 26 Jun 2023 18:12:16 GMT expires: - '-1' pragma: @@ -45,15 +714,17 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {"applyToChildScopes": false}}}' + {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "description": "MG stack deployment", "denySettings": {"excludedPrincipals": + [], "excludedActions": ["action1", "action2"], "applyToChildScopes": true}}}' headers: Accept: - application/json @@ -64,45 +735,48 @@ interactions: Connection: - keep-alive Content-Length: - - '822' + - '940' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --description --delete-all --deny-settings-excluded-principals + --deny-settings-excluded-actions --deny-settings-apply-to-child-scopes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T17:34:39.7844873Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:34:39.7844873Z\"\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"description\": + \"MG stack deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [],\r\n + \ \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:12:16.7297964Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:12:16.7297964Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab1b41f8-7c99-4593-b14a-658ac1125129?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f?api-version=2022-08-01-preview&t=2023-06-26T18%3a12%3a28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=tvOhJNQb1V3yoltaAqGIKZNwohF47GRmDihkErs0BzkBWoXegJ0zqIFrfNQHssdg1W1VqC6E6h4PN-pkagdIBc8uWs98HLPprNRDcyHlP_3XY-kS8BnlXMaTNKqjUKMs_qA9THFiBHXVjSewgh7YN_AN7EkLpROqdawrLIBidJWsKK9zSG4vEdYhwwNoWZfG_hrcD32P3Xe7Ovm1sVa8TE5uPJXjUILqMNM2ieV534VGjt9evhMrPiw5wJIsXDmNFfTN9a4eQ_Qmjv51etBu-HZaIwQqM7ZxPU32LmzPVtizZ549P_FrCEO4cpUM6cHaBOa-_c5OFFkJV8orkL77eg&h=q7ToHHqe_LuzST0TMoEjR6kCR4_1SCdDJ9eMMT8tIac cache-control: - no-cache content-length: - - '1226' + - '1447' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:34:40 GMT + - Mon, 26 Jun 2023 18:12:28 GMT expires: - '-1' pragma: @@ -131,16 +805,65 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --description --delete-all --deny-settings-excluded-principals + --deny-settings-excluded-actions --deny-settings-apply-to-child-scopes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f?api-version=2022-08-01-preview&t=2023-06-26T18%3A12%3A28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=tvOhJNQb1V3yoltaAqGIKZNwohF47GRmDihkErs0BzkBWoXegJ0zqIFrfNQHssdg1W1VqC6E6h4PN-pkagdIBc8uWs98HLPprNRDcyHlP_3XY-kS8BnlXMaTNKqjUKMs_qA9THFiBHXVjSewgh7YN_AN7EkLpROqdawrLIBidJWsKK9zSG4vEdYhwwNoWZfG_hrcD32P3Xe7Ovm1sVa8TE5uPJXjUILqMNM2ieV534VGjt9evhMrPiw5wJIsXDmNFfTN9a4eQ_Qmjv51etBu-HZaIwQqM7ZxPU32LmzPVtizZ549P_FrCEO4cpUM6cHaBOa-_c5OFFkJV8orkL77eg&h=q7ToHHqe_LuzST0TMoEjR6kCR4_1SCdDJ9eMMT8tIac + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f\",\r\n + \ \"name\": \"bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '212' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:12:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --description --delete-all --deny-settings-excluded-principals + --deny-settings-excluded-actions --deny-settings-apply-to-child-scopes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab1b41f8-7c99-4593-b14a-658ac1125129?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f?api-version=2022-08-01-preview&t=2023-06-26T18%3A12%3A28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=tvOhJNQb1V3yoltaAqGIKZNwohF47GRmDihkErs0BzkBWoXegJ0zqIFrfNQHssdg1W1VqC6E6h4PN-pkagdIBc8uWs98HLPprNRDcyHlP_3XY-kS8BnlXMaTNKqjUKMs_qA9THFiBHXVjSewgh7YN_AN7EkLpROqdawrLIBidJWsKK9zSG4vEdYhwwNoWZfG_hrcD32P3Xe7Ovm1sVa8TE5uPJXjUILqMNM2ieV534VGjt9evhMrPiw5wJIsXDmNFfTN9a4eQ_Qmjv51etBu-HZaIwQqM7ZxPU32LmzPVtizZ549P_FrCEO4cpUM6cHaBOa-_c5OFFkJV8orkL77eg&h=q7ToHHqe_LuzST0TMoEjR6kCR4_1SCdDJ9eMMT8tIac response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ab1b41f8-7c99-4593-b14a-658ac1125129\",\r\n - \ \"name\": \"ab1b41f8-7c99-4593-b14a-658ac1125129\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f\",\r\n + \ \"name\": \"bb2a9cf0-d56c-4c87-8f2b-c03e78baeb5f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:34:57 GMT + - Mon, 26 Jun 2023 18:12:58 GMT expires: - '-1' pragma: @@ -180,43 +903,45 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --description --delete-all --deny-settings-excluded-principals + --deny-settings-excluded-actions --deny-settings-apply-to-child-scopes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-34-40-04a93\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-12-17-41a11\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.2430842S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + \ \"description\": \"MG stack deployment\",\r\n \"duration\": \"PT16.5295705S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": [\r\n + \ \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:34:39.7844873Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:34:39.7844873Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-26T18:12:16.7297964Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:12:16.7297964Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1618' + - '1840' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:34:57 GMT + - Mon, 26 Jun 2023 18:12:58 GMT expires: - '-1' pragma: @@ -248,41 +973,42 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-34-40-04a93\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-12-17-41a11\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.2430842S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + \ \"description\": \"MG stack deployment\",\r\n \"duration\": \"PT16.5295705S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": [\r\n + \ \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:34:39.7844873Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:34:39.7844873Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-26T18:12:16.7297964Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:12:16.7297964Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1618' + - '1840' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:34:59 GMT + - Mon, 26 Jun 2023 18:12:59 GMT expires: - '-1' pragma: @@ -316,8 +1042,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -329,7 +1054,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 17:34:59 GMT + - Mon, 26 Jun 2023 18:12:59 GMT expires: - '-1' pragma: @@ -358,10 +1083,9 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --delete-resources --tags User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: @@ -376,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:34:59 GMT + - Mon, 26 Jun 2023 18:13:00 GMT expires: - '-1' pragma: @@ -391,15 +1115,16 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {"tag1 tag2": ""}, "properties": {"template": + {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": - false}}}' + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"excludedPrincipals": + [], "applyToChildScopes": false}}}' headers: Accept: - application/json @@ -410,45 +1135,45 @@ interactions: Connection: - keep-alive Content-Length: - - '738' + - '791' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --delete-resources --tags User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000004\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1 tag2\": + \"\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false,\r\n \"excludedPrincipals\": []\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n + \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:00.2209301Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:13:01.0355074Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f007e957-6463-48c5-b189-9d53f18c1b16?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e2a1103-d8ec-47d3-9f88-95abf9b4643f?api-version=2022-08-01-preview&t=2023-06-26T18%3a13%3a01&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ZpSddpLhTFr1mIsTNOTbFgxDxc-KarwIUwwgew8WzWp4jJ8OWmGU7w9L0wdU8tA3rahQk3f0JulXVrJUMQUWRcsG0beAUhuq-HbAY3HBDF5cUzD-gMI3FDYw11w_hqMioyr9WX_NxCK0gI75yc2mVTazH7nzLhjZJfZhcDFJLu_-zIwx3LnEtFtVCWL33LbdE5OWVjkTOhHdXleY7gPaQqs-oypftNuoRI1VevZMMRe6J8K-oZoqTNMarLtOI_qKjYlrYx2R7nxpYhaTAP5aXlPIjlnSMrSMuAMd0OQT0Roj6xEi_yKIsd_Nc551I0y5K8ECtprfQhQz4LQR0i-d8Q&h=TO-_lC0V8h1KftuC78s1R724M_v6szV4zHDoJAYrHLA cache-control: - no-cache content-length: - - '1201' + - '1301' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:00 GMT + - Mon, 26 Jun 2023 18:13:01 GMT expires: - '-1' pragma: @@ -477,16 +1202,63 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --delete-resources --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e2a1103-d8ec-47d3-9f88-95abf9b4643f?api-version=2022-08-01-preview&t=2023-06-26T18%3A13%3A01&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ZpSddpLhTFr1mIsTNOTbFgxDxc-KarwIUwwgew8WzWp4jJ8OWmGU7w9L0wdU8tA3rahQk3f0JulXVrJUMQUWRcsG0beAUhuq-HbAY3HBDF5cUzD-gMI3FDYw11w_hqMioyr9WX_NxCK0gI75yc2mVTazH7nzLhjZJfZhcDFJLu_-zIwx3LnEtFtVCWL33LbdE5OWVjkTOhHdXleY7gPaQqs-oypftNuoRI1VevZMMRe6J8K-oZoqTNMarLtOI_qKjYlrYx2R7nxpYhaTAP5aXlPIjlnSMrSMuAMd0OQT0Roj6xEi_yKIsd_Nc551I0y5K8ECtprfQhQz4LQR0i-d8Q&h=TO-_lC0V8h1KftuC78s1R724M_v6szV4zHDoJAYrHLA + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e2a1103-d8ec-47d3-9f88-95abf9b4643f\",\r\n + \ \"name\": \"5e2a1103-d8ec-47d3-9f88-95abf9b4643f\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '212' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:13:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources --tags User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f007e957-6463-48c5-b189-9d53f18c1b16?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e2a1103-d8ec-47d3-9f88-95abf9b4643f?api-version=2022-08-01-preview&t=2023-06-26T18%3A13%3A01&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ZpSddpLhTFr1mIsTNOTbFgxDxc-KarwIUwwgew8WzWp4jJ8OWmGU7w9L0wdU8tA3rahQk3f0JulXVrJUMQUWRcsG0beAUhuq-HbAY3HBDF5cUzD-gMI3FDYw11w_hqMioyr9WX_NxCK0gI75yc2mVTazH7nzLhjZJfZhcDFJLu_-zIwx3LnEtFtVCWL33LbdE5OWVjkTOhHdXleY7gPaQqs-oypftNuoRI1VevZMMRe6J8K-oZoqTNMarLtOI_qKjYlrYx2R7nxpYhaTAP5aXlPIjlnSMrSMuAMd0OQT0Roj6xEi_yKIsd_Nc551I0y5K8ECtprfQhQz4LQR0i-d8Q&h=TO-_lC0V8h1KftuC78s1R724M_v6szV4zHDoJAYrHLA response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f007e957-6463-48c5-b189-9d53f18c1b16\",\r\n - \ \"name\": \"f007e957-6463-48c5-b189-9d53f18c1b16\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5e2a1103-d8ec-47d3-9f88-95abf9b4643f\",\r\n + \ \"name\": \"5e2a1103-d8ec-47d3-9f88-95abf9b4643f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -495,7 +1267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:17 GMT + - Mon, 26 Jun 2023 18:13:32 GMT expires: - '-1' pragma: @@ -526,41 +1298,41 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters + --parameters --delete-resources --tags User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-00-8c2cd\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1 tag2\": + \"\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-13-01-d53d4\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.4772421S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \ \"duration\": \"PT5.7184192S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": + []\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:00.2209301Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:13:01.0355074Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1631' + - '1731' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:17 GMT + - Mon, 26 Jun 2023 18:13:32 GMT expires: - '-1' pragma: @@ -593,39 +1365,39 @@ interactions: - --name --management-group-id --location --template-file --deny-settings-mode --parameters User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-00-8c2cd\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1 tag2\": + \"\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": + \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": + \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-13-01-d53d4\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.4772421S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \ \"duration\": \"PT5.7184192S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": + []\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:00.2209301Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:13:01.0355074Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1631' + - '1731' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:19 GMT + - Mon, 26 Jun 2023 18:13:33 GMT expires: - '-1' pragma: @@ -644,15 +1416,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": - false}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"excludedPrincipals": + [], "applyToChildScopes": false}}}' headers: Accept: - application/json @@ -663,45 +1436,44 @@ interactions: Connection: - keep-alive Content-Length: - - '738' + - '776' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode --parameters User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000005\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:19.6109182Z\"\r\n + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n + \ \"excludedPrincipals\": []\r\n },\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-26T18:13:01.0355074Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:13:34.029216Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69ecd8b5-3b54-4448-ae82-75c5138361f8?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b6658fe-f14e-467c-8e4d-89617aabce42?api-version=2022-08-01-preview&t=2023-06-26T18%3a13%3a34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SiMONYtxnU2JyfwnydLuxQ-P-j8VVvV8ESBTiboJV7MlaeXuF-C0NND3SsrYin3kqa61HdBLqHTonvWY1-CUYOZbEgX5_wjXdoV_YO_krPLh0yJcXv-D21HGU8dCI0rmg65o_zwABfsDQ8GZSxWyqr50g5ghYJLKWEx36vKk9c4hKzZ130HZ_5GTF7YsH6IF5NG-yvSvnhPdaT82e1RGV999vFn_JdGbjL-iBk7oaSJ22PozLUqHClbWzDcgYUSa27LOCBRYKl5sxuHwqWUy0OOLpXeXYjwKVcaVNf3DezGwYp_4KakzL5xFxaUEgqLbANNW1Wj1SIBYSCYiROq8JA&h=Xgf478bQEjZ1pjvK8H2Du1TOobvyauLwVLIvlBdafEA cache-control: - no-cache content-length: - - '1201' + - '1275' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:19 GMT + - Mon, 26 Jun 2023 18:13:34 GMT expires: - '-1' pragma: @@ -736,14 +1508,61 @@ interactions: - --name --management-group-id --location --template-file --deny-settings-mode --parameters User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b6658fe-f14e-467c-8e4d-89617aabce42?api-version=2022-08-01-preview&t=2023-06-26T18%3A13%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SiMONYtxnU2JyfwnydLuxQ-P-j8VVvV8ESBTiboJV7MlaeXuF-C0NND3SsrYin3kqa61HdBLqHTonvWY1-CUYOZbEgX5_wjXdoV_YO_krPLh0yJcXv-D21HGU8dCI0rmg65o_zwABfsDQ8GZSxWyqr50g5ghYJLKWEx36vKk9c4hKzZ130HZ_5GTF7YsH6IF5NG-yvSvnhPdaT82e1RGV999vFn_JdGbjL-iBk7oaSJ22PozLUqHClbWzDcgYUSa27LOCBRYKl5sxuHwqWUy0OOLpXeXYjwKVcaVNf3DezGwYp_4KakzL5xFxaUEgqLbANNW1Wj1SIBYSCYiROq8JA&h=Xgf478bQEjZ1pjvK8H2Du1TOobvyauLwVLIvlBdafEA + response: + body: + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b6658fe-f14e-467c-8e4d-89617aabce42\",\r\n + \ \"name\": \"2b6658fe-f14e-467c-8e4d-89617aabce42\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '212' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 18:13:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack mg create + Connection: + - keep-alive + ParameterSetName: + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69ecd8b5-3b54-4448-ae82-75c5138361f8?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b6658fe-f14e-467c-8e4d-89617aabce42?api-version=2022-08-01-preview&t=2023-06-26T18%3A13%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SiMONYtxnU2JyfwnydLuxQ-P-j8VVvV8ESBTiboJV7MlaeXuF-C0NND3SsrYin3kqa61HdBLqHTonvWY1-CUYOZbEgX5_wjXdoV_YO_krPLh0yJcXv-D21HGU8dCI0rmg65o_zwABfsDQ8GZSxWyqr50g5ghYJLKWEx36vKk9c4hKzZ130HZ_5GTF7YsH6IF5NG-yvSvnhPdaT82e1RGV999vFn_JdGbjL-iBk7oaSJ22PozLUqHClbWzDcgYUSa27LOCBRYKl5sxuHwqWUy0OOLpXeXYjwKVcaVNf3DezGwYp_4KakzL5xFxaUEgqLbANNW1Wj1SIBYSCYiROq8JA&h=Xgf478bQEjZ1pjvK8H2Du1TOobvyauLwVLIvlBdafEA response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69ecd8b5-3b54-4448-ae82-75c5138361f8\",\r\n - \ \"name\": \"69ecd8b5-3b54-4448-ae82-75c5138361f8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2b6658fe-f14e-467c-8e4d-89617aabce42\",\r\n + \ \"name\": \"2b6658fe-f14e-467c-8e4d-89617aabce42\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -752,7 +1571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:36 GMT + - Mon, 26 Jun 2023 18:14:04 GMT expires: - '-1' pragma: @@ -785,40 +1604,40 @@ interactions: - --name --management-group-id --location --template-file --deny-settings-mode --parameters User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-19-4388d\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-13-34-549ee\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.129553S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \ \"duration\": \"PT5.1553877S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": + []\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:19.6109182Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:13:34.029216Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1766' + - '1841' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:36 GMT + - Mon, 26 Jun 2023 18:14:04 GMT expires: - '-1' pragma: @@ -850,8 +1669,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -865,7 +1683,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:38 GMT + - Mon, 26 Jun 2023 18:14:06 GMT expires: - '-1' pragma: @@ -893,8 +1711,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2022-09-01 response: @@ -908,7 +1725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:38 GMT + - Mon, 26 Jun 2023 18:14:05 GMT expires: - '-1' pragma: @@ -935,42 +1752,42 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters --delete-resources --delete-resources + --parameters --delete-resources User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-19-4388d\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-13-34-549ee\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.129553S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \ \"duration\": \"PT5.1553877S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": + []\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:19.6109182Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:13:34.029216Z\"\r\n },\r\n + \ \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1766' + - '1841' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:38 GMT + - Mon, 26 Jun 2023 18:14:06 GMT expires: - '-1' pragma: @@ -989,15 +1806,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": - false}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"excludedPrincipals": + [], "applyToChildScopes": false}}}' headers: Accept: - application/json @@ -1008,45 +1826,44 @@ interactions: Connection: - keep-alive Content-Length: - - '740' + - '778' Content-Type: - application/json ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters --delete-resources --delete-resources + --parameters --delete-resources User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-three000006\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:39.2800901Z\"\r\n + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n + \ \"excludedPrincipals\": []\r\n },\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-26T18:13:01.0355074Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:14:07.3161446Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa?api-version=2022-08-01-preview + - https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/435972ee-2174-4b68-af58-c496d5b1590b?api-version=2022-08-01-preview&t=2023-06-26T18%3a14%3a07&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ZmPvqBBz6gPN6QQFK4RRRyKdGbrLAAroziURACxAs6lyvb4BUF7ZPYOGUvW-p6p3CmeKHXlJzBrU7RsbAb6vpZywvxqPFT3xfFVLW3EyPoaoF8xg5-8wDMuI5wvPPmNgVPcgUtiVGMIsZBQoFfCmJwxERORSVBwRTnR-nDGSNzswMTFWKH6XVZWbFtH2dFxsLGm96zUekYnXYLlVA_5o29C68OJ9AJ3lwIutkguUPNtYWjUzXNgJCST02AfEZuIjFneXmyXFPmBBFQX8mQS-UztaF_dQm0_RBUu57iyoKTGrEStq8wZvv4uAUOoKCXqdWJSEWoNgG_4T_KFwpyl_Gw&h=rJBD2aeMG-cP6Yyl64Zl8JYSKbGiz4kSb9qnP8XF-H8 cache-control: - no-cache content-length: - - '1203' + - '1278' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:39 GMT + - Mon, 26 Jun 2023 18:14:07 GMT expires: - '-1' pragma: @@ -1079,25 +1896,24 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters --delete-resources --delete-resources + --parameters --delete-resources User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/435972ee-2174-4b68-af58-c496d5b1590b?api-version=2022-08-01-preview&t=2023-06-26T18%3A14%3A07&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ZmPvqBBz6gPN6QQFK4RRRyKdGbrLAAroziURACxAs6lyvb4BUF7ZPYOGUvW-p6p3CmeKHXlJzBrU7RsbAb6vpZywvxqPFT3xfFVLW3EyPoaoF8xg5-8wDMuI5wvPPmNgVPcgUtiVGMIsZBQoFfCmJwxERORSVBwRTnR-nDGSNzswMTFWKH6XVZWbFtH2dFxsLGm96zUekYnXYLlVA_5o29C68OJ9AJ3lwIutkguUPNtYWjUzXNgJCST02AfEZuIjFneXmyXFPmBBFQX8mQS-UztaF_dQm0_RBUu57iyoKTGrEStq8wZvv4uAUOoKCXqdWJSEWoNgG_4T_KFwpyl_Gw&h=rJBD2aeMG-cP6Yyl64Zl8JYSKbGiz4kSb9qnP8XF-H8 response: body: - string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa\",\r\n - \ \"name\": \"6b05b60c-cd70-4ccd-9db7-6b804a0f9cfa\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/435972ee-2174-4b68-af58-c496d5b1590b\",\r\n + \ \"name\": \"435972ee-2174-4b68-af58-c496d5b1590b\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '209' + - '212' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:56 GMT + - Mon, 26 Jun 2023 18:14:07 GMT expires: - '-1' pragma: @@ -1128,42 +1944,24 @@ interactions: - keep-alive ParameterSetName: - --name --management-group-id --location --template-file --deny-settings-mode - --parameters --delete-resources --delete-resources + --parameters --delete-resources User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/435972ee-2174-4b68-af58-c496d5b1590b?api-version=2022-08-01-preview&t=2023-06-26T18%3A14%3A07&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ZmPvqBBz6gPN6QQFK4RRRyKdGbrLAAroziURACxAs6lyvb4BUF7ZPYOGUvW-p6p3CmeKHXlJzBrU7RsbAb6vpZywvxqPFT3xfFVLW3EyPoaoF8xg5-8wDMuI5wvPPmNgVPcgUtiVGMIsZBQoFfCmJwxERORSVBwRTnR-nDGSNzswMTFWKH6XVZWbFtH2dFxsLGm96zUekYnXYLlVA_5o29C68OJ9AJ3lwIutkguUPNtYWjUzXNgJCST02AfEZuIjFneXmyXFPmBBFQX8mQS-UztaF_dQm0_RBUu57iyoKTGrEStq8wZvv4uAUOoKCXqdWJSEWoNgG_4T_KFwpyl_Gw&h=rJBD2aeMG-cP6Yyl64Zl8JYSKbGiz4kSb9qnP8XF-H8 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-39-69c38\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.1114154S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:39.2800901Z\"\r\n - \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/435972ee-2174-4b68-af58-c496d5b1590b\",\r\n + \ \"name\": \"435972ee-2174-4b68-af58-c496d5b1590b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '1771' + - '209' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:56 GMT + - Mon, 26 Jun 2023 18:14:37 GMT expires: - '-1' pragma: @@ -1185,38 +1983,61 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group show + - stack mg create Connection: - keep-alive ParameterSetName: - - -n + - --name --management-group-id --location --template-file --deny-settings-mode + --parameters --delete-resources User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-14-07-41a6f\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT5.3655209S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": + []\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:14:07.3161446Z\"\r\n + \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '252' + - '1846' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:57 GMT + - Mon, 26 Jun 2023 18:14:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1238,22 +2059,21 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '256' + - '252' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:57 GMT + - Mon, 26 Jun 2023 18:14:39 GMT expires: - '-1' pragma: @@ -1275,39 +2095,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource list + - group show Connection: - keep-alive + ParameterSetName: + - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory - Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working - Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU - Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage - - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my - key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX%2fnlZqJkWq9rYHlb66X7%2f3pP4x6rZDvzh0x8vo84%2fRtrr014s%2f%2bjza3tKrKfek0OxW%2beqWNM8HPe7rpJOvuL%2bWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ%2fYdzs%2f5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW%2f3E5lqz8wN%2bhHXL7dwMFWILwlqHjXO2VtbP%2fRnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2bOPzpZImYpxr%2f1v%2fNnnRi%2fXCTpPcfv3b8Q1ysLCepp9xn6%2b8B%2ftSnVoogdxgd%2fTsXdvAIMyOnBX5BMl%2bjR0dwf%2bIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2bRI8URSxOobGP9dH%2fNlC%2buTmsD%2f6SsFiWLXpVnw3ZnZdO24d%2fvqVVnKb4phI5hpZ4ofGHw2M%2b%2fqeVBD7HmNCQlP3WoFA%2feDhk%2bM237BvhyM%2fSAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC%2fqpPD4GL2W%2fZ3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2bj9bVWsIqpK7r%2fCfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu%2fpwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2bOjlOblH7Sor3Tg1ji%2beuLOWFbs7rKAYAmJ%2f25jvy73f8dAHMionmSgGGLMvity%2bC6%2bfBn9%2fPkL"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '109381' + - '256' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:35:59 GMT + - Mon, 26 Jun 2023 18:14:39 GMT expires: - '-1' pragma: @@ -1325,7 +2133,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1333,22 +2141,29 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX/nlZqJkWq9rYHlb66X7/3pP4x6rZDvzh0x8vo84/Rtrr014s/%2Bjza3tKrKfek0OxW%2BeqWNM8HPe7rpJOvuL%2BWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ/Ydzs/5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW/3E5lqz8wN%2BhHXL7dwMFWILwlqHjXO2VtbP/RnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2BOPzpZImYpxr/1v/NnnRi/XCTpPcfv3b8Q1ysLCepp9xn6%2B8B/tSnVoogdxgd/TsXdvAIMyOnBX5BMl%2BjR0dwf%2BIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2BRI8URSxOobGP9dH/NlC%2BuTmsD/6SsFiWLXpVnw3ZnZdO24d/vqVVnKb4phI5hpZ4ofGHw2M%2B/qeVBD7HmNCQlP3WoFA/eDhk%2BM237BvhyM/SAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC/qpPD4GL2W/Z3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2Bj9bVWsIqpK7r/CfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu/pwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2BOjlOblH7Sor3Tg1ji%2BeuLOWFbs7rKAYAmJ/25jvy73f8dAHMionmSgGGLMvity%2BC6%2BfBn9/PkL + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2023-05-22T22:02:46.9870949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-20T04:10:15.1676505Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T18:11:32.5648424Z","changedTime":"2023-06-26T18:11:40.0134878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T18:11:39.5759867Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T18:11:39.5759867Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T18:11:40.9880172Z","changedTime":"2023-06-26T18:11:41.6853866Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T18:11:41.4822579Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T18:11:41.4822579Z"}}]}' headers: cache-control: - no-cache content-length: - - '4342' + - '148841' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:36:00 GMT + - Mon, 26 Jun 2023 18:14:39 GMT expires: - '-1' pragma: @@ -1376,40 +2191,40 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-04-17-17-35-39-69c38\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-18-14-07-41a6f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.1114154S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": + \ \"duration\": \"PT5.3655209S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": + []\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": + {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T17:35:00.2209301Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:13:01.0355074Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T17:35:39.2800901Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:14:07.3161446Z\"\r\n \ },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1771' + - '1846' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 17:36:01 GMT + - Mon, 26 Jun 2023 18:14:40 GMT expires: - '-1' pragma: @@ -1443,8 +2258,7 @@ interactions: ParameterSetName: - --name --management-group-id --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/AzBlueprintAssignTest/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1456,7 +2270,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 17:36:02 GMT + - Mon, 26 Jun 2023 18:14:40 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index 115b46b1a18..3d3a3f958e3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:01:57 GMT + - Mon, 26 Jun 2023 17:55:23 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:01:58 GMT + - Mon, 26 Jun 2023 17:55:23 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:01:59.6551891Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:25.4140574Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:01:59.6551891Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:25.4140574Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:00 GMT + - Mon, 26 Jun 2023 17:55:25 GMT expires: - '-1' pragma: @@ -183,21 +183,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:26.7734519Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:26.7734519Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1476' + - '1478' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:01 GMT + - Mon, 26 Jun 2023 17:55:26 GMT expires: - '-1' pragma: @@ -226,7 +226,8 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -244,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:02 GMT + - Mon, 26 Jun 2023 17:55:27 GMT expires: - '-1' pragma: @@ -266,8 +267,9 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": - false}}}' + {"resources": "delete", "resourceGroups": "delete"}, "description": "stack deployment", + "denySettings": {"excludedPrincipals": ["principal1", "principal2"], "excludedActions": + ["action1", "action2"], "applyToChildScopes": true}}}' headers: Accept: - application/json @@ -278,12 +280,13 @@ interactions: Connection: - keep-alive Content-Length: - - '737' + - '866' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -291,31 +294,34 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:03.2930232Z\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"description\": \"stack + deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n + \ \"principal1\",\r\n \"principal2\"\r\n ],\r\n \"excludedActions\": + [\r\n \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:28.001401Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:28.001401Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c?api-version=2022-08-01-preview&t=2023-06-26T17%3a55%3a28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Z7xy5SpRDyjzR1lstM0iL0-yLumJUDD6MOITUTBf_WuGllbxbC0OSYKUbhP8cD9bKWozaWDICRYcAKFxFKaMCHEilG2xHnPcc6fP8X-7NDwQ64NiYWo0xY3_0iqzGMn5YsYV6BFNPHbBQX44kMCQQulTmDxwLMR2vm0GuOMG_fT49Yap4g7A_XkuJODCnTArCGCBkLJGPFNYs785I1u1dkYE_NGQogR6gBIhuok4DZXb4j7SC-XVPnIaVPf2WXlSUAjmebZFS7KLbwnBkDI2K2l1ngHWv2LKtIZ3mbyrJ1bzS0etJ3rnExCpG5rYk94JsqMwGSR2gws0ThsVxQmj7Q&h=hD-8xoom4iejzRQd28Oy15dtvwaIZbRBSzzaQXO3maA cache-control: - no-cache content-length: - - '1223' + - '1423' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:03 GMT + - Mon, 26 Jun 2023 17:55:28 GMT expires: - '-1' pragma: @@ -344,15 +350,16 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c?api-version=2022-08-01-preview&t=2023-06-26T17%3A55%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Z7xy5SpRDyjzR1lstM0iL0-yLumJUDD6MOITUTBf_WuGllbxbC0OSYKUbhP8cD9bKWozaWDICRYcAKFxFKaMCHEilG2xHnPcc6fP8X-7NDwQ64NiYWo0xY3_0iqzGMn5YsYV6BFNPHbBQX44kMCQQulTmDxwLMR2vm0GuOMG_fT49Yap4g7A_XkuJODCnTArCGCBkLJGPFNYs785I1u1dkYE_NGQogR6gBIhuok4DZXb4j7SC-XVPnIaVPf2WXlSUAjmebZFS7KLbwnBkDI2K2l1ngHWv2LKtIZ3mbyrJ1bzS0etJ3rnExCpG5rYk94JsqMwGSR2gws0ThsVxQmj7Q&h=hD-8xoom4iejzRQd28Oy15dtvwaIZbRBSzzaQXO3maA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n - \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n + \ \"name\": \"9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -361,7 +368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:03 GMT + - Mon, 26 Jun 2023 17:55:28 GMT expires: - '-1' pragma: @@ -392,15 +399,16 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c?api-version=2022-08-01-preview&t=2023-06-26T17%3A55%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Z7xy5SpRDyjzR1lstM0iL0-yLumJUDD6MOITUTBf_WuGllbxbC0OSYKUbhP8cD9bKWozaWDICRYcAKFxFKaMCHEilG2xHnPcc6fP8X-7NDwQ64NiYWo0xY3_0iqzGMn5YsYV6BFNPHbBQX44kMCQQulTmDxwLMR2vm0GuOMG_fT49Yap4g7A_XkuJODCnTArCGCBkLJGPFNYs785I1u1dkYE_NGQogR6gBIhuok4DZXb4j7SC-XVPnIaVPf2WXlSUAjmebZFS7KLbwnBkDI2K2l1ngHWv2LKtIZ3mbyrJ1bzS0etJ3rnExCpG5rYk94JsqMwGSR2gws0ThsVxQmj7Q&h=hD-8xoom4iejzRQd28Oy15dtvwaIZbRBSzzaQXO3maA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n - \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n + \ \"name\": \"9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -409,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:33 GMT + - Mon, 26 Jun 2023 17:55:57 GMT expires: - '-1' pragma: @@ -440,7 +448,8 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -448,33 +457,36 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n - \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-55-28-fc967\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.287491S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:28.001401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:28.001401Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1663' + - '1862' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:33 GMT + - Mon, 26 Jun 2023 17:55:58 GMT expires: - '-1' pragma: @@ -512,33 +524,36 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n - \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-55-28-fc967\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.287491S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:28.001401Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:28.001401Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1663' + - '1862' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:35 GMT + - Mon, 26 Jun 2023 17:55:58 GMT expires: - '-1' pragma: @@ -584,7 +599,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:02:35 GMT + - Mon, 26 Jun 2023 17:55:59 GMT expires: - '-1' pragma: @@ -631,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:36 GMT + - Mon, 26 Jun 2023 17:56:00 GMT expires: - '-1' pragma: @@ -678,21 +693,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:26.7734519Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:26.7734519Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1476' + - '1478' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:38 GMT + - Mon, 26 Jun 2023 17:56:00 GMT expires: - '-1' pragma: @@ -746,14 +761,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:01.0776781Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:01.0776781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592?api-version=2022-08-01-preview&t=2023-06-26T17%3a56%3a01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wwxMsVHce3bCC-iskPSK9rAfxa4vg_K-3v2kRMKIGX9Rj9MJhkID9wzOfFnlAhoZa8fFtQBEEEPnJXrRnIWWN9WYtpKCE88jZVvH6nw8nOuOUlxfM-4awTuL9dNNaZb_AWH4xc81fuGXK0Z_NUAri_JzKExOlsOLuK09ZdCUKkKFhKqkNwnliTK8xZizG5_NiwsZpYK9GbKXednXNr1jkJ8TCxMVQADX0CQ4IDQxXtnwIn4JFmFdp-1Dr8AjfE5eZ-UPvCxODipT2ZDLSt3oUItHhqS2Bgu7Y3hcMF3b4SqXAREO0lHrv1F9cFSVcBPRIpKNos4ON3ETWmkP7F7fzg&h=u3jsS7HAcZRXrWR3yJxkQNRqYfEkGK6KQEl79RN3RA0 cache-control: - no-cache content-length: @@ -761,7 +776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:38 GMT + - Mon, 26 Jun 2023 17:56:01 GMT expires: - '-1' pragma: @@ -794,11 +809,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wwxMsVHce3bCC-iskPSK9rAfxa4vg_K-3v2kRMKIGX9Rj9MJhkID9wzOfFnlAhoZa8fFtQBEEEPnJXrRnIWWN9WYtpKCE88jZVvH6nw8nOuOUlxfM-4awTuL9dNNaZb_AWH4xc81fuGXK0Z_NUAri_JzKExOlsOLuK09ZdCUKkKFhKqkNwnliTK8xZizG5_NiwsZpYK9GbKXednXNr1jkJ8TCxMVQADX0CQ4IDQxXtnwIn4JFmFdp-1Dr8AjfE5eZ-UPvCxODipT2ZDLSt3oUItHhqS2Bgu7Y3hcMF3b4SqXAREO0lHrv1F9cFSVcBPRIpKNos4ON3ETWmkP7F7fzg&h=u3jsS7HAcZRXrWR3yJxkQNRqYfEkGK6KQEl79RN3RA0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n - \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n + \ \"name\": \"25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -807,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:39 GMT + - Mon, 26 Jun 2023 17:56:01 GMT expires: - '-1' pragma: @@ -842,11 +857,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wwxMsVHce3bCC-iskPSK9rAfxa4vg_K-3v2kRMKIGX9Rj9MJhkID9wzOfFnlAhoZa8fFtQBEEEPnJXrRnIWWN9WYtpKCE88jZVvH6nw8nOuOUlxfM-4awTuL9dNNaZb_AWH4xc81fuGXK0Z_NUAri_JzKExOlsOLuK09ZdCUKkKFhKqkNwnliTK8xZizG5_NiwsZpYK9GbKXednXNr1jkJ8TCxMVQADX0CQ4IDQxXtnwIn4JFmFdp-1Dr8AjfE5eZ-UPvCxODipT2ZDLSt3oUItHhqS2Bgu7Y3hcMF3b4SqXAREO0lHrv1F9cFSVcBPRIpKNos4ON3ETWmkP7F7fzg&h=u3jsS7HAcZRXrWR3yJxkQNRqYfEkGK6KQEl79RN3RA0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n - \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n + \ \"name\": \"25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -855,7 +870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:09 GMT + - Mon, 26 Jun 2023 17:56:31 GMT expires: - '-1' pragma: @@ -896,8 +911,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n - \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-01-802d1\",\r\n + \ \"duration\": \"PT9.2424305S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -909,9 +924,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:01.0776781Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:01.0776781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -922,7 +937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:09 GMT + - Mon, 26 Jun 2023 17:56:31 GMT expires: - '-1' pragma: @@ -962,8 +977,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n - \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-01-802d1\",\r\n + \ \"duration\": \"PT9.2424305S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -975,9 +990,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:01.0776781Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:01.0776781Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -988,7 +1003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:10 GMT + - Mon, 26 Jun 2023 17:56:32 GMT expires: - '-1' pragma: @@ -1034,7 +1049,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:03:10 GMT + - Mon, 26 Jun 2023 17:56:32 GMT expires: - '-1' pragma: @@ -1080,7 +1095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:11 GMT + - Mon, 26 Jun 2023 17:56:33 GMT expires: - '-1' pragma: @@ -1094,6 +1109,157 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://aka.ms/BicepLatestRelease + response: + body: + string: '' + headers: + cache-control: + - max-age=0, no-cache, no-store + connection: + - keep-alive + content-length: + - '0' + date: + - Mon, 26 Jun 2023 17:56:34 GMT + expires: + - Mon, 26 Jun 2023 17:56:34 GMT + location: + - https://downloads.bicep.azure.com/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://downloads.bicep.azure.com/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files + (bicep-style parameters file). This includes support for:\r\n - support for + expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - + supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group + create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate + bicepparam file from given Bicep file (#10595)\r\n - Buildparams command + vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env + variables in .bicepparam files (#10726)\r\n - Support bicepparam files for + VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - + Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming + modules from ACR (#10747)\r\n* Bicep build command linter provides a structured + output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* + Mark overload matches as PotentialMatches if any argument is of type ''any'' + (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* + Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from + symbol resolution logic (#10626)\r\n* Derive operation return type from operands + (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in + addition to metadata.json (#10860)\r\n* Add intellisense support for param + and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI + by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument + is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries + (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* + Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' + headers: + accept-ranges: + - bytes + connection: + - keep-alive + content-length: + - '41663' + content-type: + - application/octet-stream + date: + - Mon, 26 Jun 2023 17:56:34 GMT + etag: + - '0x8DB75852C02DBEA' + last-modified: + - Sun, 25 Jun 2023 14:05:03 GMT + x-azure-ref: + - 20230626T175634Z-1q0fc2t1ut41hfmtb06702qrdg00000007n000000000ha6z + x-cache: + - TCP_HIT + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + status: + code: 200 + message: OK - request: body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": @@ -1135,13 +1301,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:03:17.1566091Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n + \"2023-06-26T17:56:36.3339402Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:36.3339402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6?api-version=2022-08-01-preview&t=2023-06-26T17%3a56%3a36&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=faL4wjqiOIRkWxWvvD73mV6EmEIDxTdo4oul5c4dK0yGD6GwkBrIeL2PoaYoTtzn9W_r2kiObfIIb3mXGer9a79m4GAbNuaOjbiVUHYUx5yEIjU7C3iLNh5Q6-94wFaLhBX1Ph4hjI44l0akSc78fmgsl6qv94ym1CPugV9Y6YKn0dltEZXXhrx5THlbL-v1j1h_hlf0T762F5GWvIsiTIBcpX1Le-SmXiV8j2v9QWZeWlVTjXGsatgRiDd1qQ6h0tAM5Th1oUMec1JONSawRKnuq28KrEUBGy0uBmKKpT8y0Q0kikrR27-y_k4ajdgeJE87thWSl3ZKeJK679ABcg&h=NG1nXxr8_MzZYOVNLtsZiQ3Ev7GsCmGUBNpZ7KQkBHI cache-control: - no-cache content-length: @@ -1149,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:17 GMT + - Mon, 26 Jun 2023 17:56:36 GMT expires: - '-1' pragma: @@ -1181,11 +1347,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A36&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=faL4wjqiOIRkWxWvvD73mV6EmEIDxTdo4oul5c4dK0yGD6GwkBrIeL2PoaYoTtzn9W_r2kiObfIIb3mXGer9a79m4GAbNuaOjbiVUHYUx5yEIjU7C3iLNh5Q6-94wFaLhBX1Ph4hjI44l0akSc78fmgsl6qv94ym1CPugV9Y6YKn0dltEZXXhrx5THlbL-v1j1h_hlf0T762F5GWvIsiTIBcpX1Le-SmXiV8j2v9QWZeWlVTjXGsatgRiDd1qQ6h0tAM5Th1oUMec1JONSawRKnuq28KrEUBGy0uBmKKpT8y0Q0kikrR27-y_k4ajdgeJE87thWSl3ZKeJK679ABcg&h=NG1nXxr8_MzZYOVNLtsZiQ3Ev7GsCmGUBNpZ7KQkBHI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n - \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n + \ \"name\": \"0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1194,7 +1360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:17 GMT + - Mon, 26 Jun 2023 17:56:36 GMT expires: - '-1' pragma: @@ -1228,11 +1394,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A36&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=faL4wjqiOIRkWxWvvD73mV6EmEIDxTdo4oul5c4dK0yGD6GwkBrIeL2PoaYoTtzn9W_r2kiObfIIb3mXGer9a79m4GAbNuaOjbiVUHYUx5yEIjU7C3iLNh5Q6-94wFaLhBX1Ph4hjI44l0akSc78fmgsl6qv94ym1CPugV9Y6YKn0dltEZXXhrx5THlbL-v1j1h_hlf0T762F5GWvIsiTIBcpX1Le-SmXiV8j2v9QWZeWlVTjXGsatgRiDd1qQ6h0tAM5Th1oUMec1JONSawRKnuq28KrEUBGy0uBmKKpT8y0Q0kikrR27-y_k4ajdgeJE87thWSl3ZKeJK679ABcg&h=NG1nXxr8_MzZYOVNLtsZiQ3Ev7GsCmGUBNpZ7KQkBHI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n - \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n + \ \"name\": \"0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1241,7 +1407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:47 GMT + - Mon, 26 Jun 2023 17:57:06 GMT expires: - '-1' pragma: @@ -1281,8 +1447,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n - \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-36-9b31d\",\r\n + \ \"duration\": \"PT6.3494575S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1292,9 +1458,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:36.3339402Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:36.3339402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1305,7 +1471,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:47 GMT + - Mon, 26 Jun 2023 17:57:06 GMT expires: - '-1' pragma: @@ -1345,8 +1511,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n - \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-36-9b31d\",\r\n + \ \"duration\": \"PT6.3494575S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1356,9 +1522,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:36.3339402Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:36.3339402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1369,7 +1535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:49 GMT + - Mon, 26 Jun 2023 17:57:08 GMT expires: - '-1' pragma: @@ -1415,7 +1581,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:03:49 GMT + - Mon, 26 Jun 2023 17:57:08 GMT expires: - '-1' pragma: @@ -1462,7 +1628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:49 GMT + - Mon, 26 Jun 2023 17:57:08 GMT expires: - '-1' pragma: @@ -1526,14 +1692,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:09.1981058Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243?api-version=2022-08-01-preview&t=2023-06-26T17%3a57%3a09&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=OH7ItkI1bg3oI3MmgdQ2x4A91eGbPUWJ32rZToBlBMfSECzJldJwv7aNkzfm7ZS7Y7eS0AcugyPq0CEbd4PxBozAvC2qmGhaQDLcdcw3TR1FiZkFeQOCP_Dur7eEXuHLD_vCSlzGuTdcuWx_rH3VryoRWSvmZKLy1-BlSe2ImXvjiDyX6eu4ApjD9qAu9Brn3CljxPhvRq00s28b_WgdU1ueGXnjEj_10qxCOC6ruD1iEtCpM-yPTFHEk0WURWd48F_9aE24Mxs8MZsx_JZotg9on2t9FkprNvHUSE3GRiguT13C0C2G92JsVRDFSNZOBt53PhCMZCdyWyyT9lIL4g&h=rieFvRHSQRoxbOkgZmG8csmBws1y_XCEXKRwSwbSGnM cache-control: - no-cache content-length: @@ -1541,7 +1707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:50 GMT + - Mon, 26 Jun 2023 17:57:09 GMT expires: - '-1' pragma: @@ -1574,11 +1740,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A09&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=OH7ItkI1bg3oI3MmgdQ2x4A91eGbPUWJ32rZToBlBMfSECzJldJwv7aNkzfm7ZS7Y7eS0AcugyPq0CEbd4PxBozAvC2qmGhaQDLcdcw3TR1FiZkFeQOCP_Dur7eEXuHLD_vCSlzGuTdcuWx_rH3VryoRWSvmZKLy1-BlSe2ImXvjiDyX6eu4ApjD9qAu9Brn3CljxPhvRq00s28b_WgdU1ueGXnjEj_10qxCOC6ruD1iEtCpM-yPTFHEk0WURWd48F_9aE24Mxs8MZsx_JZotg9on2t9FkprNvHUSE3GRiguT13C0C2G92JsVRDFSNZOBt53PhCMZCdyWyyT9lIL4g&h=rieFvRHSQRoxbOkgZmG8csmBws1y_XCEXKRwSwbSGnM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n - \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243\",\r\n + \ \"name\": \"5013a92f-3120-4a72-a195-31c434ba4243\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1587,7 +1753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:50 GMT + - Mon, 26 Jun 2023 17:57:09 GMT expires: - '-1' pragma: @@ -1622,11 +1788,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A09&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=OH7ItkI1bg3oI3MmgdQ2x4A91eGbPUWJ32rZToBlBMfSECzJldJwv7aNkzfm7ZS7Y7eS0AcugyPq0CEbd4PxBozAvC2qmGhaQDLcdcw3TR1FiZkFeQOCP_Dur7eEXuHLD_vCSlzGuTdcuWx_rH3VryoRWSvmZKLy1-BlSe2ImXvjiDyX6eu4ApjD9qAu9Brn3CljxPhvRq00s28b_WgdU1ueGXnjEj_10qxCOC6ruD1iEtCpM-yPTFHEk0WURWd48F_9aE24Mxs8MZsx_JZotg9on2t9FkprNvHUSE3GRiguT13C0C2G92JsVRDFSNZOBt53PhCMZCdyWyyT9lIL4g&h=rieFvRHSQRoxbOkgZmG8csmBws1y_XCEXKRwSwbSGnM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n - \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243\",\r\n + \ \"name\": \"5013a92f-3120-4a72-a195-31c434ba4243\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1635,7 +1801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:21 GMT + - Mon, 26 Jun 2023 17:57:39 GMT expires: - '-1' pragma: @@ -1676,8 +1842,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n - \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-09-c89e6\",\r\n + \ \"duration\": \"PT5.1877254S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -1688,9 +1854,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:09.1981058Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1701,7 +1867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:21 GMT + - Mon, 26 Jun 2023 17:57:39 GMT expires: - '-1' pragma: @@ -1742,8 +1908,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n - \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-09-c89e6\",\r\n + \ \"duration\": \"PT5.1877254S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -1754,9 +1920,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:09.1981058Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1767,7 +1933,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:23 GMT + - Mon, 26 Jun 2023 17:57:40 GMT expires: - '-1' pragma: @@ -1835,14 +2001,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:41.4648055Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3a04%3a23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25?api-version=2022-08-01-preview&t=2023-06-26T17%3a57%3a41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CtQv6rmQKGl_6-ihYNf5vRba3e_PUmCz7a7YK_zQiWoXL_MW_nG7eqUrWD8FzcIA8iiDh18ranjyq2aXQ9Xq6ijnDCyzeD4P5lbhdnU2SLmahKymoEnkmncu7jDnTQmz9deu3b2w_jfsQLiNHYSMyjad-lz8Zd4RRPxyA0pOdwmdaMRMDn8yJpX7Fsg8mnorOeUHn6tS0_ZPOsyslt5zfJ3WP-xjxU__u95QW3lgdZFk2xpsEvAR3exNXmm0oOflufL5MBJTB58o0AfY6YniNjCjMeHYAkrCr9lEMdl521LaVQB7epORskp0k1DVwLZz0DfH4D-MDTkcxDSulHcbyw&h=hHmUObPJnkAPhDbSvPLpNo_vAtj6zJcRSrOY_9rYxRw cache-control: - no-cache content-length: @@ -1850,7 +2016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:23 GMT + - Mon, 26 Jun 2023 17:57:41 GMT expires: - '-1' pragma: @@ -1887,11 +2053,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CtQv6rmQKGl_6-ihYNf5vRba3e_PUmCz7a7YK_zQiWoXL_MW_nG7eqUrWD8FzcIA8iiDh18ranjyq2aXQ9Xq6ijnDCyzeD4P5lbhdnU2SLmahKymoEnkmncu7jDnTQmz9deu3b2w_jfsQLiNHYSMyjad-lz8Zd4RRPxyA0pOdwmdaMRMDn8yJpX7Fsg8mnorOeUHn6tS0_ZPOsyslt5zfJ3WP-xjxU__u95QW3lgdZFk2xpsEvAR3exNXmm0oOflufL5MBJTB58o0AfY6YniNjCjMeHYAkrCr9lEMdl521LaVQB7epORskp0k1DVwLZz0DfH4D-MDTkcxDSulHcbyw&h=hHmUObPJnkAPhDbSvPLpNo_vAtj6zJcRSrOY_9rYxRw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n - \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n + \ \"name\": \"e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1900,7 +2066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:24 GMT + - Mon, 26 Jun 2023 17:57:41 GMT expires: - '-1' pragma: @@ -1935,11 +2101,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CtQv6rmQKGl_6-ihYNf5vRba3e_PUmCz7a7YK_zQiWoXL_MW_nG7eqUrWD8FzcIA8iiDh18ranjyq2aXQ9Xq6ijnDCyzeD4P5lbhdnU2SLmahKymoEnkmncu7jDnTQmz9deu3b2w_jfsQLiNHYSMyjad-lz8Zd4RRPxyA0pOdwmdaMRMDn8yJpX7Fsg8mnorOeUHn6tS0_ZPOsyslt5zfJ3WP-xjxU__u95QW3lgdZFk2xpsEvAR3exNXmm0oOflufL5MBJTB58o0AfY6YniNjCjMeHYAkrCr9lEMdl521LaVQB7epORskp0k1DVwLZz0DfH4D-MDTkcxDSulHcbyw&h=hHmUObPJnkAPhDbSvPLpNo_vAtj6zJcRSrOY_9rYxRw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n - \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n + \ \"name\": \"e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1948,7 +2114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:54 GMT + - Mon, 26 Jun 2023 17:58:11 GMT expires: - '-1' pragma: @@ -1989,8 +2155,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n - \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-41-07f02\",\r\n + \ \"duration\": \"PT5.1334033S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2003,9 +2169,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:41.4648055Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2016,7 +2182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:54 GMT + - Mon, 26 Jun 2023 17:58:11 GMT expires: - '-1' pragma: @@ -2153,7 +2319,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:56 GMT + - Mon, 26 Jun 2023 17:58:13 GMT expires: - '-1' pragma: @@ -2189,9 +2355,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:54.0989594Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:10.9795178Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:54.4896164Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:11.3545222Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2202,7 +2368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:56 GMT + - Mon, 26 Jun 2023 17:58:14 GMT expires: - '-1' pragma: @@ -2339,7 +2505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:58 GMT + - Mon, 26 Jun 2023 17:58:16 GMT expires: - '-1' pragma: @@ -2375,20 +2541,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:04:25.9580653Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:43.98113Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:26.7549909Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:44.4186648Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: cache-control: - no-cache content-length: - - '716' + - '714' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:59 GMT + - Mon, 26 Jun 2023 17:58:17 GMT expires: - '-1' pragma: @@ -2429,8 +2595,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n - \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-41-07f02\",\r\n + \ \"duration\": \"PT5.1334033S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2443,9 +2609,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:41.4648055Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2456,7 +2622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:00 GMT + - Mon, 26 Jun 2023 17:58:18 GMT expires: - '-1' pragma: @@ -2524,22 +2690,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:58:18.334028Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3a05%3a00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3a58%3a18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI cache-control: - no-cache content-length: - - '1173' + - '1172' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:00 GMT + - Mon, 26 Jun 2023 17:58:18 GMT expires: - '-1' pragma: @@ -2555,7 +2721,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2576,11 +2742,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n + \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2589,7 +2755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:00 GMT + - Mon, 26 Jun 2023 17:58:18 GMT expires: - '-1' pragma: @@ -2624,11 +2790,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n + \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2637,7 +2803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:30 GMT + - Mon, 26 Jun 2023 17:58:48 GMT expires: - '-1' pragma: @@ -2672,11 +2838,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n + \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2685,7 +2851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:06:01 GMT + - Mon, 26 Jun 2023 17:59:18 GMT expires: - '-1' pragma: @@ -2720,11 +2886,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n + \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2733,7 +2899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:06:31 GMT + - Mon, 26 Jun 2023 17:59:48 GMT expires: - '-1' pragma: @@ -2768,11 +2934,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n + \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2781,7 +2947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:01 GMT + - Mon, 26 Jun 2023 18:00:19 GMT expires: - '-1' pragma: @@ -2816,11 +2982,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n + \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2829,7 +2995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:32 GMT + - Mon, 26 Jun 2023 18:00:49 GMT expires: - '-1' pragma: @@ -2870,8 +3036,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n - \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-58-18-4e943\",\r\n + \ \"duration\": \"PT2M21.3298463S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2884,20 +3050,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:58:18.334028Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2429' + - '2428' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:32 GMT + - Mon, 26 Jun 2023 18:00:49 GMT expires: - '-1' pragma: @@ -3034,7 +3200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:33 GMT + - Mon, 26 Jun 2023 18:00:50 GMT expires: - '-1' pragma: @@ -3070,20 +3236,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:05:03.3850369Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:58:20.9964744Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:03.8381721Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:58:21.355877Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: cache-control: - no-cache content-length: - - '720' + - '719' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:34 GMT + - Mon, 26 Jun 2023 18:00:52 GMT expires: - '-1' pragma: @@ -3123,8 +3289,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n - \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-58-18-4e943\",\r\n + \ \"duration\": \"PT2M21.3298463S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3137,20 +3303,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:58:18.334028Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2429' + - '2428' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:35 GMT + - Mon, 26 Jun 2023 18:00:52 GMT expires: - '-1' pragma: @@ -3196,7 +3362,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:07:36 GMT + - Mon, 26 Jun 2023 18:00:52 GMT expires: - '-1' pragma: @@ -3244,7 +3410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:37 GMT + - Mon, 26 Jun 2023 18:00:53 GMT expires: - '-1' pragma: @@ -3288,7 +3454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:38 GMT + - Mon, 26 Jun 2023 18:00:54 GMT expires: - '-1' pragma: @@ -3353,14 +3519,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:00:55.2432837Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3a07%3a39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6?api-version=2022-08-01-preview&t=2023-06-26T18%3a00%3a55&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=yYZCIvgocbBbdqW3roXO1oGnNkxns44D3iJHrSbRaxetvoA09oMcopWFWqydLsrTWHyk5wpVYnjr6KIOFD_jr-5hFtw7q7zLWuq3oI2gwyHIvgFzGZ5tCl6orLwkqu_Ns-9pqt_8JmHGevbn5WyKmsZOzeYWkspgrNVmLZwRrBlu3paFgukMEgb4UBR9csixrZ5CossLFMrN3RVA7jDwLcjmXYWn5rwVF_ORm42RTGq6GWkQpaDyqIINJRBxDQ7T0zZ_BPzbgYcX37kxDy1CSpMuQkMk0sJGebQk2ocvD6GeboqDefrKEV2hiZeaT4AEU8ihROazA2bu_sc-6O2fqQ&h=Cp65gGSkt3H_d9_bYPSbb9BDyFUWiFN8Ve0wfA0GhTM cache-control: - no-cache content-length: @@ -3368,7 +3534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:38 GMT + - Mon, 26 Jun 2023 18:00:55 GMT expires: - '-1' pragma: @@ -3400,11 +3566,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6?api-version=2022-08-01-preview&t=2023-06-26T18%3A00%3A55&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=yYZCIvgocbBbdqW3roXO1oGnNkxns44D3iJHrSbRaxetvoA09oMcopWFWqydLsrTWHyk5wpVYnjr6KIOFD_jr-5hFtw7q7zLWuq3oI2gwyHIvgFzGZ5tCl6orLwkqu_Ns-9pqt_8JmHGevbn5WyKmsZOzeYWkspgrNVmLZwRrBlu3paFgukMEgb4UBR9csixrZ5CossLFMrN3RVA7jDwLcjmXYWn5rwVF_ORm42RTGq6GWkQpaDyqIINJRBxDQ7T0zZ_BPzbgYcX37kxDy1CSpMuQkMk0sJGebQk2ocvD6GeboqDefrKEV2hiZeaT4AEU8ihROazA2bu_sc-6O2fqQ&h=Cp65gGSkt3H_d9_bYPSbb9BDyFUWiFN8Ve0wfA0GhTM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n - \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n + \ \"name\": \"e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3413,7 +3579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:38 GMT + - Mon, 26 Jun 2023 18:00:55 GMT expires: - '-1' pragma: @@ -3447,11 +3613,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6?api-version=2022-08-01-preview&t=2023-06-26T18%3A00%3A55&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=yYZCIvgocbBbdqW3roXO1oGnNkxns44D3iJHrSbRaxetvoA09oMcopWFWqydLsrTWHyk5wpVYnjr6KIOFD_jr-5hFtw7q7zLWuq3oI2gwyHIvgFzGZ5tCl6orLwkqu_Ns-9pqt_8JmHGevbn5WyKmsZOzeYWkspgrNVmLZwRrBlu3paFgukMEgb4UBR9csixrZ5CossLFMrN3RVA7jDwLcjmXYWn5rwVF_ORm42RTGq6GWkQpaDyqIINJRBxDQ7T0zZ_BPzbgYcX37kxDy1CSpMuQkMk0sJGebQk2ocvD6GeboqDefrKEV2hiZeaT4AEU8ihROazA2bu_sc-6O2fqQ&h=Cp65gGSkt3H_d9_bYPSbb9BDyFUWiFN8Ve0wfA0GhTM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n - \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n + \ \"name\": \"e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3460,7 +3626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:09 GMT + - Mon, 26 Jun 2023 18:01:25 GMT expires: - '-1' pragma: @@ -3500,8 +3666,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n - \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-00-55-d4228\",\r\n + \ \"duration\": \"PT29.459772S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3513,20 +3679,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:00:55.2432837Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2046' + - '2045' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:10 GMT + - Mon, 26 Jun 2023 18:01:25 GMT expires: - '-1' pragma: @@ -3572,7 +3738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:10 GMT + - Mon, 26 Jun 2023 18:01:25 GMT expires: - '-1' pragma: @@ -3605,7 +3771,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:07:42.5534309Z","changedTime":"2023-06-21T21:07:42.7915151Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:07:42.6352598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:07:42.6352598Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T18:00:58.8597391Z","changedTime":"2023-06-26T18:00:59.3239285Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T18:00:59.1208015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T18:00:59.1208015Z"}}]}' headers: cache-control: - no-cache @@ -3614,7 +3780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:10 GMT + - Mon, 26 Jun 2023 18:01:26 GMT expires: - '-1' pragma: @@ -3656,7 +3822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:11 GMT + - Mon, 26 Jun 2023 18:01:26 GMT expires: - '-1' pragma: @@ -3692,8 +3858,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n - \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-00-55-d4228\",\r\n + \ \"duration\": \"PT29.459772S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3705,20 +3871,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:00:55.2432837Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2046' + - '2045' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:12 GMT + - Mon, 26 Jun 2023 18:01:26 GMT expires: - '-1' pragma: @@ -3774,21 +3940,21 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n + \"2023-06-26T18:00:55.2432837Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:01:27.8385426Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3a08%3a13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3a01%3a28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg cache-control: - no-cache content-length: - - '1076' + - '1077' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:13 GMT + - Mon, 26 Jun 2023 18:01:27 GMT expires: - '-1' pragma: @@ -3804,7 +3970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3824,11 +3990,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3837,7 +4003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:13 GMT + - Mon, 26 Jun 2023 18:01:27 GMT expires: - '-1' pragma: @@ -3871,11 +4037,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3884,7 +4050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:43 GMT + - Mon, 26 Jun 2023 18:01:58 GMT expires: - '-1' pragma: @@ -3918,11 +4084,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3931,7 +4097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:09:14 GMT + - Mon, 26 Jun 2023 18:02:27 GMT expires: - '-1' pragma: @@ -3965,11 +4131,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3978,7 +4144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:09:44 GMT + - Mon, 26 Jun 2023 18:02:58 GMT expires: - '-1' pragma: @@ -4012,11 +4178,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4025,7 +4191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:10:15 GMT + - Mon, 26 Jun 2023 18:03:28 GMT expires: - '-1' pragma: @@ -4059,11 +4225,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4072,7 +4238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:10:45 GMT + - Mon, 26 Jun 2023 18:03:58 GMT expires: - '-1' pragma: @@ -4106,11 +4272,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4119,7 +4285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:15 GMT + - Mon, 26 Jun 2023 18:04:29 GMT expires: - '-1' pragma: @@ -4153,11 +4319,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n + \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4166,7 +4332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:46 GMT + - Mon, 26 Jun 2023 18:04:58 GMT expires: - '-1' pragma: @@ -4206,8 +4372,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n - \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-01-27-674dc\",\r\n + \ \"duration\": \"PT3M17.6952093S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4217,20 +4383,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T18:01:27.8385426Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1889' + - '1891' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:46 GMT + - Mon, 26 Jun 2023 18:04:59 GMT expires: - '-1' pragma: @@ -4276,7 +4442,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:47 GMT + - Mon, 26 Jun 2023 18:04:59 GMT expires: - '-1' pragma: @@ -4318,7 +4484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:47 GMT + - Mon, 26 Jun 2023 18:04:59 GMT expires: - '-1' pragma: @@ -4350,16 +4516,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-26T17:55:26Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '74728' + - '80333' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:48 GMT + - Mon, 26 Jun 2023 18:05:00 GMT expires: - '-1' pragma: @@ -4395,8 +4561,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n - \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-01-27-674dc\",\r\n + \ \"duration\": \"PT3M17.6952093S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4406,20 +4572,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T18:01:27.8385426Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1889' + - '1891' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:48 GMT + - Mon, 26 Jun 2023 18:05:00 GMT expires: - '-1' pragma: @@ -4465,7 +4631,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:11:49 GMT + - Mon, 26 Jun 2023 18:05:00 GMT expires: - '-1' pragma: @@ -4509,11 +4675,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:11:52 GMT + - Mon, 26 Jun 2023 18:05:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4541,7 +4707,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4551,11 +4717,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:11:52 GMT + - Mon, 26 Jun 2023 18:05:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4581,7 +4747,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4591,7 +4757,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:12:08 GMT + - Mon, 26 Jun 2023 18:05:18 GMT expires: - '-1' pragma: @@ -4635,7 +4801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:10 GMT + - Mon, 26 Jun 2023 18:05:19 GMT expires: - '-1' pragma: @@ -4679,7 +4845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:10 GMT + - Mon, 26 Jun 2023 18:05:20 GMT expires: - '-1' pragma: @@ -4739,14 +4905,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:20.9687755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a?api-version=2022-08-01-preview&t=2023-06-26T18%3a05%3a21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Q7T2EGRXiCDomRFZ-txtVMjLXBwVHpI6S6FBeIWKn75RyNBuaW9eoNjFGgoD2f4zbUxQkLu21lOw9AyX8vAx7ne2_6vfMKgzu7-bot9bGuWAYWCQ2IwHEHUVkVSiZTIyT4lm15IxbO_Wn8nXKUcvF5jBL691KH21c_EwGmUzkXMCLTQA0V-ESjGz-WeuJGOUvxACGUNPSgr-YjfulM_gNtrdrGO57WoTzJdg3BdDhTGGvDy7FbRj3Jbi9o7rmIah8_pMl6CcOf65hVJ-PMrjI-yTnw29oSYnFI5UogrsMN2frebF3k5Ac-ASfbeWKzEExsK70lrvA2Ukbis7Dj20uw&h=19qbscIcJTPkc-uL-wrFvZh254Bg4FsrAJGdsQmbmn4 cache-control: - no-cache content-length: @@ -4754,7 +4920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:10 GMT + - Mon, 26 Jun 2023 18:05:21 GMT expires: - '-1' pragma: @@ -4786,11 +4952,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Q7T2EGRXiCDomRFZ-txtVMjLXBwVHpI6S6FBeIWKn75RyNBuaW9eoNjFGgoD2f4zbUxQkLu21lOw9AyX8vAx7ne2_6vfMKgzu7-bot9bGuWAYWCQ2IwHEHUVkVSiZTIyT4lm15IxbO_Wn8nXKUcvF5jBL691KH21c_EwGmUzkXMCLTQA0V-ESjGz-WeuJGOUvxACGUNPSgr-YjfulM_gNtrdrGO57WoTzJdg3BdDhTGGvDy7FbRj3Jbi9o7rmIah8_pMl6CcOf65hVJ-PMrjI-yTnw29oSYnFI5UogrsMN2frebF3k5Ac-ASfbeWKzEExsK70lrvA2Ukbis7Dj20uw&h=19qbscIcJTPkc-uL-wrFvZh254Bg4FsrAJGdsQmbmn4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n - \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n + \ \"name\": \"4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4799,7 +4965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:11 GMT + - Mon, 26 Jun 2023 18:05:21 GMT expires: - '-1' pragma: @@ -4833,11 +4999,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Q7T2EGRXiCDomRFZ-txtVMjLXBwVHpI6S6FBeIWKn75RyNBuaW9eoNjFGgoD2f4zbUxQkLu21lOw9AyX8vAx7ne2_6vfMKgzu7-bot9bGuWAYWCQ2IwHEHUVkVSiZTIyT4lm15IxbO_Wn8nXKUcvF5jBL691KH21c_EwGmUzkXMCLTQA0V-ESjGz-WeuJGOUvxACGUNPSgr-YjfulM_gNtrdrGO57WoTzJdg3BdDhTGGvDy7FbRj3Jbi9o7rmIah8_pMl6CcOf65hVJ-PMrjI-yTnw29oSYnFI5UogrsMN2frebF3k5Ac-ASfbeWKzEExsK70lrvA2Ukbis7Dj20uw&h=19qbscIcJTPkc-uL-wrFvZh254Bg4FsrAJGdsQmbmn4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n - \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n + \ \"name\": \"4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4846,7 +5012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:41 GMT + - Mon, 26 Jun 2023 18:05:51 GMT expires: - '-1' pragma: @@ -4886,8 +5052,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n - \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-21-009b5\",\r\n + \ \"duration\": \"PT30.2621755S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4896,9 +5062,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:20.9687755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4909,7 +5075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:41 GMT + - Mon, 26 Jun 2023 18:05:51 GMT expires: - '-1' pragma: @@ -4955,7 +5121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:42 GMT + - Mon, 26 Jun 2023 18:05:52 GMT expires: - '-1' pragma: @@ -4991,8 +5157,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n - \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-21-009b5\",\r\n + \ \"duration\": \"PT30.2621755S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5001,9 +5167,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:20.9687755Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5014,7 +5180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:43 GMT + - Mon, 26 Jun 2023 18:05:52 GMT expires: - '-1' pragma: @@ -5070,13 +5236,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n + \"2023-06-26T18:05:20.9687755Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:53.3726269Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3a05%3a53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew cache-control: - no-cache content-length: @@ -5084,7 +5250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:44 GMT + - Mon, 26 Jun 2023 18:05:52 GMT expires: - '-1' pragma: @@ -5100,7 +5266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -5120,11 +5286,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n + \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5133,7 +5299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:44 GMT + - Mon, 26 Jun 2023 18:05:53 GMT expires: - '-1' pragma: @@ -5167,11 +5333,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n + \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5180,7 +5346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:13:14 GMT + - Mon, 26 Jun 2023 18:06:23 GMT expires: - '-1' pragma: @@ -5214,11 +5380,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n + \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5227,7 +5393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:13:44 GMT + - Mon, 26 Jun 2023 18:06:53 GMT expires: - '-1' pragma: @@ -5261,11 +5427,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n + \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5274,7 +5440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:14:15 GMT + - Mon, 26 Jun 2023 18:07:23 GMT expires: - '-1' pragma: @@ -5308,11 +5474,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n + \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5321,7 +5487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:14:45 GMT + - Mon, 26 Jun 2023 18:07:54 GMT expires: - '-1' pragma: @@ -5355,11 +5521,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n + \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5368,7 +5534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:15 GMT + - Mon, 26 Jun 2023 18:08:24 GMT expires: - '-1' pragma: @@ -5408,8 +5574,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n - \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-53-77cc9\",\r\n + \ \"duration\": \"PT2M17.0235631S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5418,9 +5584,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T18:05:53.3726269Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5431,7 +5597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:16 GMT + - Mon, 26 Jun 2023 18:08:24 GMT expires: - '-1' pragma: @@ -5467,16 +5633,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-26T17:55:26Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '74728' + - '80333' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:16 GMT + - Mon, 26 Jun 2023 18:08:25 GMT expires: - '-1' pragma: @@ -5512,8 +5678,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n - \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-53-77cc9\",\r\n + \ \"duration\": \"PT2M17.0235631S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5522,9 +5688,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T18:05:53.3726269Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5535,7 +5701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:18 GMT + - Mon, 26 Jun 2023 18:08:25 GMT expires: - '-1' pragma: @@ -5581,7 +5747,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:15:18 GMT + - Mon, 26 Jun 2023 18:08:25 GMT expires: - '-1' pragma: @@ -5627,7 +5793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:18 GMT + - Mon, 26 Jun 2023 18:08:26 GMT expires: - '-1' pragma: @@ -5651,7 +5817,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -5665,15 +5831,15 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:15:22 GMT + - Mon, 26 Jun 2023 18:08:28 GMT expires: - - Wed, 21 Jun 2023 21:15:22 GMT + - Mon, 26 Jun 2023 18:08:28 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 server: - Kestrel strict-transport-security: @@ -5693,12 +5859,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -5770,17 +5936,17 @@ interactions: connection: - keep-alive content-length: - - '41660' + - '41663' content-type: - application/octet-stream date: - - Wed, 21 Jun 2023 21:15:22 GMT + - Mon, 26 Jun 2023 18:08:28 GMT etag: - - '0x8DB7236999A3CDE' + - '0x8DB75852C02DBEA' last-modified: - - Wed, 21 Jun 2023 09:05:03 GMT + - Sun, 25 Jun 2023 14:05:03 GMT x-azure-ref: - - 20230621T211522Z-eqz6fa3b6p5dh9wf38v0fptumg00000001g000000000a11t + - 20230626T180828Z-271rkpnvn555mcddv8v2gqad0n000000076g00000000mdex x-cache: - TCP_HIT x-ms-blob-type: @@ -5836,13 +6002,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:15:28.9477407Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n + \"2023-06-26T18:08:30.4029359Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:08:30.4029359Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3a15%3a29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710?api-version=2022-08-01-preview&t=2023-06-26T18%3a08%3a30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=N3rH31D-isvhlN4AWKsUBtWDh4D1gm1zq6kgKoSZzQ10qHtuTorFYXpJZkCZP_0FI8GO1P8NTftCuRoNe8Gd7IGucUdl1Ssu4RqbpRQFfBzbRT1SyIgXBlvE880wmn6iPZbgkVGRZCrKTNA99HPJBLl1YCFpBX2uScdWgO_O3JdLV0VNLmGlU743HtN6aT6vQrdQSOi1X591GK5mBMAMBXIfqZ19a9PPflr5GUWGSf9vnqfNd07b5NFiCPq5cZxwHny5OnzQdTUcC0z_6R-BMKaf3i8UymsTxKR5Q31oCgdJqB_AlD0oAo5yK0XCeZvc3e916owdmxrt8sk_6uE9Eg&h=O34zWE5lIB_88ADGBPgYXUS_3B3GaUq-zm-qP_Ra5EA cache-control: - no-cache content-length: @@ -5850,7 +6016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:28 GMT + - Mon, 26 Jun 2023 18:08:30 GMT expires: - '-1' pragma: @@ -5882,11 +6048,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710?api-version=2022-08-01-preview&t=2023-06-26T18%3A08%3A30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=N3rH31D-isvhlN4AWKsUBtWDh4D1gm1zq6kgKoSZzQ10qHtuTorFYXpJZkCZP_0FI8GO1P8NTftCuRoNe8Gd7IGucUdl1Ssu4RqbpRQFfBzbRT1SyIgXBlvE880wmn6iPZbgkVGRZCrKTNA99HPJBLl1YCFpBX2uScdWgO_O3JdLV0VNLmGlU743HtN6aT6vQrdQSOi1X591GK5mBMAMBXIfqZ19a9PPflr5GUWGSf9vnqfNd07b5NFiCPq5cZxwHny5OnzQdTUcC0z_6R-BMKaf3i8UymsTxKR5Q31oCgdJqB_AlD0oAo5yK0XCeZvc3e916owdmxrt8sk_6uE9Eg&h=O34zWE5lIB_88ADGBPgYXUS_3B3GaUq-zm-qP_Ra5EA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n - \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n + \ \"name\": \"8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5895,7 +6061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:28 GMT + - Mon, 26 Jun 2023 18:08:30 GMT expires: - '-1' pragma: @@ -5929,11 +6095,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710?api-version=2022-08-01-preview&t=2023-06-26T18%3A08%3A30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=N3rH31D-isvhlN4AWKsUBtWDh4D1gm1zq6kgKoSZzQ10qHtuTorFYXpJZkCZP_0FI8GO1P8NTftCuRoNe8Gd7IGucUdl1Ssu4RqbpRQFfBzbRT1SyIgXBlvE880wmn6iPZbgkVGRZCrKTNA99HPJBLl1YCFpBX2uScdWgO_O3JdLV0VNLmGlU743HtN6aT6vQrdQSOi1X591GK5mBMAMBXIfqZ19a9PPflr5GUWGSf9vnqfNd07b5NFiCPq5cZxwHny5OnzQdTUcC0z_6R-BMKaf3i8UymsTxKR5Q31oCgdJqB_AlD0oAo5yK0XCeZvc3e916owdmxrt8sk_6uE9Eg&h=O34zWE5lIB_88ADGBPgYXUS_3B3GaUq-zm-qP_Ra5EA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n - \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n + \ \"name\": \"8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5942,7 +6108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:59 GMT + - Mon, 26 Jun 2023 18:09:01 GMT expires: - '-1' pragma: @@ -5982,20 +6148,20 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n - \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-08-30-90345\",\r\n + \ \"duration\": \"PT30.0300965S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store2gz4rdvoqvwuq\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:08:30.4029359Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:08:30.4029359Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -6006,7 +6172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:16:00 GMT + - Mon, 26 Jun 2023 18:09:01 GMT expires: - '-1' pragma: @@ -6046,20 +6212,20 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n - \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-08-30-90345\",\r\n + \ \"duration\": \"PT30.0300965S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store2gz4rdvoqvwuq\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:08:30.4029359Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:08:30.4029359Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -6070,7 +6236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:16:00 GMT + - Mon, 26 Jun 2023 18:09:01 GMT expires: - '-1' pragma: @@ -6116,7 +6282,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:16:01 GMT + - Mon, 26 Jun 2023 18:09:01 GMT expires: - '-1' pragma: @@ -6160,11 +6326,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:16:03 GMT + - Mon, 26 Jun 2023 18:09:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6192,127 +6358,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 21 Jun 2023 21:16:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 21 Jun 2023 21:16:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 21 Jun 2023 21:16:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6322,11 +6368,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:16:49 GMT + - Mon, 26 Jun 2023 18:09:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6352,7 +6398,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6362,11 +6408,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:05 GMT + - Mon, 26 Jun 2023 18:09:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6392,7 +6438,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6402,11 +6448,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:20 GMT + - Mon, 26 Jun 2023 18:09:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6432,7 +6478,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6442,11 +6488,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:36 GMT + - Mon, 26 Jun 2023 18:09:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6472,7 +6518,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6482,11 +6528,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:51 GMT + - Mon, 26 Jun 2023 18:10:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6512,7 +6558,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6522,7 +6568,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:18:06 GMT + - Mon, 26 Jun 2023 18:10:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 819d8a9dc82..203a4b3093d 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:22 GMT + - Mon, 26 Jun 2023 17:32:54 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:22 GMT + - Mon, 26 Jun 2023 17:32:54 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:24.5090807Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:56.8955196Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:24.5090807Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:56.8955196Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:24 GMT + - Mon, 26 Jun 2023 17:32:56 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:58.5049201Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:58.5049201Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:26 GMT + - Mon, 26 Jun 2023 17:32:58 GMT expires: - '-1' pragma: @@ -225,7 +225,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -242,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:26 GMT + - Mon, 26 Jun 2023 17:32:58 GMT expires: - '-1' pragma: @@ -265,8 +267,10 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {"applyToChildScopes": false}}}' + {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "description": "stack deployment", "denySettings": {"excludedPrincipals": ["principal1", + "principal2"], "excludedActions": ["action1", "action2"], "applyToChildScopes": + true}}}' headers: Accept: - application/json @@ -277,11 +281,13 @@ interactions: Connection: - keep-alive Content-Length: - - '834' + - '963' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -289,32 +295,35 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:27.423522Z\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"description\": + \"stack deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n + \ \"principal1\",\r\n \"principal2\"\r\n ],\r\n \"excludedActions\": + [\r\n \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:59.6595906Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:59.6595906Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3a08%3a28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39?api-version=2022-08-01-preview&t=2023-06-26T17%3a33%3a00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cwXetC0Iv1MBaRAQrfS2aiPdk_bS-kWk0d6vTd82EBOo7B9eWI0FT12r9SKU8oMHrd6FhxZFe1gQfqiJ2jEy_Avo0lpu2ZIx2wWkPJfJkjiIDirDOOO9LnIBUzSou14qLliUtA8DW5Rez6sPoINJJl3tOtmgodNcOit9hKqGcQC57pJa3zkLUntKvpjYV9wyQJUm3KZRnoDmKScYSz7AUrJFoJpXJ0n4ambzI-eZ54MN3N0unNyLs6ktDmTwzFADRQxtoZIXJpCMq35ZJxvHEXxbx-u74SkierpbvxRRsMAcNLpm1liIhwmD45jUDXNFjxC25QLyMS65pfb7iX7zFg&h=8IlLdaucwgtoo6JGC5K5YUSw9RiHVZ97Iqh0GKdAvqg cache-control: - no-cache content-length: - - '1274' + - '1478' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:27 GMT + - Mon, 26 Jun 2023 17:32:59 GMT expires: - '-1' pragma: @@ -342,15 +351,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cwXetC0Iv1MBaRAQrfS2aiPdk_bS-kWk0d6vTd82EBOo7B9eWI0FT12r9SKU8oMHrd6FhxZFe1gQfqiJ2jEy_Avo0lpu2ZIx2wWkPJfJkjiIDirDOOO9LnIBUzSou14qLliUtA8DW5Rez6sPoINJJl3tOtmgodNcOit9hKqGcQC57pJa3zkLUntKvpjYV9wyQJUm3KZRnoDmKScYSz7AUrJFoJpXJ0n4ambzI-eZ54MN3N0unNyLs6ktDmTwzFADRQxtoZIXJpCMq35ZJxvHEXxbx-u74SkierpbvxRRsMAcNLpm1liIhwmD45jUDXNFjxC25QLyMS65pfb7iX7zFg&h=8IlLdaucwgtoo6JGC5K5YUSw9RiHVZ97Iqh0GKdAvqg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n - \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n + \ \"name\": \"ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -359,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:27 GMT + - Mon, 26 Jun 2023 17:32:59 GMT expires: - '-1' pragma: @@ -389,15 +400,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cwXetC0Iv1MBaRAQrfS2aiPdk_bS-kWk0d6vTd82EBOo7B9eWI0FT12r9SKU8oMHrd6FhxZFe1gQfqiJ2jEy_Avo0lpu2ZIx2wWkPJfJkjiIDirDOOO9LnIBUzSou14qLliUtA8DW5Rez6sPoINJJl3tOtmgodNcOit9hKqGcQC57pJa3zkLUntKvpjYV9wyQJUm3KZRnoDmKScYSz7AUrJFoJpXJ0n4ambzI-eZ54MN3N0unNyLs6ktDmTwzFADRQxtoZIXJpCMq35ZJxvHEXxbx-u74SkierpbvxRRsMAcNLpm1liIhwmD45jUDXNFjxC25QLyMS65pfb7iX7zFg&h=8IlLdaucwgtoo6JGC5K5YUSw9RiHVZ97Iqh0GKdAvqg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n - \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n + \ \"name\": \"ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -406,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:57 GMT + - Mon, 26 Jun 2023 17:33:29 GMT expires: - '-1' pragma: @@ -436,7 +449,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -444,34 +459,37 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-00-49a32\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.3485309S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:59.6595906Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:59.6595906Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1666' + - '1870' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:58 GMT + - Mon, 26 Jun 2023 17:33:30 GMT expires: - '-1' pragma: @@ -509,34 +527,37 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-00-49a32\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.3485309S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:59.6595906Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:59.6595906Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1666' + - '1870' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:59 GMT + - Mon, 26 Jun 2023 17:33:31 GMT expires: - '-1' pragma: @@ -582,7 +603,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:09:00 GMT + - Mon, 26 Jun 2023 17:33:31 GMT expires: - '-1' pragma: @@ -627,7 +648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:00 GMT + - Mon, 26 Jun 2023 17:33:32 GMT expires: - '-1' pragma: @@ -673,9 +694,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:58.5049201Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:58.5049201Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -687,7 +708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:01 GMT + - Mon, 26 Jun 2023 17:33:33 GMT expires: - '-1' pragma: @@ -742,14 +763,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:33:34.1676778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:33:34.1676778Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a?api-version=2022-08-01-preview&t=2023-06-26T17%3a33%3a35&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fi6oyz6eJ7t9zI5BnuEerTUBrWln_Ea9R3jQcNPUDoDS66Opcdx2-MzDUgZJ7oBattDz-LTnMn3w5C4uGA4GD_AKK2l_ZUDKvXfCvDlAhyyZUeJ50aaDtrlB-KZTRcBkq7QmByNs8AghLiLQcEIY4Wh56Q8cPACe50ZDY7TEtq_qWiYCK04LGXJ4Hs5PdYL5YdoWeb8olS8veAawn4gzUV03YDmjgE-rGyOQEecNVj9OdeTLIEyutb2afSpSykA8JGAYlsj9XjnCBMNBaEYh6ST1VG-Yjjsik5dddDWL6dGl7x3cADZjtzP8u8X5HIOhM1V6M2_sKN7R1UMXHyBkRQ&h=2CBsVRJQzjLR3dzPg9InC-A5MwWcZ3IQ0YJ4K3RPZGo cache-control: - no-cache content-length: @@ -757,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:02 GMT + - Mon, 26 Jun 2023 17:33:34 GMT expires: - '-1' pragma: @@ -789,11 +810,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A35&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fi6oyz6eJ7t9zI5BnuEerTUBrWln_Ea9R3jQcNPUDoDS66Opcdx2-MzDUgZJ7oBattDz-LTnMn3w5C4uGA4GD_AKK2l_ZUDKvXfCvDlAhyyZUeJ50aaDtrlB-KZTRcBkq7QmByNs8AghLiLQcEIY4Wh56Q8cPACe50ZDY7TEtq_qWiYCK04LGXJ4Hs5PdYL5YdoWeb8olS8veAawn4gzUV03YDmjgE-rGyOQEecNVj9OdeTLIEyutb2afSpSykA8JGAYlsj9XjnCBMNBaEYh6ST1VG-Yjjsik5dddDWL6dGl7x3cADZjtzP8u8X5HIOhM1V6M2_sKN7R1UMXHyBkRQ&h=2CBsVRJQzjLR3dzPg9InC-A5MwWcZ3IQ0YJ4K3RPZGo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n - \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n + \ \"name\": \"5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -802,7 +823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:02 GMT + - Mon, 26 Jun 2023 17:33:35 GMT expires: - '-1' pragma: @@ -836,11 +857,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A35&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fi6oyz6eJ7t9zI5BnuEerTUBrWln_Ea9R3jQcNPUDoDS66Opcdx2-MzDUgZJ7oBattDz-LTnMn3w5C4uGA4GD_AKK2l_ZUDKvXfCvDlAhyyZUeJ50aaDtrlB-KZTRcBkq7QmByNs8AghLiLQcEIY4Wh56Q8cPACe50ZDY7TEtq_qWiYCK04LGXJ4Hs5PdYL5YdoWeb8olS8veAawn4gzUV03YDmjgE-rGyOQEecNVj9OdeTLIEyutb2afSpSykA8JGAYlsj9XjnCBMNBaEYh6ST1VG-Yjjsik5dddDWL6dGl7x3cADZjtzP8u8X5HIOhM1V6M2_sKN7R1UMXHyBkRQ&h=2CBsVRJQzjLR3dzPg9InC-A5MwWcZ3IQ0YJ4K3RPZGo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n - \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n + \ \"name\": \"5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -849,7 +870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:32 GMT + - Mon, 26 Jun 2023 17:34:04 GMT expires: - '-1' pragma: @@ -889,9 +910,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-34-64c02\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.0401594S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -903,20 +924,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:33:34.1676778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:33:34.1676778Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1898' + - '1900' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:32 GMT + - Mon, 26 Jun 2023 17:34:06 GMT expires: - '-1' pragma: @@ -956,9 +977,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-34-64c02\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT12.0401594S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -970,20 +991,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:33:34.1676778Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:33:34.1676778Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1898' + - '1900' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:34 GMT + - Mon, 26 Jun 2023 17:34:06 GMT expires: - '-1' pragma: @@ -1029,7 +1050,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:09:34 GMT + - Mon, 26 Jun 2023 17:34:07 GMT expires: - '-1' pragma: @@ -1075,7 +1096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:34 GMT + - Mon, 26 Jun 2023 17:34:07 GMT expires: - '-1' pragma: @@ -1133,14 +1154,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:35.8967059Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:34:07.6428511Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:07.6428511Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00?api-version=2022-08-01-preview&t=2023-06-26T17%3a34%3a08&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=J86A8dtjLfvmVhYU4WR8XDwXy3FBRvl41dm1xuwNI-EzJZ07qehvEIglw672-yPdJjtwF4V4IbL0yOyeFaZjsFKP2udbbKhUnUIF15bIh6QjMu-FIAnjULsJmd55ZjjH9Vf09JRl86JF8oHhyOpuiN8x8W3FsTyuMpGCg40UMXee8NIecyvKR5berhTDAqp9PcQyW0gqExWh1ze7TBJRYV-Fx9vpC3E8lFPSJwjr_CklA0EWT_cX498_2xUqNLktPaJHv0YqJ8vgXdKdklz5CUWToy834vklB492j_3qnlI0ZMjcwb0UZkinVuLFZUkzeiCgTNvbyjwV9DJx0uzFdQ&h=kI4fQw5ya_eOSEFs9dyx00AARWq7Z4ZewyeeilaAoZ0 cache-control: - no-cache content-length: @@ -1148,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:35 GMT + - Mon, 26 Jun 2023 17:34:08 GMT expires: - '-1' pragma: @@ -1181,11 +1202,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A08&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=J86A8dtjLfvmVhYU4WR8XDwXy3FBRvl41dm1xuwNI-EzJZ07qehvEIglw672-yPdJjtwF4V4IbL0yOyeFaZjsFKP2udbbKhUnUIF15bIh6QjMu-FIAnjULsJmd55ZjjH9Vf09JRl86JF8oHhyOpuiN8x8W3FsTyuMpGCg40UMXee8NIecyvKR5berhTDAqp9PcQyW0gqExWh1ze7TBJRYV-Fx9vpC3E8lFPSJwjr_CklA0EWT_cX498_2xUqNLktPaJHv0YqJ8vgXdKdklz5CUWToy834vklB492j_3qnlI0ZMjcwb0UZkinVuLFZUkzeiCgTNvbyjwV9DJx0uzFdQ&h=kI4fQw5ya_eOSEFs9dyx00AARWq7Z4ZewyeeilaAoZ0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n - \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n + \ \"name\": \"92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1194,7 +1215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:36 GMT + - Mon, 26 Jun 2023 17:34:08 GMT expires: - '-1' pragma: @@ -1229,11 +1250,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A08&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=J86A8dtjLfvmVhYU4WR8XDwXy3FBRvl41dm1xuwNI-EzJZ07qehvEIglw672-yPdJjtwF4V4IbL0yOyeFaZjsFKP2udbbKhUnUIF15bIh6QjMu-FIAnjULsJmd55ZjjH9Vf09JRl86JF8oHhyOpuiN8x8W3FsTyuMpGCg40UMXee8NIecyvKR5berhTDAqp9PcQyW0gqExWh1ze7TBJRYV-Fx9vpC3E8lFPSJwjr_CklA0EWT_cX498_2xUqNLktPaJHv0YqJ8vgXdKdklz5CUWToy834vklB492j_3qnlI0ZMjcwb0UZkinVuLFZUkzeiCgTNvbyjwV9DJx0uzFdQ&h=kI4fQw5ya_eOSEFs9dyx00AARWq7Z4ZewyeeilaAoZ0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n - \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n + \ \"name\": \"92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1242,7 +1263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:07 GMT + - Mon, 26 Jun 2023 17:34:38 GMT expires: - '-1' pragma: @@ -1283,9 +1304,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-08-04e10\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.8630009S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1296,8 +1317,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n + \"2023-06-26T17:34:07.6428511Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:07.6428511Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1308,7 +1329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:07 GMT + - Mon, 26 Jun 2023 17:34:38 GMT expires: - '-1' pragma: @@ -1348,9 +1369,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-08-04e10\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.8630009S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1361,8 +1382,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n + \"2023-06-26T17:34:07.6428511Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:07.6428511Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1373,7 +1394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:08 GMT + - Mon, 26 Jun 2023 17:34:39 GMT expires: - '-1' pragma: @@ -1419,7 +1440,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:10:08 GMT + - Mon, 26 Jun 2023 17:34:39 GMT expires: - '-1' pragma: @@ -1465,7 +1486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:08 GMT + - Mon, 26 Jun 2023 17:34:40 GMT expires: - '-1' pragma: @@ -1489,7 +1510,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -1503,15 +1524,15 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:10:10 GMT + - Mon, 26 Jun 2023 17:34:41 GMT expires: - - Thu, 22 Jun 2023 01:10:10 GMT + - Mon, 26 Jun 2023 17:34:41 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 server: - Kestrel strict-transport-security: @@ -1531,12 +1552,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":14,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":61,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":640,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":8677,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":271,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1024,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1743,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":9090,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":144,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -1603,24 +1624,24 @@ interactions: \r\n\r\n@davidcho23\r\n* Update release-checklist.md (#10886)\r\n\r\n \r\n\r\n@snehabandla\r\n* Adding support for taking diagnostics format as input for bicep build (#10672)\r\n-->","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' headers: + accept-ranges: + - bytes + connection: + - keep-alive content-length: - - '41661' - content-md5: - - l4ATFhxnZwZ7nJNCUpaQlQ== + - '41663' content-type: - application/octet-stream date: - - Thu, 22 Jun 2023 01:10:11 GMT + - Mon, 26 Jun 2023 17:34:41 GMT etag: - - '0x8DB72BCB58C32B9' + - '0x8DB75852C02DBEA' last-modified: - - Thu, 22 Jun 2023 01:05:02 GMT + - Sun, 25 Jun 2023 14:05:03 GMT x-azure-ref: - - 0c5+TZAAAAAAFgvQ5abb+QrplYS+mwDHCTUlBRURHRTIyMjEANTY3YTBjMmEtNTdjOS00YmExLTk2MzUtMDg2ZTBiZWVjMTFh - x-azure-ref-originshield: - - 0c5+TZAAAAABngyLkP1kHQpyxmisRxOPqTU5aMjIxMDYwNjExMDIzADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + - 20230626T173441Z-09ph29830h0x7anqvryt5g6e1n00000007x000000000aq6w x-cache: - - TCP_REMOTE_HIT + - TCP_HIT x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -1674,13 +1695,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:10:16.8403093Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n + \"2023-06-26T17:34:43.3271731Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:43.3271731Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec?api-version=2022-08-01-preview&t=2023-06-26T17%3a34%3a43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=azF2RLYnAmqXRtuQPZgcQneff8eEIqUceBHuqQdLvkHsJkIaxpU4mwzsHNETSR9arReb7Wqf96CbirGBZ6cK2-YMpUJ1Dywk6z25LI7jM5IIyklG2H-7XcysUmzMfcEKbZUi9mGRrCOVDZW5mm2nX4sKLUkPoMiHF2eD0WQwSdqNgq0zdUcCxJFGvx9VlzJXchce455oKGAMRAxBQNA7QZiAixAYy7FIlJ-DPS50DEHu2gjOAFKMf6kIuk4bdHWTZOfq7-sC3tTT0xHa0Gl0wmH2BhLOIU-vyXnRk047HSBTJv1DMGb0Ec0ND1XmylVWKJNu7cGFMhCIf7VB7XLzMQ&h=jv--dCxiG8h6W_XdFiWg016H6fAmfrs_B6ZiYaSvh4k cache-control: - no-cache content-length: @@ -1688,7 +1709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:16 GMT + - Mon, 26 Jun 2023 17:34:43 GMT expires: - '-1' pragma: @@ -1721,11 +1742,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=azF2RLYnAmqXRtuQPZgcQneff8eEIqUceBHuqQdLvkHsJkIaxpU4mwzsHNETSR9arReb7Wqf96CbirGBZ6cK2-YMpUJ1Dywk6z25LI7jM5IIyklG2H-7XcysUmzMfcEKbZUi9mGRrCOVDZW5mm2nX4sKLUkPoMiHF2eD0WQwSdqNgq0zdUcCxJFGvx9VlzJXchce455oKGAMRAxBQNA7QZiAixAYy7FIlJ-DPS50DEHu2gjOAFKMf6kIuk4bdHWTZOfq7-sC3tTT0xHa0Gl0wmH2BhLOIU-vyXnRk047HSBTJv1DMGb0Ec0ND1XmylVWKJNu7cGFMhCIf7VB7XLzMQ&h=jv--dCxiG8h6W_XdFiWg016H6fAmfrs_B6ZiYaSvh4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n - \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n + \ \"name\": \"9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1734,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:17 GMT + - Mon, 26 Jun 2023 17:34:43 GMT expires: - '-1' pragma: @@ -1769,11 +1790,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=azF2RLYnAmqXRtuQPZgcQneff8eEIqUceBHuqQdLvkHsJkIaxpU4mwzsHNETSR9arReb7Wqf96CbirGBZ6cK2-YMpUJ1Dywk6z25LI7jM5IIyklG2H-7XcysUmzMfcEKbZUi9mGRrCOVDZW5mm2nX4sKLUkPoMiHF2eD0WQwSdqNgq0zdUcCxJFGvx9VlzJXchce455oKGAMRAxBQNA7QZiAixAYy7FIlJ-DPS50DEHu2gjOAFKMf6kIuk4bdHWTZOfq7-sC3tTT0xHa0Gl0wmH2BhLOIU-vyXnRk047HSBTJv1DMGb0Ec0ND1XmylVWKJNu7cGFMhCIf7VB7XLzMQ&h=jv--dCxiG8h6W_XdFiWg016H6fAmfrs_B6ZiYaSvh4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n - \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n + \ \"name\": \"9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1782,7 +1803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:48 GMT + - Mon, 26 Jun 2023 17:35:13 GMT expires: - '-1' pragma: @@ -1823,9 +1844,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-43-e02d5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.2912223S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1835,9 +1856,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:34:43.3271731Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:43.3271731Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1848,7 +1869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:48 GMT + - Mon, 26 Jun 2023 17:35:13 GMT expires: - '-1' pragma: @@ -1888,9 +1909,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-43-e02d5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.2912223S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1900,9 +1921,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:34:43.3271731Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:43.3271731Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1913,7 +1934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:49 GMT + - Mon, 26 Jun 2023 17:35:14 GMT expires: - '-1' pragma: @@ -1959,7 +1980,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:10:49 GMT + - Mon, 26 Jun 2023 17:35:14 GMT expires: - '-1' pragma: @@ -2007,7 +2028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:51 GMT + - Mon, 26 Jun 2023 17:35:15 GMT expires: - '-1' pragma: @@ -2051,7 +2072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:51 GMT + - Mon, 26 Jun 2023 17:35:16 GMT expires: - '-1' pragma: @@ -2118,14 +2139,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:16.9771326Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e?api-version=2022-08-01-preview&t=2023-06-26T17%3a35%3a17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Kvox4JPfJ5lCxNXq_9gPcf56JC6n_4xIQ8DUjdKQuvlv0LbdOQ0agVF3vtYSpivY3qGvJnmJULw7Itq9O_WSNjRSJQWyqWHJc_Z9ElggShi60Tmu-661VyGLvTld41gYjFVemprp-sa9aG8Dd_N6zDHfShQmwUlCCuSwoBE9FVVPDFBJk_mMru6dQtfAyTfzkpGbKbyx4FwNwiJZS1ezRU72OLCimHW7qbauxn6ObGXUOrW-1ovm-E_cpNqqYhxxx3abdSkvUpgOIZFP0--LsidOe7ylMWFFczy2-mGXUHDv4rT3TgsC4NgQhevMm1K3Bu0I5PQFaoYkTj8Z1C9jsg&h=h5uo-yim-ICosEUQUMc5stTQC9_JCGpewnicNYWGQ4g cache-control: - no-cache content-length: @@ -2133,7 +2154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:52 GMT + - Mon, 26 Jun 2023 17:35:17 GMT expires: - '-1' pragma: @@ -2166,11 +2187,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Kvox4JPfJ5lCxNXq_9gPcf56JC6n_4xIQ8DUjdKQuvlv0LbdOQ0agVF3vtYSpivY3qGvJnmJULw7Itq9O_WSNjRSJQWyqWHJc_Z9ElggShi60Tmu-661VyGLvTld41gYjFVemprp-sa9aG8Dd_N6zDHfShQmwUlCCuSwoBE9FVVPDFBJk_mMru6dQtfAyTfzkpGbKbyx4FwNwiJZS1ezRU72OLCimHW7qbauxn6ObGXUOrW-1ovm-E_cpNqqYhxxx3abdSkvUpgOIZFP0--LsidOe7ylMWFFczy2-mGXUHDv4rT3TgsC4NgQhevMm1K3Bu0I5PQFaoYkTj8Z1C9jsg&h=h5uo-yim-ICosEUQUMc5stTQC9_JCGpewnicNYWGQ4g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n - \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e\",\r\n + \ \"name\": \"372c06df-b962-4840-9cca-268d47bb786e\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2179,7 +2200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:52 GMT + - Mon, 26 Jun 2023 17:35:17 GMT expires: - '-1' pragma: @@ -2214,11 +2235,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Kvox4JPfJ5lCxNXq_9gPcf56JC6n_4xIQ8DUjdKQuvlv0LbdOQ0agVF3vtYSpivY3qGvJnmJULw7Itq9O_WSNjRSJQWyqWHJc_Z9ElggShi60Tmu-661VyGLvTld41gYjFVemprp-sa9aG8Dd_N6zDHfShQmwUlCCuSwoBE9FVVPDFBJk_mMru6dQtfAyTfzkpGbKbyx4FwNwiJZS1ezRU72OLCimHW7qbauxn6ObGXUOrW-1ovm-E_cpNqqYhxxx3abdSkvUpgOIZFP0--LsidOe7ylMWFFczy2-mGXUHDv4rT3TgsC4NgQhevMm1K3Bu0I5PQFaoYkTj8Z1C9jsg&h=h5uo-yim-ICosEUQUMc5stTQC9_JCGpewnicNYWGQ4g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n - \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e\",\r\n + \ \"name\": \"372c06df-b962-4840-9cca-268d47bb786e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2227,7 +2248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:23 GMT + - Mon, 26 Jun 2023 17:35:47 GMT expires: - '-1' pragma: @@ -2268,9 +2289,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-17-2ad41\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.9343833S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2281,9 +2302,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:16.9771326Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2294,7 +2315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:24 GMT + - Mon, 26 Jun 2023 17:35:47 GMT expires: - '-1' pragma: @@ -2335,9 +2356,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-17-2ad41\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT7.9343833S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2348,9 +2369,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:16.9771326Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2361,7 +2382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:24 GMT + - Mon, 26 Jun 2023 17:35:48 GMT expires: - '-1' pragma: @@ -2432,14 +2453,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:49.3301337Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3a11%3a25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab?api-version=2022-08-01-preview&t=2023-06-26T17%3a35%3a49&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zfHiaitoaRTMHBOt2ZbZVSpwRrX8FQas2W-vV_1jmLQMd8PYpMZpIoMKwEx6LMUIRmn29QpdfDV-HkuISnyVnlyXsOcez-Zrh5ZgSoYsSE5vXT83BEOv0lisOwVC9LHH94XBZtny9GV9QswBlEhEoIdYQP1igB2kJU7UjBgw9JuCsHoyiQyHqVIJTRM_QQNQNa25zUccKHG1teEjs2LVyDJxD5S8Ku0E970eLIi-yoG6MKf9mEVN74Nih4hspEkjJir7TJt7bfvEdGIhGlMeUMnkSHbzWTS6B_py_fVufU2_lj3OcCO-3cPIfV7L2io3phsqsJ0ibFssZOKTLHBO1A&h=LUYvcUQrTPtKm23UXud-vPpWzt4DxGcjoRrHvqdiUEE cache-control: - no-cache content-length: @@ -2447,7 +2468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:25 GMT + - Mon, 26 Jun 2023 17:35:49 GMT expires: - '-1' pragma: @@ -2484,11 +2505,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A49&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zfHiaitoaRTMHBOt2ZbZVSpwRrX8FQas2W-vV_1jmLQMd8PYpMZpIoMKwEx6LMUIRmn29QpdfDV-HkuISnyVnlyXsOcez-Zrh5ZgSoYsSE5vXT83BEOv0lisOwVC9LHH94XBZtny9GV9QswBlEhEoIdYQP1igB2kJU7UjBgw9JuCsHoyiQyHqVIJTRM_QQNQNa25zUccKHG1teEjs2LVyDJxD5S8Ku0E970eLIi-yoG6MKf9mEVN74Nih4hspEkjJir7TJt7bfvEdGIhGlMeUMnkSHbzWTS6B_py_fVufU2_lj3OcCO-3cPIfV7L2io3phsqsJ0ibFssZOKTLHBO1A&h=LUYvcUQrTPtKm23UXud-vPpWzt4DxGcjoRrHvqdiUEE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n - \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n + \ \"name\": \"aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2497,7 +2518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:25 GMT + - Mon, 26 Jun 2023 17:35:49 GMT expires: - '-1' pragma: @@ -2532,11 +2553,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A49&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zfHiaitoaRTMHBOt2ZbZVSpwRrX8FQas2W-vV_1jmLQMd8PYpMZpIoMKwEx6LMUIRmn29QpdfDV-HkuISnyVnlyXsOcez-Zrh5ZgSoYsSE5vXT83BEOv0lisOwVC9LHH94XBZtny9GV9QswBlEhEoIdYQP1igB2kJU7UjBgw9JuCsHoyiQyHqVIJTRM_QQNQNa25zUccKHG1teEjs2LVyDJxD5S8Ku0E970eLIi-yoG6MKf9mEVN74Nih4hspEkjJir7TJt7bfvEdGIhGlMeUMnkSHbzWTS6B_py_fVufU2_lj3OcCO-3cPIfV7L2io3phsqsJ0ibFssZOKTLHBO1A&h=LUYvcUQrTPtKm23UXud-vPpWzt4DxGcjoRrHvqdiUEE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n - \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n + \ \"name\": \"aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2545,7 +2566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:55 GMT + - Mon, 26 Jun 2023 17:36:19 GMT expires: - '-1' pragma: @@ -2586,9 +2607,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-49-1fc94\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8525342S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2601,9 +2622,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:49.3301337Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2614,7 +2635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:55 GMT + - Mon, 26 Jun 2023 17:36:19 GMT expires: - '-1' pragma: @@ -2751,7 +2772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:58 GMT + - Mon, 26 Jun 2023 17:36:22 GMT expires: - '-1' pragma: @@ -2787,9 +2808,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:20.2488759Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:20.5925974Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2800,7 +2821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:59 GMT + - Mon, 26 Jun 2023 17:36:23 GMT expires: - '-1' pragma: @@ -2937,7 +2958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:01 GMT + - Mon, 26 Jun 2023 17:36:23 GMT expires: - '-1' pragma: @@ -2973,9 +2994,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:11:28.2016155Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:52.7404749Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:28.6235078Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:53.2562529Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2986,7 +3007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:01 GMT + - Mon, 26 Jun 2023 17:36:24 GMT expires: - '-1' pragma: @@ -3027,9 +3048,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-49-1fc94\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8525342S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3042,9 +3063,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:49.3301337Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3055,7 +3076,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:03 GMT + - Mon, 26 Jun 2023 17:36:25 GMT expires: - '-1' pragma: @@ -3126,14 +3147,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:36:26.8217461Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3a12%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3a36%3a27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M cache-control: - no-cache content-length: @@ -3141,7 +3162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:04 GMT + - Mon, 26 Jun 2023 17:36:26 GMT expires: - '-1' pragma: @@ -3178,11 +3199,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n + \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3191,7 +3212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:04 GMT + - Mon, 26 Jun 2023 17:36:26 GMT expires: - '-1' pragma: @@ -3226,11 +3247,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n + \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3239,7 +3260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:34 GMT + - Mon, 26 Jun 2023 17:36:57 GMT expires: - '-1' pragma: @@ -3274,11 +3295,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n + \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3287,7 +3308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:13:04 GMT + - Mon, 26 Jun 2023 17:37:27 GMT expires: - '-1' pragma: @@ -3322,11 +3343,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n + \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3335,7 +3356,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:13:35 GMT + - Mon, 26 Jun 2023 17:37:57 GMT expires: - '-1' pragma: @@ -3370,11 +3391,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n + \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3383,7 +3404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:05 GMT + - Mon, 26 Jun 2023 17:38:27 GMT expires: - '-1' pragma: @@ -3418,11 +3439,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n + \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3431,7 +3452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:36 GMT + - Mon, 26 Jun 2023 17:38:57 GMT expires: - '-1' pragma: @@ -3472,9 +3493,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-36-27-81769\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M23.1387875S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3487,9 +3508,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:36:26.8217461Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3500,7 +3521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:36 GMT + - Mon, 26 Jun 2023 17:38:58 GMT expires: - '-1' pragma: @@ -3637,7 +3658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:38 GMT + - Mon, 26 Jun 2023 17:39:00 GMT expires: - '-1' pragma: @@ -3673,9 +3694,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:20.2488759Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:20.5925974Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -3686,7 +3707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:39 GMT + - Mon, 26 Jun 2023 17:39:01 GMT expires: - '-1' pragma: @@ -3823,7 +3844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:40 GMT + - Mon, 26 Jun 2023 17:39:02 GMT expires: - '-1' pragma: @@ -3859,9 +3880,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:12:08.0902158Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:36:30.0871729Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:08.9184105Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:36:31.5715451Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3872,7 +3893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:41 GMT + - Mon, 26 Jun 2023 17:39:03 GMT expires: - '-1' pragma: @@ -3918,7 +3939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:43 GMT + - Mon, 26 Jun 2023 17:39:03 GMT expires: - '-1' pragma: @@ -3951,7 +3972,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:10:55.6069337Z","changedTime":"2023-06-22T01:10:55.7745704Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:55.6495451Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:55.6495451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:10:56.0163696Z","changedTime":"2023-06-22T01:10:56.2433114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:56.0557146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:56.0557146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:12:08.0639163Z","changedTime":"2023-06-22T01:12:08.2152268Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.0902158Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.0902158Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:12:08.8913791Z","changedTime":"2023-06-22T01:12:09.0903012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.9184105Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.9184105Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T17:35:20.2043987Z","changedTime":"2023-06-26T17:35:20.3270047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:35:20.2488759Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:35:20.2488759Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T17:35:20.5740228Z","changedTime":"2023-06-26T17:35:20.6864278Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:35:20.5925974Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:35:20.5925974Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T17:36:29.8464285Z","changedTime":"2023-06-26T17:36:30.2434169Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:36:30.0871729Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:36:30.0871729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T17:36:31.3263578Z","changedTime":"2023-06-26T17:36:31.7434182Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:36:31.5715451Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:36:31.5715451Z"}}]}' headers: cache-control: - no-cache @@ -3960,7 +3981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:43 GMT + - Mon, 26 Jun 2023 17:39:03 GMT expires: - '-1' pragma: @@ -4002,11 +4023,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:14:45 GMT + - Mon, 26 Jun 2023 17:39:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4034,7 +4055,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4044,11 +4065,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:14:45 GMT + - Mon, 26 Jun 2023 17:39:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4074,7 +4095,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4084,11 +4105,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:00 GMT + - Mon, 26 Jun 2023 17:39:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4114,7 +4135,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4124,11 +4145,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:15 GMT + - Mon, 26 Jun 2023 17:39:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4154,7 +4175,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4164,11 +4185,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:30 GMT + - Mon, 26 Jun 2023 17:39:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4194,7 +4215,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4204,11 +4225,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:46 GMT + - Mon, 26 Jun 2023 17:40:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4234,7 +4255,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4244,7 +4265,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:16:01 GMT + - Mon, 26 Jun 2023 17:40:22 GMT expires: - '-1' pragma: @@ -4278,9 +4299,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-36-27-81769\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M23.1387875S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4293,9 +4314,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:36:26.8217461Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4306,7 +4327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:02 GMT + - Mon, 26 Jun 2023 17:40:23 GMT expires: - '-1' pragma: @@ -4352,7 +4373,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:16:02 GMT + - Mon, 26 Jun 2023 17:40:23 GMT expires: - '-1' pragma: @@ -4397,7 +4418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:02 GMT + - Mon, 26 Jun 2023 17:40:24 GMT expires: - '-1' pragma: @@ -4453,14 +4474,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:25.1811064Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142?api-version=2022-08-01-preview&t=2023-06-26T17%3a40%3a25&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ssLpnPuHcsgmEO_-oh7hiLKkIFVg2krQ9BTQAjMEmccr-PbXgtEYvkKsU5t2jdpxci_iv-9Bjl0-veRcPCAYFOwCdHjOB4DKz-lJ-EXjMZWoTR2kEZObh4UsCXqrx_sxDvGOetmumVV5zsuSn_flkLkiZ8Rhou0kNUWk-QeRu3nVpWaLBIx5MmX97HHP1wUNaq5inXMsfvM_Kq78VIjeBFbCnNeMxgXxuJFI1hiK0ORqaMt42Hgj-2LBvNY28UNLUcsm59gRSkGCTv_VaS4osHW5whiUi_QeEREY5pMZtwNXAL-mojAoB5gyYym0TahUOBWPCKhL5QsFkAK035q3fw&h=LNtOk70KHkIC3a6adPe9rSbiVTQ7GYyqDLLL4NUpoxY cache-control: - no-cache content-length: @@ -4468,7 +4489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:03 GMT + - Mon, 26 Jun 2023 17:40:25 GMT expires: - '-1' pragma: @@ -4500,11 +4521,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A25&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ssLpnPuHcsgmEO_-oh7hiLKkIFVg2krQ9BTQAjMEmccr-PbXgtEYvkKsU5t2jdpxci_iv-9Bjl0-veRcPCAYFOwCdHjOB4DKz-lJ-EXjMZWoTR2kEZObh4UsCXqrx_sxDvGOetmumVV5zsuSn_flkLkiZ8Rhou0kNUWk-QeRu3nVpWaLBIx5MmX97HHP1wUNaq5inXMsfvM_Kq78VIjeBFbCnNeMxgXxuJFI1hiK0ORqaMt42Hgj-2LBvNY28UNLUcsm59gRSkGCTv_VaS4osHW5whiUi_QeEREY5pMZtwNXAL-mojAoB5gyYym0TahUOBWPCKhL5QsFkAK035q3fw&h=LNtOk70KHkIC3a6adPe9rSbiVTQ7GYyqDLLL4NUpoxY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n - \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142\",\r\n + \ \"name\": \"a485b749-dd6f-493e-98af-82c326791142\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4513,7 +4534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:03 GMT + - Mon, 26 Jun 2023 17:40:25 GMT expires: - '-1' pragma: @@ -4547,11 +4568,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A25&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ssLpnPuHcsgmEO_-oh7hiLKkIFVg2krQ9BTQAjMEmccr-PbXgtEYvkKsU5t2jdpxci_iv-9Bjl0-veRcPCAYFOwCdHjOB4DKz-lJ-EXjMZWoTR2kEZObh4UsCXqrx_sxDvGOetmumVV5zsuSn_flkLkiZ8Rhou0kNUWk-QeRu3nVpWaLBIx5MmX97HHP1wUNaq5inXMsfvM_Kq78VIjeBFbCnNeMxgXxuJFI1hiK0ORqaMt42Hgj-2LBvNY28UNLUcsm59gRSkGCTv_VaS4osHW5whiUi_QeEREY5pMZtwNXAL-mojAoB5gyYym0TahUOBWPCKhL5QsFkAK035q3fw&h=LNtOk70KHkIC3a6adPe9rSbiVTQ7GYyqDLLL4NUpoxY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n - \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142\",\r\n + \ \"name\": \"a485b749-dd6f-493e-98af-82c326791142\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4560,7 +4581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:34 GMT + - Mon, 26 Jun 2023 17:40:56 GMT expires: - '-1' pragma: @@ -4600,9 +4621,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-25-3d16a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.4379592S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4611,9 +4632,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:25.1811064Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4624,7 +4645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:35 GMT + - Mon, 26 Jun 2023 17:40:56 GMT expires: - '-1' pragma: @@ -4664,9 +4685,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-25-3d16a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.4379592S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4675,9 +4696,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:25.1811064Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4688,7 +4709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:36 GMT + - Mon, 26 Jun 2023 17:40:57 GMT expires: - '-1' pragma: @@ -4748,22 +4769,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:58.0546766Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e?api-version=2022-08-01-preview&t=2023-06-26T17%3a40%3a58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=VrudgfSc6nKjKN3afm3S4Q2vQdyFXQzbmu_pprtZ83ccQeLE4PmS38t74CAx2mIp_h1_afLRdfgamrNDdamo8rgNjJ1M8aX06bpfpxAkVhC2qYAjQFSa-dm7SheNQWaf84ulvxtEihcfXPJ28mjCD_pMRiejGF_cFOzTwt1cQYBjkBnGucSp3nzvuQSz2pYraNNdy-csAlhjgCBCHjYKp8bHt-Q5ylNFMsD8SpkYjHX-JmHjd82sjRXMmsaAySMsCAbK9XyAbv1do97l3ClERdMJx8vyjBs8_uc1yCan2-ZUy77bTywLBKFivET_yLaFM4kO3NtZBTThn5aJ_hVFaQ&h=nZfy9nO00RC7AD52bd06d8mJ_TL_8MflgIR7dRn0Foc cache-control: - no-cache content-length: - - '1223' + - '1224' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:37 GMT + - Mon, 26 Jun 2023 17:40:57 GMT expires: - '-1' pragma: @@ -4799,11 +4820,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=VrudgfSc6nKjKN3afm3S4Q2vQdyFXQzbmu_pprtZ83ccQeLE4PmS38t74CAx2mIp_h1_afLRdfgamrNDdamo8rgNjJ1M8aX06bpfpxAkVhC2qYAjQFSa-dm7SheNQWaf84ulvxtEihcfXPJ28mjCD_pMRiejGF_cFOzTwt1cQYBjkBnGucSp3nzvuQSz2pYraNNdy-csAlhjgCBCHjYKp8bHt-Q5ylNFMsD8SpkYjHX-JmHjd82sjRXMmsaAySMsCAbK9XyAbv1do97l3ClERdMJx8vyjBs8_uc1yCan2-ZUy77bTywLBKFivET_yLaFM4kO3NtZBTThn5aJ_hVFaQ&h=nZfy9nO00RC7AD52bd06d8mJ_TL_8MflgIR7dRn0Foc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n - \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n + \ \"name\": \"50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4812,7 +4833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:37 GMT + - Mon, 26 Jun 2023 17:40:58 GMT expires: - '-1' pragma: @@ -4846,11 +4867,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=VrudgfSc6nKjKN3afm3S4Q2vQdyFXQzbmu_pprtZ83ccQeLE4PmS38t74CAx2mIp_h1_afLRdfgamrNDdamo8rgNjJ1M8aX06bpfpxAkVhC2qYAjQFSa-dm7SheNQWaf84ulvxtEihcfXPJ28mjCD_pMRiejGF_cFOzTwt1cQYBjkBnGucSp3nzvuQSz2pYraNNdy-csAlhjgCBCHjYKp8bHt-Q5ylNFMsD8SpkYjHX-JmHjd82sjRXMmsaAySMsCAbK9XyAbv1do97l3ClERdMJx8vyjBs8_uc1yCan2-ZUy77bTywLBKFivET_yLaFM4kO3NtZBTThn5aJ_hVFaQ&h=nZfy9nO00RC7AD52bd06d8mJ_TL_8MflgIR7dRn0Foc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n - \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n + \ \"name\": \"50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4859,7 +4880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:07 GMT + - Mon, 26 Jun 2023 17:41:28 GMT expires: - '-1' pragma: @@ -4899,9 +4920,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-58-a4455\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.5156421S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4911,20 +4932,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:58.0546766Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1789' + - '1790' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:07 GMT + - Mon, 26 Jun 2023 17:41:28 GMT expires: - '-1' pragma: @@ -4970,7 +4991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:08 GMT + - Mon, 26 Jun 2023 17:41:29 GMT expires: - '-1' pragma: @@ -5012,7 +5033,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:08 GMT + - Mon, 26 Jun 2023 17:41:29 GMT expires: - '-1' pragma: @@ -5049,9 +5070,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-58-a4455\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.5156421S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5061,20 +5082,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:58.0546766Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1789' + - '1790' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:09 GMT + - Mon, 26 Jun 2023 17:41:30 GMT expires: - '-1' pragma: @@ -5135,22 +5156,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:41:30.9930128Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a?api-version=2022-08-01-preview&t=2023-06-26T17%3a41%3a31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=bOYPPsTicMkRDgAAQh98IpadFX-rYsFneWlI_C1ElRO81jW09eXMYJ6hsnKpTCKPmLjY8j3TYt36jhS59MBVZ4ZANEMd_fTcn60SWcGTSnlFByL8s22uOjAmxyxwNLGPuGwXm6j_P9O7Esg9q8uNFBJ5GQO-282VTEB9Ciuv8E6hTgi5awdqQneoxqnifmX_Vy_hPExlLLGEwGaua9eireb98vvNVCdXW6ya2lLMb6qMmUbC-6YEvFT0ictaY30U3RMhj0sau4QFsRnz3Qj98X5XH8j5_HzI417X1xkFfeDNkZY0AoHoFBBj-8DbKdfOQxcpH30LTs2ggEAMDip87g&h=93TdD3SRATfjlYhxCLJHY5KnRnV-1d9mcTNggTDIyCQ cache-control: - no-cache content-length: - - '1225' + - '1226' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:10 GMT + - Mon, 26 Jun 2023 17:41:30 GMT expires: - '-1' pragma: @@ -5187,11 +5208,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a?api-version=2022-08-01-preview&t=2023-06-26T17%3A41%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=bOYPPsTicMkRDgAAQh98IpadFX-rYsFneWlI_C1ElRO81jW09eXMYJ6hsnKpTCKPmLjY8j3TYt36jhS59MBVZ4ZANEMd_fTcn60SWcGTSnlFByL8s22uOjAmxyxwNLGPuGwXm6j_P9O7Esg9q8uNFBJ5GQO-282VTEB9Ciuv8E6hTgi5awdqQneoxqnifmX_Vy_hPExlLLGEwGaua9eireb98vvNVCdXW6ya2lLMb6qMmUbC-6YEvFT0ictaY30U3RMhj0sau4QFsRnz3Qj98X5XH8j5_HzI417X1xkFfeDNkZY0AoHoFBBj-8DbKdfOQxcpH30LTs2ggEAMDip87g&h=93TdD3SRATfjlYhxCLJHY5KnRnV-1d9mcTNggTDIyCQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n - \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n + \ \"name\": \"b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5200,7 +5221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:10 GMT + - Mon, 26 Jun 2023 17:41:30 GMT expires: - '-1' pragma: @@ -5235,11 +5256,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a?api-version=2022-08-01-preview&t=2023-06-26T17%3A41%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=bOYPPsTicMkRDgAAQh98IpadFX-rYsFneWlI_C1ElRO81jW09eXMYJ6hsnKpTCKPmLjY8j3TYt36jhS59MBVZ4ZANEMd_fTcn60SWcGTSnlFByL8s22uOjAmxyxwNLGPuGwXm6j_P9O7Esg9q8uNFBJ5GQO-282VTEB9Ciuv8E6hTgi5awdqQneoxqnifmX_Vy_hPExlLLGEwGaua9eireb98vvNVCdXW6ya2lLMb6qMmUbC-6YEvFT0ictaY30U3RMhj0sau4QFsRnz3Qj98X5XH8j5_HzI417X1xkFfeDNkZY0AoHoFBBj-8DbKdfOQxcpH30LTs2ggEAMDip87g&h=93TdD3SRATfjlYhxCLJHY5KnRnV-1d9mcTNggTDIyCQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n - \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n + \ \"name\": \"b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5248,7 +5269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:41 GMT + - Mon, 26 Jun 2023 17:42:00 GMT expires: - '-1' pragma: @@ -5289,9 +5310,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-41-31-227c2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9260348S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5301,10 +5322,10 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:41:30.9930128Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: @@ -5314,7 +5335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:41 GMT + - Mon, 26 Jun 2023 17:42:01 GMT expires: - '-1' pragma: @@ -5360,7 +5381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:42 GMT + - Mon, 26 Jun 2023 17:42:02 GMT expires: - '-1' pragma: @@ -5402,7 +5423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:43 GMT + - Mon, 26 Jun 2023 17:42:02 GMT expires: - '-1' pragma: @@ -5440,17 +5461,17 @@ interactions: /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storepja53i65mrhwc","name":"storepja53i65mrhwc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-15T14:24:26.9018384Z","changedTime":"2023-06-01T08:36:22.3999273Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storetestmuhausman","name":"storetestmuhausman","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-16T14:04:26.199647Z","changedTime":"2023-05-16T14:14:48.0702501Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core - (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:08:23.3210529Z","changedTime":"2023-06-22T01:08:24.8527828Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:24.5090807Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:24.5090807Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:08:25.7086532Z","changedTime":"2023-06-22T01:08:26.2903722Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:26.1184254Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:26.1184254Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-22T01:10:19.5779943Z","changedTime":"2023-06-22T01:10:20.1522284Z","provisioningState":"Succeeded"}]}' + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T17:32:55.7694055Z","changedTime":"2023-06-26T17:32:57.2549035Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:32:56.8955196Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:32:56.8955196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T17:32:58.0925655Z","changedTime":"2023-06-26T17:32:58.6455508Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:32:58.5049201Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:32:58.5049201Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-26T17:34:45.6135525Z","changedTime":"2023-06-26T17:34:46.4143375Z","provisioningState":"Succeeded"}]}' headers: cache-control: - no-cache content-length: - - '148870' + - '149223' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:43 GMT + - Mon, 26 Jun 2023 17:42:02 GMT expires: - '-1' pragma: @@ -5486,9 +5507,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-41-31-227c2\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9260348S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5498,10 +5519,10 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:41:30.9930128Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: @@ -5511,7 +5532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:44 GMT + - Mon, 26 Jun 2023 17:42:03 GMT expires: - '-1' pragma: @@ -5557,7 +5578,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:17:45 GMT + - Mon, 26 Jun 2023 17:42:03 GMT expires: - '-1' pragma: @@ -5605,7 +5626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:46 GMT + - Mon, 26 Jun 2023 17:42:05 GMT expires: - '-1' pragma: @@ -5649,7 +5670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:47 GMT + - Mon, 26 Jun 2023 17:42:05 GMT expires: - '-1' pragma: @@ -5717,14 +5738,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:06.3337069Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3?api-version=2022-08-01-preview&t=2023-06-26T17%3a42%3a07&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=rw8r4eJwGnJCKfuNbCaNsN6Z70iE2znvk3BsX_djdOESTGcAzZDqsXNUzsWGQDZSequH3niDzvhMHmWYfXcI-oT57gE8frvALOzDaECQ6rCaBepRm0_ld5hsSrCAy0wOgFF0hGUIeOVqeoPBAH7LhYqSqr9u1hsYTW7oaMfkWlOV99OQFhQpqvORjQYx3P8bpFBFxKjXA6MDyqJDjpx6aAnfwhOA4doD_GaIUhjvgzJuiar0g78YDpv61ffUepwTRO8nMrtfluTndeiHflWCy8PVZnh1e0WsxF8vMLHuCWjRraCXJiKu7ouDLy7CIhVG6rVdEeK3G40rxAo5v7WE7Q&h=6NjYDaCFbRIGdkTwb_9Mflxmd8PPeXyb69hFPlGPDU4 cache-control: - no-cache content-length: @@ -5732,7 +5753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:48 GMT + - Mon, 26 Jun 2023 17:42:06 GMT expires: - '-1' pragma: @@ -5765,11 +5786,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A07&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=rw8r4eJwGnJCKfuNbCaNsN6Z70iE2znvk3BsX_djdOESTGcAzZDqsXNUzsWGQDZSequH3niDzvhMHmWYfXcI-oT57gE8frvALOzDaECQ6rCaBepRm0_ld5hsSrCAy0wOgFF0hGUIeOVqeoPBAH7LhYqSqr9u1hsYTW7oaMfkWlOV99OQFhQpqvORjQYx3P8bpFBFxKjXA6MDyqJDjpx6aAnfwhOA4doD_GaIUhjvgzJuiar0g78YDpv61ffUepwTRO8nMrtfluTndeiHflWCy8PVZnh1e0WsxF8vMLHuCWjRraCXJiKu7ouDLy7CIhVG6rVdEeK3G40rxAo5v7WE7Q&h=6NjYDaCFbRIGdkTwb_9Mflxmd8PPeXyb69hFPlGPDU4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n - \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n + \ \"name\": \"bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5778,7 +5799,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:48 GMT + - Mon, 26 Jun 2023 17:42:06 GMT expires: - '-1' pragma: @@ -5813,11 +5834,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A07&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=rw8r4eJwGnJCKfuNbCaNsN6Z70iE2znvk3BsX_djdOESTGcAzZDqsXNUzsWGQDZSequH3niDzvhMHmWYfXcI-oT57gE8frvALOzDaECQ6rCaBepRm0_ld5hsSrCAy0wOgFF0hGUIeOVqeoPBAH7LhYqSqr9u1hsYTW7oaMfkWlOV99OQFhQpqvORjQYx3P8bpFBFxKjXA6MDyqJDjpx6aAnfwhOA4doD_GaIUhjvgzJuiar0g78YDpv61ffUepwTRO8nMrtfluTndeiHflWCy8PVZnh1e0WsxF8vMLHuCWjRraCXJiKu7ouDLy7CIhVG6rVdEeK3G40rxAo5v7WE7Q&h=6NjYDaCFbRIGdkTwb_9Mflxmd8PPeXyb69hFPlGPDU4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n - \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n + \ \"name\": \"bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5826,7 +5847,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:18 GMT + - Mon, 26 Jun 2023 17:42:37 GMT expires: - '-1' pragma: @@ -5867,9 +5888,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-06-d7b45\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT20.9372294S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -5881,9 +5902,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:06.3337069Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -5894,7 +5915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:18 GMT + - Mon, 26 Jun 2023 17:42:37 GMT expires: - '-1' pragma: @@ -6031,7 +6052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:21 GMT + - Mon, 26 Jun 2023 17:42:39 GMT expires: - '-1' pragma: @@ -6066,9 +6087,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:50.7335245Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:09.9047053Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:17:50.7335245Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:42:09.9047053Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -6079,7 +6100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:21 GMT + - Mon, 26 Jun 2023 17:42:40 GMT expires: - '-1' pragma: @@ -6125,7 +6146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:22 GMT + - Mon, 26 Jun 2023 17:42:40 GMT expires: - '-1' pragma: @@ -6162,9 +6183,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-06-d7b45\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT20.9372294S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -6176,9 +6197,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:06.3337069Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6189,7 +6210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:22 GMT + - Mon, 26 Jun 2023 17:42:40 GMT expires: - '-1' pragma: @@ -6249,13 +6270,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n + \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:41.4836513Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3a18%3a24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3a42%3a41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg cache-control: - no-cache content-length: @@ -6263,7 +6284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:23 GMT + - Mon, 26 Jun 2023 17:42:40 GMT expires: - '-1' pragma: @@ -6300,11 +6321,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -6313,7 +6334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:23 GMT + - Mon, 26 Jun 2023 17:42:41 GMT expires: - '-1' pragma: @@ -6348,11 +6369,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6361,7 +6382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:54 GMT + - Mon, 26 Jun 2023 17:43:11 GMT expires: - '-1' pragma: @@ -6396,11 +6417,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6409,7 +6430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:19:24 GMT + - Mon, 26 Jun 2023 17:43:41 GMT expires: - '-1' pragma: @@ -6444,11 +6465,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6457,7 +6478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:19:54 GMT + - Mon, 26 Jun 2023 17:44:12 GMT expires: - '-1' pragma: @@ -6492,11 +6513,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6505,7 +6526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:20:24 GMT + - Mon, 26 Jun 2023 17:44:42 GMT expires: - '-1' pragma: @@ -6540,11 +6561,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6553,7 +6574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:20:55 GMT + - Mon, 26 Jun 2023 17:45:12 GMT expires: - '-1' pragma: @@ -6588,11 +6609,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6601,7 +6622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:26 GMT + - Mon, 26 Jun 2023 17:45:42 GMT expires: - '-1' pragma: @@ -6636,11 +6657,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n + \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -6649,7 +6670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:56 GMT + - Mon, 26 Jun 2023 17:46:13 GMT expires: - '-1' pragma: @@ -6690,9 +6711,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-41-97110\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M21.0713561S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6702,9 +6723,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:42:41.4836513Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6715,7 +6736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:56 GMT + - Mon, 26 Jun 2023 17:46:13 GMT expires: - '-1' pragma: @@ -6761,7 +6782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:57 GMT + - Mon, 26 Jun 2023 17:46:13 GMT expires: - '-1' pragma: @@ -6803,7 +6824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:57 GMT + - Mon, 26 Jun 2023 17:46:13 GMT expires: - '-1' pragma: @@ -6835,16 +6856,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-22T01:08:15Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-26T17:32:57Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '75737' + - '79246' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:58 GMT + - Mon, 26 Jun 2023 17:46:14 GMT expires: - '-1' pragma: @@ -6881,9 +6902,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-41-97110\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M21.0713561S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6893,9 +6914,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-26T17:42:41.4836513Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6906,7 +6927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:59 GMT + - Mon, 26 Jun 2023 17:46:15 GMT expires: - '-1' pragma: @@ -6934,7 +6955,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -6948,15 +6969,15 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:02 GMT + - Mon, 26 Jun 2023 17:46:16 GMT expires: - - Thu, 22 Jun 2023 01:22:02 GMT + - Mon, 26 Jun 2023 17:46:16 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 + - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 server: - Kestrel strict-transport-security: @@ -6976,12 +6997,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -7053,17 +7074,17 @@ interactions: connection: - keep-alive content-length: - - '41660' + - '41663' content-type: - application/octet-stream date: - - Thu, 22 Jun 2023 01:22:02 GMT + - Mon, 26 Jun 2023 17:46:16 GMT etag: - - '0x8DB7236999A3CDE' + - '0x8DB75852C02DBEA' last-modified: - - Wed, 21 Jun 2023 09:05:03 GMT + - Sun, 25 Jun 2023 14:05:03 GMT x-azure-ref: - - 20230622T012202Z-sp102gyr2x4xh8kue1spgtqpa400000003bg00000000fdav + - 20230626T174616Z-8w338quabh6c180an6hdrx3cg800000003b000000000b1nm x-cache: - TCP_HIT x-ms-blob-type: @@ -7122,13 +7143,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n + \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:46:18.6646112Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3a22%3a08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3a46%3a18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU cache-control: - no-cache content-length: @@ -7136,7 +7157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:08 GMT + - Mon, 26 Jun 2023 17:46:18 GMT expires: - '-1' pragma: @@ -7173,11 +7194,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3A46%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n - \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n + \ \"name\": \"6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -7186,7 +7207,55 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:09 GMT + - Mon, 26 Jun 2023 17:46:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3A46%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n + \ \"name\": \"6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n \"status\": \"deploying\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 17:46:48 GMT expires: - '-1' pragma: @@ -7221,11 +7290,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3A46%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n - \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n + \ \"name\": \"6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -7234,7 +7303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:38 GMT + - Mon, 26 Jun 2023 17:47:19 GMT expires: - '-1' pragma: @@ -7275,32 +7344,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-46-18-db7d3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT33.965111S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storecvoi532gxi6ho\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:46:18.6646112Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1906' + - '1905' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:39 GMT + - Mon, 26 Jun 2023 17:47:19 GMT expires: - '-1' pragma: @@ -7340,32 +7409,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-46-18-db7d3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT33.965111S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storecvoi532gxi6ho\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:46:18.6646112Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1906' + - '1905' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:39 GMT + - Mon, 26 Jun 2023 17:47:20 GMT expires: - '-1' pragma: @@ -7411,7 +7480,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:40 GMT + - Mon, 26 Jun 2023 17:47:21 GMT expires: - '-1' pragma: @@ -7455,11 +7524,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:43 GMT + - Mon, 26 Jun 2023 17:47:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7487,7 +7556,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7497,11 +7566,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:43 GMT + - Mon, 26 Jun 2023 17:47:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7527,7 +7596,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7537,11 +7606,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:59 GMT + - Mon, 26 Jun 2023 17:47:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7567,7 +7636,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7577,11 +7646,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:14 GMT + - Mon, 26 Jun 2023 17:47:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7607,7 +7676,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7617,11 +7686,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:29 GMT + - Mon, 26 Jun 2023 17:48:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7647,7 +7716,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7657,11 +7726,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:44 GMT + - Mon, 26 Jun 2023 17:48:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7687,7 +7756,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7697,7 +7766,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:59 GMT + - Mon, 26 Jun 2023 17:48:39 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 7692abfdc08..5a6c4ffad32 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2157,9 +2157,9 @@ def test_create_deployment_stack_subscription(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), - 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), - 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2178,7 +2178,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --description "stack deployment" --delete-all --deny-settings-excluded-principals "principal1 principal2" --deny-settings-excluded-actions "action1 action2" --deny-settings-apply-to-child-scopes --yes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2357,7 +2357,7 @@ def test_delete_deployment_stack_subscription(self): 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2511,9 +2511,9 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), - 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), - 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, 'template-spec-version': "v1", @@ -2534,7 +2534,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.kwargs.update({'template-spec-id': template_spec_id}) # create deployment stack with template file and parameter file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes --description "stack deployment" --delete-all --deny-settings-excluded-principals "principal1 principal2" --deny-settings-excluded-actions "action1 action2" --deny-settings-apply-to-child-scopes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') @@ -2552,7 +2552,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # test flag: delete--resources, create deployment stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes --delete-resource-groups', checks=self.check('provisioningState', 'succeeded')) # update stack, default actionOnUnmanage settings should be detached self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) @@ -2702,7 +2702,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): }) # create stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2835,12 +2835,13 @@ def test_create_deployment_stack_management_group(self, resource_group): self.kwargs.update({ 'name': deployment_stack_name, 'location': location, + 'subscription': self.get_subscription_id(), 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'data\\bicep_simple_template.bicep').replace('\\', '\\\\'), - 'bicep-file-storage':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_template.bicep').replace('\\', '\\\\'), - 'bicep-param-file':os.path.join(curr_dir, 'data\\bicepparam\\storage_account_params.bicepparam').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2855,14 +2856,25 @@ def test_create_deployment_stack_management_group(self, resource_group): 'mg': "AzBlueprintAssignTest" }) + # create templete spec + basic_template_spec = self.cmd('ts create --name {template-spec-name} --version {template-spec-version} --location {location} --template-file {template-file} --resource-group {resource-group}').get_output_in_json() + template_spec_id = basic_template_spec['id'] + + self.kwargs.update({'template-spec-id': template_spec_id}) + + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-spec "{template-spec-id}" --deny-settings-mode "none" --parameters "{parameter-file}" --description "MG stack deployment" --deployment-subscription {subscription}', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') + # create deployment stack with template file and parameter file - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --description "MG stack deployment" --delete-all --deny-settings-excluded-principals "principal1 principal2" --deny-settings-excluded-actions "action1 action2" --deny-settings-apply-to-child-scopes', checks=self.check('provisioningState', 'succeeded')) # cleanup self.cmd('stack mg delete --name {name} --management-group-id {mg} --yes') # test delete flag --delete-resource-groups - create stack with resource1 - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}"', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-one}" --delete-resources --tags "tag1 tag2"', checks=self.check('provisioningState', 'succeeded')) # update stack with resource2 set to detach self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-two}"', checks=self.check('provisioningState', 'succeeded')) @@ -2874,7 +2886,7 @@ def test_create_deployment_stack_management_group(self, resource_group): self.cmd('group show -n {resource-two}') # update stack with resource3 set to delete - self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-three}" --delete-resources --delete-resources', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack mg create --name {name} --management-group-id {mg} --location {location} --template-file "{template-file-rg}" --deny-settings-mode "none" --parameters "name={resource-three}" --delete-resources', checks=self.check('provisioningState', 'succeeded')) # check resource1 still exists in Azure self.cmd('group show -n {resource-one}') From f9f5a483fd0f0d5ce52578d873d9e290ec859f95 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Mon, 26 Jun 2023 15:41:39 -0400 Subject: [PATCH 131/139] Attempt to fix cassette errors --- ...reate_deployment_stack_resource_group.yaml | 1192 ++++++++--------- ..._create_deployment_stack_subscription.yaml | 1103 +++++++-------- 2 files changed, 1090 insertions(+), 1205 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index 3d3a3f958e3..115b46b1a18 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:23 GMT + - Wed, 21 Jun 2023 21:01:57 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:23 GMT + - Wed, 21 Jun 2023 21:01:58 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:25.4140574Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:01:59.6551891Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:25.4140574Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:01:59.6551891Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:25 GMT + - Wed, 21 Jun 2023 21:02:00 GMT expires: - '-1' pragma: @@ -183,21 +183,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:26.7734519Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:26.7734519Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1478' + - '1476' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:26 GMT + - Wed, 21 Jun 2023 21:02:01 GMT expires: - '-1' pragma: @@ -226,8 +226,7 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -245,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:27 GMT + - Wed, 21 Jun 2023 21:02:02 GMT expires: - '-1' pragma: @@ -267,9 +266,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "delete", "resourceGroups": "delete"}, "description": "stack deployment", - "denySettings": {"excludedPrincipals": ["principal1", "principal2"], "excludedActions": - ["action1", "action2"], "applyToChildScopes": true}}}' + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -280,13 +278,12 @@ interactions: Connection: - keep-alive Content-Length: - - '866' + - '737' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -294,34 +291,31 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"description\": \"stack - deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n - \ \"principal1\",\r\n \"principal2\"\r\n ],\r\n \"excludedActions\": - [\r\n \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\",\r\n - \ \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n \"value\": - \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:28.001401Z\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:03.2930232Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:28.001401Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c?api-version=2022-08-01-preview&t=2023-06-26T17%3a55%3a28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Z7xy5SpRDyjzR1lstM0iL0-yLumJUDD6MOITUTBf_WuGllbxbC0OSYKUbhP8cD9bKWozaWDICRYcAKFxFKaMCHEilG2xHnPcc6fP8X-7NDwQ64NiYWo0xY3_0iqzGMn5YsYV6BFNPHbBQX44kMCQQulTmDxwLMR2vm0GuOMG_fT49Yap4g7A_XkuJODCnTArCGCBkLJGPFNYs785I1u1dkYE_NGQogR6gBIhuok4DZXb4j7SC-XVPnIaVPf2WXlSUAjmebZFS7KLbwnBkDI2K2l1ngHWv2LKtIZ3mbyrJ1bzS0etJ3rnExCpG5rYk94JsqMwGSR2gws0ThsVxQmj7Q&h=hD-8xoom4iejzRQd28Oy15dtvwaIZbRBSzzaQXO3maA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM cache-control: - no-cache content-length: - - '1423' + - '1223' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:28 GMT + - Wed, 21 Jun 2023 21:02:03 GMT expires: - '-1' pragma: @@ -350,16 +344,15 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c?api-version=2022-08-01-preview&t=2023-06-26T17%3A55%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Z7xy5SpRDyjzR1lstM0iL0-yLumJUDD6MOITUTBf_WuGllbxbC0OSYKUbhP8cD9bKWozaWDICRYcAKFxFKaMCHEilG2xHnPcc6fP8X-7NDwQ64NiYWo0xY3_0iqzGMn5YsYV6BFNPHbBQX44kMCQQulTmDxwLMR2vm0GuOMG_fT49Yap4g7A_XkuJODCnTArCGCBkLJGPFNYs785I1u1dkYE_NGQogR6gBIhuok4DZXb4j7SC-XVPnIaVPf2WXlSUAjmebZFS7KLbwnBkDI2K2l1ngHWv2LKtIZ3mbyrJ1bzS0etJ3rnExCpG5rYk94JsqMwGSR2gws0ThsVxQmj7Q&h=hD-8xoom4iejzRQd28Oy15dtvwaIZbRBSzzaQXO3maA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n - \ \"name\": \"9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n + \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -368,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:28 GMT + - Wed, 21 Jun 2023 21:02:03 GMT expires: - '-1' pragma: @@ -399,16 +392,15 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c?api-version=2022-08-01-preview&t=2023-06-26T17%3A55%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Z7xy5SpRDyjzR1lstM0iL0-yLumJUDD6MOITUTBf_WuGllbxbC0OSYKUbhP8cD9bKWozaWDICRYcAKFxFKaMCHEilG2xHnPcc6fP8X-7NDwQ64NiYWo0xY3_0iqzGMn5YsYV6BFNPHbBQX44kMCQQulTmDxwLMR2vm0GuOMG_fT49Yap4g7A_XkuJODCnTArCGCBkLJGPFNYs785I1u1dkYE_NGQogR6gBIhuok4DZXb4j7SC-XVPnIaVPf2WXlSUAjmebZFS7KLbwnBkDI2K2l1ngHWv2LKtIZ3mbyrJ1bzS0etJ3rnExCpG5rYk94JsqMwGSR2gws0ThsVxQmj7Q&h=hD-8xoom4iejzRQd28Oy15dtvwaIZbRBSzzaQXO3maA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n - \ \"name\": \"9b655c60-657a-4732-ac1e-896ce8fb427c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n + \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -417,7 +409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:57 GMT + - Wed, 21 Jun 2023 21:02:33 GMT expires: - '-1' pragma: @@ -448,8 +440,7 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -457,36 +448,33 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-55-28-fc967\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.287491S\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n - \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n - \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": - \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n - \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:28.001401Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:28.001401Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n + \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1862' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:58 GMT + - Wed, 21 Jun 2023 21:02:33 GMT expires: - '-1' pragma: @@ -524,36 +512,33 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-55-28-fc967\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.287491S\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n - \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n - \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": - \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n - \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:28.001401Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:28.001401Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n + \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1862' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:55:58 GMT + - Wed, 21 Jun 2023 21:02:35 GMT expires: - '-1' pragma: @@ -599,7 +584,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:55:59 GMT + - Wed, 21 Jun 2023 21:02:35 GMT expires: - '-1' pragma: @@ -646,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:00 GMT + - Wed, 21 Jun 2023 21:02:36 GMT expires: - '-1' pragma: @@ -693,21 +678,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:55:26.7734519Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:55:26.7734519Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1478' + - '1476' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:00 GMT + - Wed, 21 Jun 2023 21:02:38 GMT expires: - '-1' pragma: @@ -761,14 +746,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:01.0776781Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:01.0776781Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592?api-version=2022-08-01-preview&t=2023-06-26T17%3a56%3a01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wwxMsVHce3bCC-iskPSK9rAfxa4vg_K-3v2kRMKIGX9Rj9MJhkID9wzOfFnlAhoZa8fFtQBEEEPnJXrRnIWWN9WYtpKCE88jZVvH6nw8nOuOUlxfM-4awTuL9dNNaZb_AWH4xc81fuGXK0Z_NUAri_JzKExOlsOLuK09ZdCUKkKFhKqkNwnliTK8xZizG5_NiwsZpYK9GbKXednXNr1jkJ8TCxMVQADX0CQ4IDQxXtnwIn4JFmFdp-1Dr8AjfE5eZ-UPvCxODipT2ZDLSt3oUItHhqS2Bgu7Y3hcMF3b4SqXAREO0lHrv1F9cFSVcBPRIpKNos4ON3ETWmkP7F7fzg&h=u3jsS7HAcZRXrWR3yJxkQNRqYfEkGK6KQEl79RN3RA0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU cache-control: - no-cache content-length: @@ -776,7 +761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:01 GMT + - Wed, 21 Jun 2023 21:02:38 GMT expires: - '-1' pragma: @@ -809,11 +794,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wwxMsVHce3bCC-iskPSK9rAfxa4vg_K-3v2kRMKIGX9Rj9MJhkID9wzOfFnlAhoZa8fFtQBEEEPnJXrRnIWWN9WYtpKCE88jZVvH6nw8nOuOUlxfM-4awTuL9dNNaZb_AWH4xc81fuGXK0Z_NUAri_JzKExOlsOLuK09ZdCUKkKFhKqkNwnliTK8xZizG5_NiwsZpYK9GbKXednXNr1jkJ8TCxMVQADX0CQ4IDQxXtnwIn4JFmFdp-1Dr8AjfE5eZ-UPvCxODipT2ZDLSt3oUItHhqS2Bgu7Y3hcMF3b4SqXAREO0lHrv1F9cFSVcBPRIpKNos4ON3ETWmkP7F7fzg&h=u3jsS7HAcZRXrWR3yJxkQNRqYfEkGK6KQEl79RN3RA0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n - \ \"name\": \"25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n + \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -822,7 +807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:01 GMT + - Wed, 21 Jun 2023 21:02:39 GMT expires: - '-1' pragma: @@ -857,11 +842,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wwxMsVHce3bCC-iskPSK9rAfxa4vg_K-3v2kRMKIGX9Rj9MJhkID9wzOfFnlAhoZa8fFtQBEEEPnJXrRnIWWN9WYtpKCE88jZVvH6nw8nOuOUlxfM-4awTuL9dNNaZb_AWH4xc81fuGXK0Z_NUAri_JzKExOlsOLuK09ZdCUKkKFhKqkNwnliTK8xZizG5_NiwsZpYK9GbKXednXNr1jkJ8TCxMVQADX0CQ4IDQxXtnwIn4JFmFdp-1Dr8AjfE5eZ-UPvCxODipT2ZDLSt3oUItHhqS2Bgu7Y3hcMF3b4SqXAREO0lHrv1F9cFSVcBPRIpKNos4ON3ETWmkP7F7fzg&h=u3jsS7HAcZRXrWR3yJxkQNRqYfEkGK6KQEl79RN3RA0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n - \ \"name\": \"25067d31-c25d-4b49-8f2f-940d2daab592\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n + \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -870,7 +855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:31 GMT + - Wed, 21 Jun 2023 21:03:09 GMT expires: - '-1' pragma: @@ -911,8 +896,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-01-802d1\",\r\n - \ \"duration\": \"PT9.2424305S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n + \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -924,9 +909,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:01.0776781Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:01.0776781Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -937,7 +922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:31 GMT + - Wed, 21 Jun 2023 21:03:09 GMT expires: - '-1' pragma: @@ -977,8 +962,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-01-802d1\",\r\n - \ \"duration\": \"PT9.2424305S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n + \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -990,9 +975,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:01.0776781Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:01.0776781Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1003,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:32 GMT + - Wed, 21 Jun 2023 21:03:10 GMT expires: - '-1' pragma: @@ -1049,7 +1034,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:56:32 GMT + - Wed, 21 Jun 2023 21:03:10 GMT expires: - '-1' pragma: @@ -1095,7 +1080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:33 GMT + - Wed, 21 Jun 2023 21:03:11 GMT expires: - '-1' pragma: @@ -1109,157 +1094,6 @@ interactions: status: code: 404 message: Not Found -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://aka.ms/BicepLatestRelease - response: - body: - string: '' - headers: - cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive - content-length: - - '0' - date: - - Mon, 26 Jun 2023 17:56:34 GMT - expires: - - Mon, 26 Jun 2023 17:56:34 GMT - location: - - https://downloads.bicep.azure.com/releases/latest - pragma: - - no-cache - request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e - server: - - Kestrel - strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://downloads.bicep.azure.com/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## - Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files - (bicep-style parameters file). This includes support for:\r\n - support for - expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - - supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group - create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate - bicepparam file from given Bicep file (#10595)\r\n - Buildparams command - vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env - variables in .bicepparam files (#10726)\r\n - Support bicepparam files for - VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - - Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming - modules from ACR (#10747)\r\n* Bicep build command linter provides a structured - output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* - Mark overload matches as PotentialMatches if any argument is of type ''any'' - (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* - Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from - symbol resolution logic (#10626)\r\n* Derive operation return type from operands - (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in - addition to metadata.json (#10860)\r\n* Add intellisense support for param - and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI - by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument - is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries - (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* - Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' - headers: - accept-ranges: - - bytes - connection: - - keep-alive - content-length: - - '41663' - content-type: - - application/octet-stream - date: - - Mon, 26 Jun 2023 17:56:34 GMT - etag: - - '0x8DB75852C02DBEA' - last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT - x-azure-ref: - - 20230626T175634Z-1q0fc2t1ut41hfmtb06702qrdg00000007n000000000ha6z - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - status: - code: 200 - message: OK - request: body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": @@ -1301,13 +1135,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T17:56:36.3339402Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:36.3339402Z\"\r\n + \"2023-06-21T21:03:17.1566091Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6?api-version=2022-08-01-preview&t=2023-06-26T17%3a56%3a36&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=faL4wjqiOIRkWxWvvD73mV6EmEIDxTdo4oul5c4dK0yGD6GwkBrIeL2PoaYoTtzn9W_r2kiObfIIb3mXGer9a79m4GAbNuaOjbiVUHYUx5yEIjU7C3iLNh5Q6-94wFaLhBX1Ph4hjI44l0akSc78fmgsl6qv94ym1CPugV9Y6YKn0dltEZXXhrx5THlbL-v1j1h_hlf0T762F5GWvIsiTIBcpX1Le-SmXiV8j2v9QWZeWlVTjXGsatgRiDd1qQ6h0tAM5Th1oUMec1JONSawRKnuq28KrEUBGy0uBmKKpT8y0Q0kikrR27-y_k4ajdgeJE87thWSl3ZKeJK679ABcg&h=NG1nXxr8_MzZYOVNLtsZiQ3Ev7GsCmGUBNpZ7KQkBHI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM cache-control: - no-cache content-length: @@ -1315,7 +1149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:36 GMT + - Wed, 21 Jun 2023 21:03:17 GMT expires: - '-1' pragma: @@ -1347,11 +1181,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A36&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=faL4wjqiOIRkWxWvvD73mV6EmEIDxTdo4oul5c4dK0yGD6GwkBrIeL2PoaYoTtzn9W_r2kiObfIIb3mXGer9a79m4GAbNuaOjbiVUHYUx5yEIjU7C3iLNh5Q6-94wFaLhBX1Ph4hjI44l0akSc78fmgsl6qv94ym1CPugV9Y6YKn0dltEZXXhrx5THlbL-v1j1h_hlf0T762F5GWvIsiTIBcpX1Le-SmXiV8j2v9QWZeWlVTjXGsatgRiDd1qQ6h0tAM5Th1oUMec1JONSawRKnuq28KrEUBGy0uBmKKpT8y0Q0kikrR27-y_k4ajdgeJE87thWSl3ZKeJK679ABcg&h=NG1nXxr8_MzZYOVNLtsZiQ3Ev7GsCmGUBNpZ7KQkBHI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n - \ \"name\": \"0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n + \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1360,7 +1194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:56:36 GMT + - Wed, 21 Jun 2023 21:03:17 GMT expires: - '-1' pragma: @@ -1394,11 +1228,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6?api-version=2022-08-01-preview&t=2023-06-26T17%3A56%3A36&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=faL4wjqiOIRkWxWvvD73mV6EmEIDxTdo4oul5c4dK0yGD6GwkBrIeL2PoaYoTtzn9W_r2kiObfIIb3mXGer9a79m4GAbNuaOjbiVUHYUx5yEIjU7C3iLNh5Q6-94wFaLhBX1Ph4hjI44l0akSc78fmgsl6qv94ym1CPugV9Y6YKn0dltEZXXhrx5THlbL-v1j1h_hlf0T762F5GWvIsiTIBcpX1Le-SmXiV8j2v9QWZeWlVTjXGsatgRiDd1qQ6h0tAM5Th1oUMec1JONSawRKnuq28KrEUBGy0uBmKKpT8y0Q0kikrR27-y_k4ajdgeJE87thWSl3ZKeJK679ABcg&h=NG1nXxr8_MzZYOVNLtsZiQ3Ev7GsCmGUBNpZ7KQkBHI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n - \ \"name\": \"0da34114-35e0-4135-a4db-5aff3f959dc6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n + \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1407,7 +1241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:06 GMT + - Wed, 21 Jun 2023 21:03:47 GMT expires: - '-1' pragma: @@ -1447,8 +1281,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-36-9b31d\",\r\n - \ \"duration\": \"PT6.3494575S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n + \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1458,9 +1292,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:36.3339402Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:36.3339402Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1471,7 +1305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:06 GMT + - Wed, 21 Jun 2023 21:03:47 GMT expires: - '-1' pragma: @@ -1511,8 +1345,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-56-36-9b31d\",\r\n - \ \"duration\": \"PT6.3494575S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n + \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1522,9 +1356,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:56:36.3339402Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:56:36.3339402Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1535,7 +1369,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:08 GMT + - Wed, 21 Jun 2023 21:03:49 GMT expires: - '-1' pragma: @@ -1581,7 +1415,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:57:08 GMT + - Wed, 21 Jun 2023 21:03:49 GMT expires: - '-1' pragma: @@ -1628,7 +1462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:08 GMT + - Wed, 21 Jun 2023 21:03:49 GMT expires: - '-1' pragma: @@ -1692,14 +1526,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:09.1981058Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243?api-version=2022-08-01-preview&t=2023-06-26T17%3a57%3a09&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=OH7ItkI1bg3oI3MmgdQ2x4A91eGbPUWJ32rZToBlBMfSECzJldJwv7aNkzfm7ZS7Y7eS0AcugyPq0CEbd4PxBozAvC2qmGhaQDLcdcw3TR1FiZkFeQOCP_Dur7eEXuHLD_vCSlzGuTdcuWx_rH3VryoRWSvmZKLy1-BlSe2ImXvjiDyX6eu4ApjD9qAu9Brn3CljxPhvRq00s28b_WgdU1ueGXnjEj_10qxCOC6ruD1iEtCpM-yPTFHEk0WURWd48F_9aE24Mxs8MZsx_JZotg9on2t9FkprNvHUSE3GRiguT13C0C2G92JsVRDFSNZOBt53PhCMZCdyWyyT9lIL4g&h=rieFvRHSQRoxbOkgZmG8csmBws1y_XCEXKRwSwbSGnM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A cache-control: - no-cache content-length: @@ -1707,7 +1541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:09 GMT + - Wed, 21 Jun 2023 21:03:50 GMT expires: - '-1' pragma: @@ -1740,11 +1574,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A09&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=OH7ItkI1bg3oI3MmgdQ2x4A91eGbPUWJ32rZToBlBMfSECzJldJwv7aNkzfm7ZS7Y7eS0AcugyPq0CEbd4PxBozAvC2qmGhaQDLcdcw3TR1FiZkFeQOCP_Dur7eEXuHLD_vCSlzGuTdcuWx_rH3VryoRWSvmZKLy1-BlSe2ImXvjiDyX6eu4ApjD9qAu9Brn3CljxPhvRq00s28b_WgdU1ueGXnjEj_10qxCOC6ruD1iEtCpM-yPTFHEk0WURWd48F_9aE24Mxs8MZsx_JZotg9on2t9FkprNvHUSE3GRiguT13C0C2G92JsVRDFSNZOBt53PhCMZCdyWyyT9lIL4g&h=rieFvRHSQRoxbOkgZmG8csmBws1y_XCEXKRwSwbSGnM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243\",\r\n - \ \"name\": \"5013a92f-3120-4a72-a195-31c434ba4243\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n + \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1753,7 +1587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:09 GMT + - Wed, 21 Jun 2023 21:03:50 GMT expires: - '-1' pragma: @@ -1788,11 +1622,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A09&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=OH7ItkI1bg3oI3MmgdQ2x4A91eGbPUWJ32rZToBlBMfSECzJldJwv7aNkzfm7ZS7Y7eS0AcugyPq0CEbd4PxBozAvC2qmGhaQDLcdcw3TR1FiZkFeQOCP_Dur7eEXuHLD_vCSlzGuTdcuWx_rH3VryoRWSvmZKLy1-BlSe2ImXvjiDyX6eu4ApjD9qAu9Brn3CljxPhvRq00s28b_WgdU1ueGXnjEj_10qxCOC6ruD1iEtCpM-yPTFHEk0WURWd48F_9aE24Mxs8MZsx_JZotg9on2t9FkprNvHUSE3GRiguT13C0C2G92JsVRDFSNZOBt53PhCMZCdyWyyT9lIL4g&h=rieFvRHSQRoxbOkgZmG8csmBws1y_XCEXKRwSwbSGnM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5013a92f-3120-4a72-a195-31c434ba4243\",\r\n - \ \"name\": \"5013a92f-3120-4a72-a195-31c434ba4243\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n + \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1801,7 +1635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:39 GMT + - Wed, 21 Jun 2023 21:04:21 GMT expires: - '-1' pragma: @@ -1842,8 +1676,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-09-c89e6\",\r\n - \ \"duration\": \"PT5.1877254S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n + \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -1854,9 +1688,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:09.1981058Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1867,7 +1701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:39 GMT + - Wed, 21 Jun 2023 21:04:21 GMT expires: - '-1' pragma: @@ -1908,8 +1742,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-09-c89e6\",\r\n - \ \"duration\": \"PT5.1877254S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n + \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -1920,9 +1754,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:09.1981058Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1933,7 +1767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:40 GMT + - Wed, 21 Jun 2023 21:04:23 GMT expires: - '-1' pragma: @@ -2001,14 +1835,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:41.4648055Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25?api-version=2022-08-01-preview&t=2023-06-26T17%3a57%3a41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CtQv6rmQKGl_6-ihYNf5vRba3e_PUmCz7a7YK_zQiWoXL_MW_nG7eqUrWD8FzcIA8iiDh18ranjyq2aXQ9Xq6ijnDCyzeD4P5lbhdnU2SLmahKymoEnkmncu7jDnTQmz9deu3b2w_jfsQLiNHYSMyjad-lz8Zd4RRPxyA0pOdwmdaMRMDn8yJpX7Fsg8mnorOeUHn6tS0_ZPOsyslt5zfJ3WP-xjxU__u95QW3lgdZFk2xpsEvAR3exNXmm0oOflufL5MBJTB58o0AfY6YniNjCjMeHYAkrCr9lEMdl521LaVQB7epORskp0k1DVwLZz0DfH4D-MDTkcxDSulHcbyw&h=hHmUObPJnkAPhDbSvPLpNo_vAtj6zJcRSrOY_9rYxRw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3a04%3a23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg cache-control: - no-cache content-length: @@ -2016,7 +1850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:41 GMT + - Wed, 21 Jun 2023 21:04:23 GMT expires: - '-1' pragma: @@ -2053,11 +1887,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CtQv6rmQKGl_6-ihYNf5vRba3e_PUmCz7a7YK_zQiWoXL_MW_nG7eqUrWD8FzcIA8iiDh18ranjyq2aXQ9Xq6ijnDCyzeD4P5lbhdnU2SLmahKymoEnkmncu7jDnTQmz9deu3b2w_jfsQLiNHYSMyjad-lz8Zd4RRPxyA0pOdwmdaMRMDn8yJpX7Fsg8mnorOeUHn6tS0_ZPOsyslt5zfJ3WP-xjxU__u95QW3lgdZFk2xpsEvAR3exNXmm0oOflufL5MBJTB58o0AfY6YniNjCjMeHYAkrCr9lEMdl521LaVQB7epORskp0k1DVwLZz0DfH4D-MDTkcxDSulHcbyw&h=hHmUObPJnkAPhDbSvPLpNo_vAtj6zJcRSrOY_9rYxRw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n - \ \"name\": \"e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n + \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2066,7 +1900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:57:41 GMT + - Wed, 21 Jun 2023 21:04:24 GMT expires: - '-1' pragma: @@ -2101,11 +1935,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25?api-version=2022-08-01-preview&t=2023-06-26T17%3A57%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CtQv6rmQKGl_6-ihYNf5vRba3e_PUmCz7a7YK_zQiWoXL_MW_nG7eqUrWD8FzcIA8iiDh18ranjyq2aXQ9Xq6ijnDCyzeD4P5lbhdnU2SLmahKymoEnkmncu7jDnTQmz9deu3b2w_jfsQLiNHYSMyjad-lz8Zd4RRPxyA0pOdwmdaMRMDn8yJpX7Fsg8mnorOeUHn6tS0_ZPOsyslt5zfJ3WP-xjxU__u95QW3lgdZFk2xpsEvAR3exNXmm0oOflufL5MBJTB58o0AfY6YniNjCjMeHYAkrCr9lEMdl521LaVQB7epORskp0k1DVwLZz0DfH4D-MDTkcxDSulHcbyw&h=hHmUObPJnkAPhDbSvPLpNo_vAtj6zJcRSrOY_9rYxRw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n - \ \"name\": \"e60fa13b-756d-4eae-8f07-7c7c98b18a25\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n + \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2114,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:11 GMT + - Wed, 21 Jun 2023 21:04:54 GMT expires: - '-1' pragma: @@ -2155,8 +1989,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-41-07f02\",\r\n - \ \"duration\": \"PT5.1334033S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n + \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2169,9 +2003,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:41.4648055Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2182,7 +2016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:11 GMT + - Wed, 21 Jun 2023 21:04:54 GMT expires: - '-1' pragma: @@ -2319,7 +2153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:13 GMT + - Wed, 21 Jun 2023 21:04:56 GMT expires: - '-1' pragma: @@ -2355,9 +2189,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:10.9795178Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:54.0989594Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:11.3545222Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:54.4896164Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2368,7 +2202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:14 GMT + - Wed, 21 Jun 2023 21:04:56 GMT expires: - '-1' pragma: @@ -2505,7 +2339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:16 GMT + - Wed, 21 Jun 2023 21:04:58 GMT expires: - '-1' pragma: @@ -2541,20 +2375,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:43.98113Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:04:25.9580653Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:44.4186648Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:26.7549909Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: cache-control: - no-cache content-length: - - '714' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:17 GMT + - Wed, 21 Jun 2023 21:04:59 GMT expires: - '-1' pragma: @@ -2595,8 +2429,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-57-41-07f02\",\r\n - \ \"duration\": \"PT5.1334033S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n + \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2609,9 +2443,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:57:41.4648055Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -2622,7 +2456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:18 GMT + - Wed, 21 Jun 2023 21:05:00 GMT expires: - '-1' pragma: @@ -2690,22 +2524,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:58:18.334028Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3a58%3a18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3a05%3a00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg cache-control: - no-cache content-length: - - '1172' + - '1173' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:18 GMT + - Wed, 21 Jun 2023 21:05:00 GMT expires: - '-1' pragma: @@ -2721,7 +2555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2742,11 +2576,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n - \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2755,7 +2589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:18 GMT + - Wed, 21 Jun 2023 21:05:00 GMT expires: - '-1' pragma: @@ -2790,11 +2624,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n - \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2803,7 +2637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:58:48 GMT + - Wed, 21 Jun 2023 21:05:30 GMT expires: - '-1' pragma: @@ -2838,11 +2672,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n - \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2851,7 +2685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:59:18 GMT + - Wed, 21 Jun 2023 21:06:01 GMT expires: - '-1' pragma: @@ -2886,11 +2720,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n - \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2899,7 +2733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:59:48 GMT + - Wed, 21 Jun 2023 21:06:31 GMT expires: - '-1' pragma: @@ -2934,11 +2768,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n - \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2947,7 +2781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:19 GMT + - Wed, 21 Jun 2023 21:07:01 GMT expires: - '-1' pragma: @@ -2982,11 +2816,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8?api-version=2022-08-01-preview&t=2023-06-26T17%3A58%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=i8TUD9pEd5jNR5gZjPuceGaug6hO8CWaY_cVlEGOOkDSkYDUAVu3rRh6azCfjhKvaSDxcrSGfL0V3xRpESRMPtaeZ8VzcN7wSG_7mDPAy2DQ14PQiBNl6WAjADNiJsv_THcAIinfdjQMtyNrsHHDaNUM3DjqNypyPRYo-LUOUz501POScJh3a3tkZ8-RMbTlwUZoQtYtf8s6pOdlyWdtx5I40ncPO19N8OuKD4cPi88NRovk0U1ZUrzRK43HHQNuDgUAdR1vNY-Etk8o9L6SaWubGZC6JMyv5jPqc1v9Vn2YSDna8j3rGB2wXFvDKMKNUmot1ohZOXBsTnfgYYg8Tw&h=Myk-rexdweKOSuasDLhHmGUXEJ5Z5JJYU0mS9j10asI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n - \ \"name\": \"4a483af5-4186-462b-8b67-6de1dea119f8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n + \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2995,7 +2829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:49 GMT + - Wed, 21 Jun 2023 21:07:32 GMT expires: - '-1' pragma: @@ -3036,8 +2870,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-58-18-4e943\",\r\n - \ \"duration\": \"PT2M21.3298463S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n + \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3050,20 +2884,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:58:18.334028Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2428' + - '2429' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:49 GMT + - Wed, 21 Jun 2023 21:07:32 GMT expires: - '-1' pragma: @@ -3200,7 +3034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:50 GMT + - Wed, 21 Jun 2023 21:07:33 GMT expires: - '-1' pragma: @@ -3236,20 +3070,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:58:20.9964744Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:05:03.3850369Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:58:21.355877Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:03.8381721Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: cache-control: - no-cache content-length: - - '719' + - '720' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:52 GMT + - Wed, 21 Jun 2023 21:07:34 GMT expires: - '-1' pragma: @@ -3289,8 +3123,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-17-58-18-4e943\",\r\n - \ \"duration\": \"PT2M21.3298463S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n + \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3303,20 +3137,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:57:09.1981058Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:58:18.334028Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2428' + - '2429' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:52 GMT + - Wed, 21 Jun 2023 21:07:35 GMT expires: - '-1' pragma: @@ -3362,7 +3196,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:00:52 GMT + - Wed, 21 Jun 2023 21:07:36 GMT expires: - '-1' pragma: @@ -3410,7 +3244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:53 GMT + - Wed, 21 Jun 2023 21:07:37 GMT expires: - '-1' pragma: @@ -3454,7 +3288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:54 GMT + - Wed, 21 Jun 2023 21:07:38 GMT expires: - '-1' pragma: @@ -3519,14 +3353,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:00:55.2432837Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6?api-version=2022-08-01-preview&t=2023-06-26T18%3a00%3a55&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=yYZCIvgocbBbdqW3roXO1oGnNkxns44D3iJHrSbRaxetvoA09oMcopWFWqydLsrTWHyk5wpVYnjr6KIOFD_jr-5hFtw7q7zLWuq3oI2gwyHIvgFzGZ5tCl6orLwkqu_Ns-9pqt_8JmHGevbn5WyKmsZOzeYWkspgrNVmLZwRrBlu3paFgukMEgb4UBR9csixrZ5CossLFMrN3RVA7jDwLcjmXYWn5rwVF_ORm42RTGq6GWkQpaDyqIINJRBxDQ7T0zZ_BPzbgYcX37kxDy1CSpMuQkMk0sJGebQk2ocvD6GeboqDefrKEV2hiZeaT4AEU8ihROazA2bu_sc-6O2fqQ&h=Cp65gGSkt3H_d9_bYPSbb9BDyFUWiFN8Ve0wfA0GhTM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3a07%3a39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro cache-control: - no-cache content-length: @@ -3534,7 +3368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:55 GMT + - Wed, 21 Jun 2023 21:07:38 GMT expires: - '-1' pragma: @@ -3566,11 +3400,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6?api-version=2022-08-01-preview&t=2023-06-26T18%3A00%3A55&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=yYZCIvgocbBbdqW3roXO1oGnNkxns44D3iJHrSbRaxetvoA09oMcopWFWqydLsrTWHyk5wpVYnjr6KIOFD_jr-5hFtw7q7zLWuq3oI2gwyHIvgFzGZ5tCl6orLwkqu_Ns-9pqt_8JmHGevbn5WyKmsZOzeYWkspgrNVmLZwRrBlu3paFgukMEgb4UBR9csixrZ5CossLFMrN3RVA7jDwLcjmXYWn5rwVF_ORm42RTGq6GWkQpaDyqIINJRBxDQ7T0zZ_BPzbgYcX37kxDy1CSpMuQkMk0sJGebQk2ocvD6GeboqDefrKEV2hiZeaT4AEU8ihROazA2bu_sc-6O2fqQ&h=Cp65gGSkt3H_d9_bYPSbb9BDyFUWiFN8Ve0wfA0GhTM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n - \ \"name\": \"e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n + \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3579,7 +3413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:00:55 GMT + - Wed, 21 Jun 2023 21:07:38 GMT expires: - '-1' pragma: @@ -3613,11 +3447,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6?api-version=2022-08-01-preview&t=2023-06-26T18%3A00%3A55&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=yYZCIvgocbBbdqW3roXO1oGnNkxns44D3iJHrSbRaxetvoA09oMcopWFWqydLsrTWHyk5wpVYnjr6KIOFD_jr-5hFtw7q7zLWuq3oI2gwyHIvgFzGZ5tCl6orLwkqu_Ns-9pqt_8JmHGevbn5WyKmsZOzeYWkspgrNVmLZwRrBlu3paFgukMEgb4UBR9csixrZ5CossLFMrN3RVA7jDwLcjmXYWn5rwVF_ORm42RTGq6GWkQpaDyqIINJRBxDQ7T0zZ_BPzbgYcX37kxDy1CSpMuQkMk0sJGebQk2ocvD6GeboqDefrKEV2hiZeaT4AEU8ihROazA2bu_sc-6O2fqQ&h=Cp65gGSkt3H_d9_bYPSbb9BDyFUWiFN8Ve0wfA0GhTM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n - \ \"name\": \"e0da391d-323b-42c4-93f7-854e2f500cc6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n + \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3626,7 +3460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:25 GMT + - Wed, 21 Jun 2023 21:08:09 GMT expires: - '-1' pragma: @@ -3666,8 +3500,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-00-55-d4228\",\r\n - \ \"duration\": \"PT29.459772S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n + \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3679,20 +3513,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:00:55.2432837Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2045' + - '2046' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:25 GMT + - Wed, 21 Jun 2023 21:08:10 GMT expires: - '-1' pragma: @@ -3738,7 +3572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:25 GMT + - Wed, 21 Jun 2023 21:08:10 GMT expires: - '-1' pragma: @@ -3771,7 +3605,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T18:00:58.8597391Z","changedTime":"2023-06-26T18:00:59.3239285Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T18:00:59.1208015Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T18:00:59.1208015Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:07:42.5534309Z","changedTime":"2023-06-21T21:07:42.7915151Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:07:42.6352598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:07:42.6352598Z"}}]}' headers: cache-control: - no-cache @@ -3780,7 +3614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:26 GMT + - Wed, 21 Jun 2023 21:08:10 GMT expires: - '-1' pragma: @@ -3822,7 +3656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:26 GMT + - Wed, 21 Jun 2023 21:08:11 GMT expires: - '-1' pragma: @@ -3858,8 +3692,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-00-55-d4228\",\r\n - \ \"duration\": \"PT29.459772S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n + \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3871,20 +3705,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:00:55.2432837Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2045' + - '2046' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:26 GMT + - Wed, 21 Jun 2023 21:08:12 GMT expires: - '-1' pragma: @@ -3940,21 +3774,21 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T18:00:55.2432837Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:01:27.8385426Z\"\r\n + \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3a01%3a28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3a08%3a13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc cache-control: - no-cache content-length: - - '1077' + - '1076' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:27 GMT + - Wed, 21 Jun 2023 21:08:13 GMT expires: - '-1' pragma: @@ -3970,7 +3804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3990,11 +3824,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4003,7 +3837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:27 GMT + - Wed, 21 Jun 2023 21:08:13 GMT expires: - '-1' pragma: @@ -4037,11 +3871,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4050,7 +3884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:01:58 GMT + - Wed, 21 Jun 2023 21:08:43 GMT expires: - '-1' pragma: @@ -4084,11 +3918,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4097,7 +3931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:02:27 GMT + - Wed, 21 Jun 2023 21:09:14 GMT expires: - '-1' pragma: @@ -4131,11 +3965,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4144,7 +3978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:02:58 GMT + - Wed, 21 Jun 2023 21:09:44 GMT expires: - '-1' pragma: @@ -4178,11 +4012,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4191,7 +4025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:03:28 GMT + - Wed, 21 Jun 2023 21:10:15 GMT expires: - '-1' pragma: @@ -4225,11 +4059,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4238,7 +4072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:03:58 GMT + - Wed, 21 Jun 2023 21:10:45 GMT expires: - '-1' pragma: @@ -4272,11 +4106,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4285,7 +4119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:04:29 GMT + - Wed, 21 Jun 2023 21:11:15 GMT expires: - '-1' pragma: @@ -4319,11 +4153,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872?api-version=2022-08-01-preview&t=2023-06-26T18%3A01%3A28&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qPHqjg7C6X7z6QZyAxycgNsKtlfRZpOFOfRX8TDjzOU3L4h1idEG55TXpbhiR22mfjQozRj503QnxgNuvSiUVwU_adFcuTF6sLmgxDV5tyfY9LXgucwCtPgIgN9BgcUGbIJWVC9fRDpxap-8lDj1wrhL16gmezqDsWK3lNVQmuUd7KR9XP3x8MVmttJTS87pWed1dwb3vboqx5PjRoJkyAkxRR3mXAEfV9bHdwK7V8FHSC7RDEsLg885I3URjDACv3TamYV_eznhyZgA8AANEOYYXJMb-5pBS085DS519NoHf1U3yVQIN0smy7iu03xZPtABNIKHoTLBr11DrJlWfw&h=p-vfrIWVE0tpgZe3I7P5H9IwtnAtJVyi4_RcCX4_qeg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57733b85-0be8-452d-9b58-517788aec872\",\r\n - \ \"name\": \"57733b85-0be8-452d-9b58-517788aec872\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n + \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4332,7 +4166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:04:58 GMT + - Wed, 21 Jun 2023 21:11:46 GMT expires: - '-1' pragma: @@ -4372,8 +4206,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-01-27-674dc\",\r\n - \ \"duration\": \"PT3M17.6952093S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n + \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4383,20 +4217,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T18:01:27.8385426Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1891' + - '1889' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:04:59 GMT + - Wed, 21 Jun 2023 21:11:46 GMT expires: - '-1' pragma: @@ -4442,7 +4276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:04:59 GMT + - Wed, 21 Jun 2023 21:11:47 GMT expires: - '-1' pragma: @@ -4484,7 +4318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:04:59 GMT + - Wed, 21 Jun 2023 21:11:47 GMT expires: - '-1' pragma: @@ -4516,16 +4350,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-26T17:55:26Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '80333' + - '74728' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:00 GMT + - Wed, 21 Jun 2023 21:11:48 GMT expires: - '-1' pragma: @@ -4561,8 +4395,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-01-27-674dc\",\r\n - \ \"duration\": \"PT3M17.6952093S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n + \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4572,20 +4406,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T18:00:55.2432837Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T18:01:27.8385426Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1891' + - '1889' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:00 GMT + - Wed, 21 Jun 2023 21:11:48 GMT expires: - '-1' pragma: @@ -4631,7 +4465,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:05:00 GMT + - Wed, 21 Jun 2023 21:11:49 GMT expires: - '-1' pragma: @@ -4675,11 +4509,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:05:03 GMT + - Wed, 21 Jun 2023 21:11:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4707,7 +4541,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4717,11 +4551,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:05:03 GMT + - Wed, 21 Jun 2023 21:11:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4747,7 +4581,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4757,7 +4591,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:05:18 GMT + - Wed, 21 Jun 2023 21:12:08 GMT expires: - '-1' pragma: @@ -4801,7 +4635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:19 GMT + - Wed, 21 Jun 2023 21:12:10 GMT expires: - '-1' pragma: @@ -4845,7 +4679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:20 GMT + - Wed, 21 Jun 2023 21:12:10 GMT expires: - '-1' pragma: @@ -4905,14 +4739,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:20.9687755Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a?api-version=2022-08-01-preview&t=2023-06-26T18%3a05%3a21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Q7T2EGRXiCDomRFZ-txtVMjLXBwVHpI6S6FBeIWKn75RyNBuaW9eoNjFGgoD2f4zbUxQkLu21lOw9AyX8vAx7ne2_6vfMKgzu7-bot9bGuWAYWCQ2IwHEHUVkVSiZTIyT4lm15IxbO_Wn8nXKUcvF5jBL691KH21c_EwGmUzkXMCLTQA0V-ESjGz-WeuJGOUvxACGUNPSgr-YjfulM_gNtrdrGO57WoTzJdg3BdDhTGGvDy7FbRj3Jbi9o7rmIah8_pMl6CcOf65hVJ-PMrjI-yTnw29oSYnFI5UogrsMN2frebF3k5Ac-ASfbeWKzEExsK70lrvA2Ukbis7Dj20uw&h=19qbscIcJTPkc-uL-wrFvZh254Bg4FsrAJGdsQmbmn4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 cache-control: - no-cache content-length: @@ -4920,7 +4754,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:21 GMT + - Wed, 21 Jun 2023 21:12:10 GMT expires: - '-1' pragma: @@ -4952,11 +4786,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Q7T2EGRXiCDomRFZ-txtVMjLXBwVHpI6S6FBeIWKn75RyNBuaW9eoNjFGgoD2f4zbUxQkLu21lOw9AyX8vAx7ne2_6vfMKgzu7-bot9bGuWAYWCQ2IwHEHUVkVSiZTIyT4lm15IxbO_Wn8nXKUcvF5jBL691KH21c_EwGmUzkXMCLTQA0V-ESjGz-WeuJGOUvxACGUNPSgr-YjfulM_gNtrdrGO57WoTzJdg3BdDhTGGvDy7FbRj3Jbi9o7rmIah8_pMl6CcOf65hVJ-PMrjI-yTnw29oSYnFI5UogrsMN2frebF3k5Ac-ASfbeWKzEExsK70lrvA2Ukbis7Dj20uw&h=19qbscIcJTPkc-uL-wrFvZh254Bg4FsrAJGdsQmbmn4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n - \ \"name\": \"4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n + \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4965,7 +4799,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:21 GMT + - Wed, 21 Jun 2023 21:12:11 GMT expires: - '-1' pragma: @@ -4999,11 +4833,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Q7T2EGRXiCDomRFZ-txtVMjLXBwVHpI6S6FBeIWKn75RyNBuaW9eoNjFGgoD2f4zbUxQkLu21lOw9AyX8vAx7ne2_6vfMKgzu7-bot9bGuWAYWCQ2IwHEHUVkVSiZTIyT4lm15IxbO_Wn8nXKUcvF5jBL691KH21c_EwGmUzkXMCLTQA0V-ESjGz-WeuJGOUvxACGUNPSgr-YjfulM_gNtrdrGO57WoTzJdg3BdDhTGGvDy7FbRj3Jbi9o7rmIah8_pMl6CcOf65hVJ-PMrjI-yTnw29oSYnFI5UogrsMN2frebF3k5Ac-ASfbeWKzEExsK70lrvA2Ukbis7Dj20uw&h=19qbscIcJTPkc-uL-wrFvZh254Bg4FsrAJGdsQmbmn4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n - \ \"name\": \"4ae69e24-fd9d-480b-9b29-c83a7f2ac23a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n + \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5012,7 +4846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:51 GMT + - Wed, 21 Jun 2023 21:12:41 GMT expires: - '-1' pragma: @@ -5052,8 +4886,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-21-009b5\",\r\n - \ \"duration\": \"PT30.2621755S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n + \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5062,9 +4896,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:20.9687755Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5075,7 +4909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:51 GMT + - Wed, 21 Jun 2023 21:12:41 GMT expires: - '-1' pragma: @@ -5121,7 +4955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:52 GMT + - Wed, 21 Jun 2023 21:12:42 GMT expires: - '-1' pragma: @@ -5157,8 +4991,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-21-009b5\",\r\n - \ \"duration\": \"PT30.2621755S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n + \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5167,9 +5001,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:20.9687755Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5180,7 +5014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:52 GMT + - Wed, 21 Jun 2023 21:12:43 GMT expires: - '-1' pragma: @@ -5236,13 +5070,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T18:05:20.9687755Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:05:53.3726269Z\"\r\n + \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3a05%3a53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als cache-control: - no-cache content-length: @@ -5250,7 +5084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:52 GMT + - Wed, 21 Jun 2023 21:12:44 GMT expires: - '-1' pragma: @@ -5266,7 +5100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -5286,11 +5120,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n - \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5299,7 +5133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:05:53 GMT + - Wed, 21 Jun 2023 21:12:44 GMT expires: - '-1' pragma: @@ -5333,11 +5167,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n - \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5346,7 +5180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:06:23 GMT + - Wed, 21 Jun 2023 21:13:14 GMT expires: - '-1' pragma: @@ -5380,11 +5214,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n - \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5393,7 +5227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:06:53 GMT + - Wed, 21 Jun 2023 21:13:44 GMT expires: - '-1' pragma: @@ -5427,11 +5261,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n - \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5440,7 +5274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:07:23 GMT + - Wed, 21 Jun 2023 21:14:15 GMT expires: - '-1' pragma: @@ -5474,11 +5308,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n - \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5487,7 +5321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:07:54 GMT + - Wed, 21 Jun 2023 21:14:45 GMT expires: - '-1' pragma: @@ -5521,11 +5355,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6?api-version=2022-08-01-preview&t=2023-06-26T18%3A05%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CmU_tBUGKgHLjdJJFdbDssRECXhK4Kom3sDqsEmLeyJ0CoWG4yWySJodiroqJfFuqW8_7z36P2baAs2Na4Y_EIBNdYH80jx-HkSboZyoDZ6yAuZxl_6GFMy8UAPBf-HWHk2KiDC7CZguMbLS5GqqxYt0RFSCv9zl4IvOBNhk8claSEH_v1bKnsrtAvFg4oymLA5IShCuD35MoqYKxXDnZ9bxPXPESynoIJBCGcdzG0piehbKrcZrVZ11C-bnw_4-46-n6vRW5k6sb0Me3oLDKsxH81B1VIaxH6iOVi71Y0bQfJOFxjQxukRlGztbihkV6EzpoCwbURypiuiIfcCjYg&h=MSbNilG3rDwsR6GRhPxABWkmTg10-tmOVSfRYqnp7Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n - \ \"name\": \"d4268414-c739-4eae-b7a9-a56dd00e3ed6\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n + \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5534,7 +5368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:24 GMT + - Wed, 21 Jun 2023 21:15:15 GMT expires: - '-1' pragma: @@ -5574,8 +5408,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-53-77cc9\",\r\n - \ \"duration\": \"PT2M17.0235631S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n + \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5584,9 +5418,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T18:05:53.3726269Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5597,7 +5431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:24 GMT + - Wed, 21 Jun 2023 21:15:16 GMT expires: - '-1' pragma: @@ -5633,16 +5467,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-26T17:55:26Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '80333' + - '74728' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:25 GMT + - Wed, 21 Jun 2023 21:15:16 GMT expires: - '-1' pragma: @@ -5678,8 +5512,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-05-53-77cc9\",\r\n - \ \"duration\": \"PT2M17.0235631S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n + \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5688,9 +5522,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T18:05:20.9687755Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T18:05:53.3726269Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5701,7 +5535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:25 GMT + - Wed, 21 Jun 2023 21:15:18 GMT expires: - '-1' pragma: @@ -5747,7 +5581,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:08:25 GMT + - Wed, 21 Jun 2023 21:15:18 GMT expires: - '-1' pragma: @@ -5793,7 +5627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:26 GMT + - Wed, 21 Jun 2023 21:15:18 GMT expires: - '-1' pragma: @@ -5817,7 +5651,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.26.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -5831,15 +5665,15 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:08:28 GMT + - Wed, 21 Jun 2023 21:15:22 GMT expires: - - Mon, 26 Jun 2023 18:08:28 GMT + - Wed, 21 Jun 2023 21:15:22 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 server: - Kestrel strict-transport-security: @@ -5859,12 +5693,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.26.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -5936,17 +5770,17 @@ interactions: connection: - keep-alive content-length: - - '41663' + - '41660' content-type: - application/octet-stream date: - - Mon, 26 Jun 2023 18:08:28 GMT + - Wed, 21 Jun 2023 21:15:22 GMT etag: - - '0x8DB75852C02DBEA' + - '0x8DB7236999A3CDE' last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT + - Wed, 21 Jun 2023 09:05:03 GMT x-azure-ref: - - 20230626T180828Z-271rkpnvn555mcddv8v2gqad0n000000076g00000000mdex + - 20230621T211522Z-eqz6fa3b6p5dh9wf38v0fptumg00000001g000000000a11t x-cache: - TCP_HIT x-ms-blob-type: @@ -6002,13 +5836,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T18:08:30.4029359Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:08:30.4029359Z\"\r\n + \"2023-06-21T21:15:28.9477407Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710?api-version=2022-08-01-preview&t=2023-06-26T18%3a08%3a30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=N3rH31D-isvhlN4AWKsUBtWDh4D1gm1zq6kgKoSZzQ10qHtuTorFYXpJZkCZP_0FI8GO1P8NTftCuRoNe8Gd7IGucUdl1Ssu4RqbpRQFfBzbRT1SyIgXBlvE880wmn6iPZbgkVGRZCrKTNA99HPJBLl1YCFpBX2uScdWgO_O3JdLV0VNLmGlU743HtN6aT6vQrdQSOi1X591GK5mBMAMBXIfqZ19a9PPflr5GUWGSf9vnqfNd07b5NFiCPq5cZxwHny5OnzQdTUcC0z_6R-BMKaf3i8UymsTxKR5Q31oCgdJqB_AlD0oAo5yK0XCeZvc3e916owdmxrt8sk_6uE9Eg&h=O34zWE5lIB_88ADGBPgYXUS_3B3GaUq-zm-qP_Ra5EA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3a15%3a29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU cache-control: - no-cache content-length: @@ -6016,7 +5850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:30 GMT + - Wed, 21 Jun 2023 21:15:28 GMT expires: - '-1' pragma: @@ -6048,11 +5882,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710?api-version=2022-08-01-preview&t=2023-06-26T18%3A08%3A30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=N3rH31D-isvhlN4AWKsUBtWDh4D1gm1zq6kgKoSZzQ10qHtuTorFYXpJZkCZP_0FI8GO1P8NTftCuRoNe8Gd7IGucUdl1Ssu4RqbpRQFfBzbRT1SyIgXBlvE880wmn6iPZbgkVGRZCrKTNA99HPJBLl1YCFpBX2uScdWgO_O3JdLV0VNLmGlU743HtN6aT6vQrdQSOi1X591GK5mBMAMBXIfqZ19a9PPflr5GUWGSf9vnqfNd07b5NFiCPq5cZxwHny5OnzQdTUcC0z_6R-BMKaf3i8UymsTxKR5Q31oCgdJqB_AlD0oAo5yK0XCeZvc3e916owdmxrt8sk_6uE9Eg&h=O34zWE5lIB_88ADGBPgYXUS_3B3GaUq-zm-qP_Ra5EA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n - \ \"name\": \"8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n + \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -6061,7 +5895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:08:30 GMT + - Wed, 21 Jun 2023 21:15:28 GMT expires: - '-1' pragma: @@ -6095,11 +5929,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710?api-version=2022-08-01-preview&t=2023-06-26T18%3A08%3A30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=N3rH31D-isvhlN4AWKsUBtWDh4D1gm1zq6kgKoSZzQ10qHtuTorFYXpJZkCZP_0FI8GO1P8NTftCuRoNe8Gd7IGucUdl1Ssu4RqbpRQFfBzbRT1SyIgXBlvE880wmn6iPZbgkVGRZCrKTNA99HPJBLl1YCFpBX2uScdWgO_O3JdLV0VNLmGlU743HtN6aT6vQrdQSOi1X591GK5mBMAMBXIfqZ19a9PPflr5GUWGSf9vnqfNd07b5NFiCPq5cZxwHny5OnzQdTUcC0z_6R-BMKaf3i8UymsTxKR5Q31oCgdJqB_AlD0oAo5yK0XCeZvc3e916owdmxrt8sk_6uE9Eg&h=O34zWE5lIB_88ADGBPgYXUS_3B3GaUq-zm-qP_Ra5EA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n - \ \"name\": \"8e365f39-90eb-4883-8a8d-465b995ca710\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n + \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -6108,7 +5942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:09:01 GMT + - Wed, 21 Jun 2023 21:15:59 GMT expires: - '-1' pragma: @@ -6148,20 +5982,20 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-08-30-90345\",\r\n - \ \"duration\": \"PT30.0300965S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n + \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store2gz4rdvoqvwuq\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:08:30.4029359Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:08:30.4029359Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -6172,7 +6006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:09:01 GMT + - Wed, 21 Jun 2023 21:16:00 GMT expires: - '-1' pragma: @@ -6212,20 +6046,20 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-26-18-08-30-90345\",\r\n - \ \"duration\": \"PT30.0300965S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n + \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store2gz4rdvoqvwuq\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T18:08:30.4029359Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T18:08:30.4029359Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -6236,7 +6070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 18:09:01 GMT + - Wed, 21 Jun 2023 21:16:00 GMT expires: - '-1' pragma: @@ -6282,7 +6116,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:09:01 GMT + - Wed, 21 Jun 2023 21:16:01 GMT expires: - '-1' pragma: @@ -6326,11 +6160,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:09:03 GMT + - Wed, 21 Jun 2023 21:16:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6358,7 +6192,127 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 21 Jun 2023 21:16:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 21 Jun 2023 21:16:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 21 Jun 2023 21:16:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6368,11 +6322,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:09:04 GMT + - Wed, 21 Jun 2023 21:16:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6398,7 +6352,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6408,11 +6362,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:09:19 GMT + - Wed, 21 Jun 2023 21:17:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6438,7 +6392,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6448,11 +6402,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:09:34 GMT + - Wed, 21 Jun 2023 21:17:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6478,7 +6432,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6488,11 +6442,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:09:50 GMT + - Wed, 21 Jun 2023 21:17:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6518,7 +6472,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6528,11 +6482,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:10:04 GMT + - Wed, 21 Jun 2023 21:17:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6558,7 +6512,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjIzQkUzRTM2RTgwMTk0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6568,7 +6522,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 18:10:19 GMT + - Wed, 21 Jun 2023 21:18:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 203a4b3093d..819d8a9dc82 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:54 GMT + - Thu, 22 Jun 2023 01:08:22 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:54 GMT + - Thu, 22 Jun 2023 01:08:22 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:56.8955196Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:24.5090807Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:56.8955196Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:24.5090807Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:56 GMT + - Thu, 22 Jun 2023 01:08:24 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:58.5049201Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:58.5049201Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:58 GMT + - Thu, 22 Jun 2023 01:08:26 GMT expires: - '-1' pragma: @@ -225,9 +225,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --description - --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -244,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:58 GMT + - Thu, 22 Jun 2023 01:08:26 GMT expires: - '-1' pragma: @@ -267,10 +265,8 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "description": "stack deployment", "denySettings": {"excludedPrincipals": ["principal1", - "principal2"], "excludedActions": ["action1", "action2"], "applyToChildScopes": - true}}}' + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -281,13 +277,11 @@ interactions: Connection: - keep-alive Content-Length: - - '963' + - '834' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --description - --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -295,35 +289,32 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"description\": - \"stack deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n - \ \"principal1\",\r\n \"principal2\"\r\n ],\r\n \"excludedActions\": - [\r\n \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n - \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\",\r\n - \ \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n \"value\": - \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:59.6595906Z\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:27.423522Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:59.6595906Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39?api-version=2022-08-01-preview&t=2023-06-26T17%3a33%3a00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cwXetC0Iv1MBaRAQrfS2aiPdk_bS-kWk0d6vTd82EBOo7B9eWI0FT12r9SKU8oMHrd6FhxZFe1gQfqiJ2jEy_Avo0lpu2ZIx2wWkPJfJkjiIDirDOOO9LnIBUzSou14qLliUtA8DW5Rez6sPoINJJl3tOtmgodNcOit9hKqGcQC57pJa3zkLUntKvpjYV9wyQJUm3KZRnoDmKScYSz7AUrJFoJpXJ0n4ambzI-eZ54MN3N0unNyLs6ktDmTwzFADRQxtoZIXJpCMq35ZJxvHEXxbx-u74SkierpbvxRRsMAcNLpm1liIhwmD45jUDXNFjxC25QLyMS65pfb7iX7zFg&h=8IlLdaucwgtoo6JGC5K5YUSw9RiHVZ97Iqh0GKdAvqg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3a08%3a28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw cache-control: - no-cache content-length: - - '1478' + - '1274' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:59 GMT + - Thu, 22 Jun 2023 01:08:27 GMT expires: - '-1' pragma: @@ -351,17 +342,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --description - --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cwXetC0Iv1MBaRAQrfS2aiPdk_bS-kWk0d6vTd82EBOo7B9eWI0FT12r9SKU8oMHrd6FhxZFe1gQfqiJ2jEy_Avo0lpu2ZIx2wWkPJfJkjiIDirDOOO9LnIBUzSou14qLliUtA8DW5Rez6sPoINJJl3tOtmgodNcOit9hKqGcQC57pJa3zkLUntKvpjYV9wyQJUm3KZRnoDmKScYSz7AUrJFoJpXJ0n4ambzI-eZ54MN3N0unNyLs6ktDmTwzFADRQxtoZIXJpCMq35ZJxvHEXxbx-u74SkierpbvxRRsMAcNLpm1liIhwmD45jUDXNFjxC25QLyMS65pfb7iX7zFg&h=8IlLdaucwgtoo6JGC5K5YUSw9RiHVZ97Iqh0GKdAvqg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n - \ \"name\": \"ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n + \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -370,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:32:59 GMT + - Thu, 22 Jun 2023 01:08:27 GMT expires: - '-1' pragma: @@ -400,17 +389,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --description - --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cwXetC0Iv1MBaRAQrfS2aiPdk_bS-kWk0d6vTd82EBOo7B9eWI0FT12r9SKU8oMHrd6FhxZFe1gQfqiJ2jEy_Avo0lpu2ZIx2wWkPJfJkjiIDirDOOO9LnIBUzSou14qLliUtA8DW5Rez6sPoINJJl3tOtmgodNcOit9hKqGcQC57pJa3zkLUntKvpjYV9wyQJUm3KZRnoDmKScYSz7AUrJFoJpXJ0n4ambzI-eZ54MN3N0unNyLs6ktDmTwzFADRQxtoZIXJpCMq35ZJxvHEXxbx-u74SkierpbvxRRsMAcNLpm1liIhwmD45jUDXNFjxC25QLyMS65pfb7iX7zFg&h=8IlLdaucwgtoo6JGC5K5YUSw9RiHVZ97Iqh0GKdAvqg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n - \ \"name\": \"ac0a7d4f-1987-432a-b1e9-4e05e2677e39\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n + \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -419,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:29 GMT + - Thu, 22 Jun 2023 01:08:57 GMT expires: - '-1' pragma: @@ -449,9 +436,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --description - --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions - --deny-settings-apply-to-child-scopes --yes + - --name --location --template-file --deny-settings-mode --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -459,37 +444,34 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-00-49a32\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.3485309S\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n - \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n - \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": - \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n - \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:59.6595906Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:59.6595906Z\"\r\n + \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1870' + - '1666' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:30 GMT + - Thu, 22 Jun 2023 01:08:58 GMT expires: - '-1' pragma: @@ -527,37 +509,34 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-00-49a32\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.3485309S\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n - \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n - \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": - \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n - \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:59.6595906Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:59.6595906Z\"\r\n + \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1870' + - '1666' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:31 GMT + - Thu, 22 Jun 2023 01:08:59 GMT expires: - '-1' pragma: @@ -603,7 +582,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:33:31 GMT + - Thu, 22 Jun 2023 01:09:00 GMT expires: - '-1' pragma: @@ -648,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:32 GMT + - Thu, 22 Jun 2023 01:09:00 GMT expires: - '-1' pragma: @@ -694,9 +673,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:32:58.5049201Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:32:58.5049201Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -708,7 +687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:33 GMT + - Thu, 22 Jun 2023 01:09:01 GMT expires: - '-1' pragma: @@ -763,14 +742,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:33:34.1676778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:33:34.1676778Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a?api-version=2022-08-01-preview&t=2023-06-26T17%3a33%3a35&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fi6oyz6eJ7t9zI5BnuEerTUBrWln_Ea9R3jQcNPUDoDS66Opcdx2-MzDUgZJ7oBattDz-LTnMn3w5C4uGA4GD_AKK2l_ZUDKvXfCvDlAhyyZUeJ50aaDtrlB-KZTRcBkq7QmByNs8AghLiLQcEIY4Wh56Q8cPACe50ZDY7TEtq_qWiYCK04LGXJ4Hs5PdYL5YdoWeb8olS8veAawn4gzUV03YDmjgE-rGyOQEecNVj9OdeTLIEyutb2afSpSykA8JGAYlsj9XjnCBMNBaEYh6ST1VG-Yjjsik5dddDWL6dGl7x3cADZjtzP8u8X5HIOhM1V6M2_sKN7R1UMXHyBkRQ&h=2CBsVRJQzjLR3dzPg9InC-A5MwWcZ3IQ0YJ4K3RPZGo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E cache-control: - no-cache content-length: @@ -778,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:34 GMT + - Thu, 22 Jun 2023 01:09:02 GMT expires: - '-1' pragma: @@ -810,11 +789,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A35&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fi6oyz6eJ7t9zI5BnuEerTUBrWln_Ea9R3jQcNPUDoDS66Opcdx2-MzDUgZJ7oBattDz-LTnMn3w5C4uGA4GD_AKK2l_ZUDKvXfCvDlAhyyZUeJ50aaDtrlB-KZTRcBkq7QmByNs8AghLiLQcEIY4Wh56Q8cPACe50ZDY7TEtq_qWiYCK04LGXJ4Hs5PdYL5YdoWeb8olS8veAawn4gzUV03YDmjgE-rGyOQEecNVj9OdeTLIEyutb2afSpSykA8JGAYlsj9XjnCBMNBaEYh6ST1VG-Yjjsik5dddDWL6dGl7x3cADZjtzP8u8X5HIOhM1V6M2_sKN7R1UMXHyBkRQ&h=2CBsVRJQzjLR3dzPg9InC-A5MwWcZ3IQ0YJ4K3RPZGo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n - \ \"name\": \"5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n + \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -823,7 +802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:33:35 GMT + - Thu, 22 Jun 2023 01:09:02 GMT expires: - '-1' pragma: @@ -857,11 +836,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a?api-version=2022-08-01-preview&t=2023-06-26T17%3A33%3A35&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fi6oyz6eJ7t9zI5BnuEerTUBrWln_Ea9R3jQcNPUDoDS66Opcdx2-MzDUgZJ7oBattDz-LTnMn3w5C4uGA4GD_AKK2l_ZUDKvXfCvDlAhyyZUeJ50aaDtrlB-KZTRcBkq7QmByNs8AghLiLQcEIY4Wh56Q8cPACe50ZDY7TEtq_qWiYCK04LGXJ4Hs5PdYL5YdoWeb8olS8veAawn4gzUV03YDmjgE-rGyOQEecNVj9OdeTLIEyutb2afSpSykA8JGAYlsj9XjnCBMNBaEYh6ST1VG-Yjjsik5dddDWL6dGl7x3cADZjtzP8u8X5HIOhM1V6M2_sKN7R1UMXHyBkRQ&h=2CBsVRJQzjLR3dzPg9InC-A5MwWcZ3IQ0YJ4K3RPZGo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n - \ \"name\": \"5c2d7445-8cb9-448f-86d4-b4820dcedf3a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n + \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -870,7 +849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:04 GMT + - Thu, 22 Jun 2023 01:09:32 GMT expires: - '-1' pragma: @@ -910,9 +889,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-34-64c02\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.0401594S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -924,20 +903,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:33:34.1676778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:33:34.1676778Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1900' + - '1898' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:06 GMT + - Thu, 22 Jun 2023 01:09:32 GMT expires: - '-1' pragma: @@ -977,9 +956,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-33-34-64c02\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT12.0401594S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -991,20 +970,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:33:34.1676778Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:33:34.1676778Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1900' + - '1898' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:06 GMT + - Thu, 22 Jun 2023 01:09:34 GMT expires: - '-1' pragma: @@ -1050,7 +1029,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:34:07 GMT + - Thu, 22 Jun 2023 01:09:34 GMT expires: - '-1' pragma: @@ -1096,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:07 GMT + - Thu, 22 Jun 2023 01:09:34 GMT expires: - '-1' pragma: @@ -1154,14 +1133,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:34:07.6428511Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:35.8967059Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:07.6428511Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00?api-version=2022-08-01-preview&t=2023-06-26T17%3a34%3a08&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=J86A8dtjLfvmVhYU4WR8XDwXy3FBRvl41dm1xuwNI-EzJZ07qehvEIglw672-yPdJjtwF4V4IbL0yOyeFaZjsFKP2udbbKhUnUIF15bIh6QjMu-FIAnjULsJmd55ZjjH9Vf09JRl86JF8oHhyOpuiN8x8W3FsTyuMpGCg40UMXee8NIecyvKR5berhTDAqp9PcQyW0gqExWh1ze7TBJRYV-Fx9vpC3E8lFPSJwjr_CklA0EWT_cX498_2xUqNLktPaJHv0YqJ8vgXdKdklz5CUWToy834vklB492j_3qnlI0ZMjcwb0UZkinVuLFZUkzeiCgTNvbyjwV9DJx0uzFdQ&h=kI4fQw5ya_eOSEFs9dyx00AARWq7Z4ZewyeeilaAoZ0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 cache-control: - no-cache content-length: @@ -1169,7 +1148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:08 GMT + - Thu, 22 Jun 2023 01:09:35 GMT expires: - '-1' pragma: @@ -1202,11 +1181,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A08&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=J86A8dtjLfvmVhYU4WR8XDwXy3FBRvl41dm1xuwNI-EzJZ07qehvEIglw672-yPdJjtwF4V4IbL0yOyeFaZjsFKP2udbbKhUnUIF15bIh6QjMu-FIAnjULsJmd55ZjjH9Vf09JRl86JF8oHhyOpuiN8x8W3FsTyuMpGCg40UMXee8NIecyvKR5berhTDAqp9PcQyW0gqExWh1ze7TBJRYV-Fx9vpC3E8lFPSJwjr_CklA0EWT_cX498_2xUqNLktPaJHv0YqJ8vgXdKdklz5CUWToy834vklB492j_3qnlI0ZMjcwb0UZkinVuLFZUkzeiCgTNvbyjwV9DJx0uzFdQ&h=kI4fQw5ya_eOSEFs9dyx00AARWq7Z4ZewyeeilaAoZ0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n - \ \"name\": \"92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n + \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1215,7 +1194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:08 GMT + - Thu, 22 Jun 2023 01:09:36 GMT expires: - '-1' pragma: @@ -1250,11 +1229,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A08&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=J86A8dtjLfvmVhYU4WR8XDwXy3FBRvl41dm1xuwNI-EzJZ07qehvEIglw672-yPdJjtwF4V4IbL0yOyeFaZjsFKP2udbbKhUnUIF15bIh6QjMu-FIAnjULsJmd55ZjjH9Vf09JRl86JF8oHhyOpuiN8x8W3FsTyuMpGCg40UMXee8NIecyvKR5berhTDAqp9PcQyW0gqExWh1ze7TBJRYV-Fx9vpC3E8lFPSJwjr_CklA0EWT_cX498_2xUqNLktPaJHv0YqJ8vgXdKdklz5CUWToy834vklB492j_3qnlI0ZMjcwb0UZkinVuLFZUkzeiCgTNvbyjwV9DJx0uzFdQ&h=kI4fQw5ya_eOSEFs9dyx00AARWq7Z4ZewyeeilaAoZ0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n - \ \"name\": \"92c5c04a-cce9-44c8-bd82-d56f593fce00\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n + \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1263,7 +1242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:38 GMT + - Thu, 22 Jun 2023 01:10:07 GMT expires: - '-1' pragma: @@ -1304,9 +1283,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-08-04e10\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT6.8630009S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1317,8 +1296,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T17:34:07.6428511Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:07.6428511Z\"\r\n + \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1329,7 +1308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:38 GMT + - Thu, 22 Jun 2023 01:10:07 GMT expires: - '-1' pragma: @@ -1369,9 +1348,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-08-04e10\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT6.8630009S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1382,8 +1361,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T17:34:07.6428511Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:07.6428511Z\"\r\n + \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1394,7 +1373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:39 GMT + - Thu, 22 Jun 2023 01:10:08 GMT expires: - '-1' pragma: @@ -1440,7 +1419,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:34:39 GMT + - Thu, 22 Jun 2023 01:10:08 GMT expires: - '-1' pragma: @@ -1486,7 +1465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:40 GMT + - Thu, 22 Jun 2023 01:10:08 GMT expires: - '-1' pragma: @@ -1510,7 +1489,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.26.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -1524,15 +1503,15 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:34:41 GMT + - Thu, 22 Jun 2023 01:10:10 GMT expires: - - Mon, 26 Jun 2023 17:34:41 GMT + - Thu, 22 Jun 2023 01:10:10 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 server: - Kestrel strict-transport-security: @@ -1552,12 +1531,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.26.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":14,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":61,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":640,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":8677,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":271,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1024,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1743,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":9090,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":144,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -1624,24 +1603,24 @@ interactions: \r\n\r\n@davidcho23\r\n* Update release-checklist.md (#10886)\r\n\r\n \r\n\r\n@snehabandla\r\n* Adding support for taking diagnostics format as input for bicep build (#10672)\r\n-->","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' headers: - accept-ranges: - - bytes - connection: - - keep-alive content-length: - - '41663' + - '41661' + content-md5: + - l4ATFhxnZwZ7nJNCUpaQlQ== content-type: - application/octet-stream date: - - Mon, 26 Jun 2023 17:34:41 GMT + - Thu, 22 Jun 2023 01:10:11 GMT etag: - - '0x8DB75852C02DBEA' + - '0x8DB72BCB58C32B9' last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT + - Thu, 22 Jun 2023 01:05:02 GMT x-azure-ref: - - 20230626T173441Z-09ph29830h0x7anqvryt5g6e1n00000007x000000000aq6w + - 0c5+TZAAAAAAFgvQ5abb+QrplYS+mwDHCTUlBRURHRTIyMjEANTY3YTBjMmEtNTdjOS00YmExLTk2MzUtMDg2ZTBiZWVjMTFh + x-azure-ref-originshield: + - 0c5+TZAAAAABngyLkP1kHQpyxmisRxOPqTU5aMjIxMDYwNjExMDIzADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== x-cache: - - TCP_HIT + - TCP_REMOTE_HIT x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -1695,13 +1674,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T17:34:43.3271731Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:43.3271731Z\"\r\n + \"2023-06-22T01:10:16.8403093Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec?api-version=2022-08-01-preview&t=2023-06-26T17%3a34%3a43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=azF2RLYnAmqXRtuQPZgcQneff8eEIqUceBHuqQdLvkHsJkIaxpU4mwzsHNETSR9arReb7Wqf96CbirGBZ6cK2-YMpUJ1Dywk6z25LI7jM5IIyklG2H-7XcysUmzMfcEKbZUi9mGRrCOVDZW5mm2nX4sKLUkPoMiHF2eD0WQwSdqNgq0zdUcCxJFGvx9VlzJXchce455oKGAMRAxBQNA7QZiAixAYy7FIlJ-DPS50DEHu2gjOAFKMf6kIuk4bdHWTZOfq7-sC3tTT0xHa0Gl0wmH2BhLOIU-vyXnRk047HSBTJv1DMGb0Ec0ND1XmylVWKJNu7cGFMhCIf7VB7XLzMQ&h=jv--dCxiG8h6W_XdFiWg016H6fAmfrs_B6ZiYaSvh4k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU cache-control: - no-cache content-length: @@ -1709,7 +1688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:43 GMT + - Thu, 22 Jun 2023 01:10:16 GMT expires: - '-1' pragma: @@ -1742,11 +1721,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=azF2RLYnAmqXRtuQPZgcQneff8eEIqUceBHuqQdLvkHsJkIaxpU4mwzsHNETSR9arReb7Wqf96CbirGBZ6cK2-YMpUJ1Dywk6z25LI7jM5IIyklG2H-7XcysUmzMfcEKbZUi9mGRrCOVDZW5mm2nX4sKLUkPoMiHF2eD0WQwSdqNgq0zdUcCxJFGvx9VlzJXchce455oKGAMRAxBQNA7QZiAixAYy7FIlJ-DPS50DEHu2gjOAFKMf6kIuk4bdHWTZOfq7-sC3tTT0xHa0Gl0wmH2BhLOIU-vyXnRk047HSBTJv1DMGb0Ec0ND1XmylVWKJNu7cGFMhCIf7VB7XLzMQ&h=jv--dCxiG8h6W_XdFiWg016H6fAmfrs_B6ZiYaSvh4k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n - \ \"name\": \"9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n + \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1755,7 +1734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:34:43 GMT + - Thu, 22 Jun 2023 01:10:17 GMT expires: - '-1' pragma: @@ -1790,11 +1769,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec?api-version=2022-08-01-preview&t=2023-06-26T17%3A34%3A43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=azF2RLYnAmqXRtuQPZgcQneff8eEIqUceBHuqQdLvkHsJkIaxpU4mwzsHNETSR9arReb7Wqf96CbirGBZ6cK2-YMpUJ1Dywk6z25LI7jM5IIyklG2H-7XcysUmzMfcEKbZUi9mGRrCOVDZW5mm2nX4sKLUkPoMiHF2eD0WQwSdqNgq0zdUcCxJFGvx9VlzJXchce455oKGAMRAxBQNA7QZiAixAYy7FIlJ-DPS50DEHu2gjOAFKMf6kIuk4bdHWTZOfq7-sC3tTT0xHa0Gl0wmH2BhLOIU-vyXnRk047HSBTJv1DMGb0Ec0ND1XmylVWKJNu7cGFMhCIf7VB7XLzMQ&h=jv--dCxiG8h6W_XdFiWg016H6fAmfrs_B6ZiYaSvh4k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n - \ \"name\": \"9d452cde-ffdd-42f1-98ee-db259755e8ec\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n + \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1803,7 +1782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:13 GMT + - Thu, 22 Jun 2023 01:10:48 GMT expires: - '-1' pragma: @@ -1844,9 +1823,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-43-e02d5\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.2912223S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1856,9 +1835,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:34:43.3271731Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:43.3271731Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1869,7 +1848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:13 GMT + - Thu, 22 Jun 2023 01:10:48 GMT expires: - '-1' pragma: @@ -1909,9 +1888,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-34-43-e02d5\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.2912223S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1921,9 +1900,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:34:43.3271731Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:34:43.3271731Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1934,7 +1913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:14 GMT + - Thu, 22 Jun 2023 01:10:49 GMT expires: - '-1' pragma: @@ -1980,7 +1959,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:35:14 GMT + - Thu, 22 Jun 2023 01:10:49 GMT expires: - '-1' pragma: @@ -2028,7 +2007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:15 GMT + - Thu, 22 Jun 2023 01:10:51 GMT expires: - '-1' pragma: @@ -2072,7 +2051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:16 GMT + - Thu, 22 Jun 2023 01:10:51 GMT expires: - '-1' pragma: @@ -2139,14 +2118,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:16.9771326Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e?api-version=2022-08-01-preview&t=2023-06-26T17%3a35%3a17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Kvox4JPfJ5lCxNXq_9gPcf56JC6n_4xIQ8DUjdKQuvlv0LbdOQ0agVF3vtYSpivY3qGvJnmJULw7Itq9O_WSNjRSJQWyqWHJc_Z9ElggShi60Tmu-661VyGLvTld41gYjFVemprp-sa9aG8Dd_N6zDHfShQmwUlCCuSwoBE9FVVPDFBJk_mMru6dQtfAyTfzkpGbKbyx4FwNwiJZS1ezRU72OLCimHW7qbauxn6ObGXUOrW-1ovm-E_cpNqqYhxxx3abdSkvUpgOIZFP0--LsidOe7ylMWFFczy2-mGXUHDv4rT3TgsC4NgQhevMm1K3Bu0I5PQFaoYkTj8Z1C9jsg&h=h5uo-yim-ICosEUQUMc5stTQC9_JCGpewnicNYWGQ4g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw cache-control: - no-cache content-length: @@ -2154,7 +2133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:17 GMT + - Thu, 22 Jun 2023 01:10:52 GMT expires: - '-1' pragma: @@ -2187,11 +2166,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Kvox4JPfJ5lCxNXq_9gPcf56JC6n_4xIQ8DUjdKQuvlv0LbdOQ0agVF3vtYSpivY3qGvJnmJULw7Itq9O_WSNjRSJQWyqWHJc_Z9ElggShi60Tmu-661VyGLvTld41gYjFVemprp-sa9aG8Dd_N6zDHfShQmwUlCCuSwoBE9FVVPDFBJk_mMru6dQtfAyTfzkpGbKbyx4FwNwiJZS1ezRU72OLCimHW7qbauxn6ObGXUOrW-1ovm-E_cpNqqYhxxx3abdSkvUpgOIZFP0--LsidOe7ylMWFFczy2-mGXUHDv4rT3TgsC4NgQhevMm1K3Bu0I5PQFaoYkTj8Z1C9jsg&h=h5uo-yim-ICosEUQUMc5stTQC9_JCGpewnicNYWGQ4g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e\",\r\n - \ \"name\": \"372c06df-b962-4840-9cca-268d47bb786e\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n + \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2200,7 +2179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:17 GMT + - Thu, 22 Jun 2023 01:10:52 GMT expires: - '-1' pragma: @@ -2235,11 +2214,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Kvox4JPfJ5lCxNXq_9gPcf56JC6n_4xIQ8DUjdKQuvlv0LbdOQ0agVF3vtYSpivY3qGvJnmJULw7Itq9O_WSNjRSJQWyqWHJc_Z9ElggShi60Tmu-661VyGLvTld41gYjFVemprp-sa9aG8Dd_N6zDHfShQmwUlCCuSwoBE9FVVPDFBJk_mMru6dQtfAyTfzkpGbKbyx4FwNwiJZS1ezRU72OLCimHW7qbauxn6ObGXUOrW-1ovm-E_cpNqqYhxxx3abdSkvUpgOIZFP0--LsidOe7ylMWFFczy2-mGXUHDv4rT3TgsC4NgQhevMm1K3Bu0I5PQFaoYkTj8Z1C9jsg&h=h5uo-yim-ICosEUQUMc5stTQC9_JCGpewnicNYWGQ4g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/372c06df-b962-4840-9cca-268d47bb786e\",\r\n - \ \"name\": \"372c06df-b962-4840-9cca-268d47bb786e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n + \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2248,7 +2227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:47 GMT + - Thu, 22 Jun 2023 01:11:23 GMT expires: - '-1' pragma: @@ -2289,9 +2268,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-17-2ad41\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.9343833S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2302,9 +2281,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:16.9771326Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2315,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:47 GMT + - Thu, 22 Jun 2023 01:11:24 GMT expires: - '-1' pragma: @@ -2356,9 +2335,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-17-2ad41\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT7.9343833S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2369,9 +2348,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:16.9771326Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2382,7 +2361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:48 GMT + - Thu, 22 Jun 2023 01:11:24 GMT expires: - '-1' pragma: @@ -2453,14 +2432,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:49.3301337Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab?api-version=2022-08-01-preview&t=2023-06-26T17%3a35%3a49&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zfHiaitoaRTMHBOt2ZbZVSpwRrX8FQas2W-vV_1jmLQMd8PYpMZpIoMKwEx6LMUIRmn29QpdfDV-HkuISnyVnlyXsOcez-Zrh5ZgSoYsSE5vXT83BEOv0lisOwVC9LHH94XBZtny9GV9QswBlEhEoIdYQP1igB2kJU7UjBgw9JuCsHoyiQyHqVIJTRM_QQNQNa25zUccKHG1teEjs2LVyDJxD5S8Ku0E970eLIi-yoG6MKf9mEVN74Nih4hspEkjJir7TJt7bfvEdGIhGlMeUMnkSHbzWTS6B_py_fVufU2_lj3OcCO-3cPIfV7L2io3phsqsJ0ibFssZOKTLHBO1A&h=LUYvcUQrTPtKm23UXud-vPpWzt4DxGcjoRrHvqdiUEE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3a11%3a25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs cache-control: - no-cache content-length: @@ -2468,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:49 GMT + - Thu, 22 Jun 2023 01:11:25 GMT expires: - '-1' pragma: @@ -2505,11 +2484,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A49&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zfHiaitoaRTMHBOt2ZbZVSpwRrX8FQas2W-vV_1jmLQMd8PYpMZpIoMKwEx6LMUIRmn29QpdfDV-HkuISnyVnlyXsOcez-Zrh5ZgSoYsSE5vXT83BEOv0lisOwVC9LHH94XBZtny9GV9QswBlEhEoIdYQP1igB2kJU7UjBgw9JuCsHoyiQyHqVIJTRM_QQNQNa25zUccKHG1teEjs2LVyDJxD5S8Ku0E970eLIi-yoG6MKf9mEVN74Nih4hspEkjJir7TJt7bfvEdGIhGlMeUMnkSHbzWTS6B_py_fVufU2_lj3OcCO-3cPIfV7L2io3phsqsJ0ibFssZOKTLHBO1A&h=LUYvcUQrTPtKm23UXud-vPpWzt4DxGcjoRrHvqdiUEE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n - \ \"name\": \"aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n + \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2518,7 +2497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:35:49 GMT + - Thu, 22 Jun 2023 01:11:25 GMT expires: - '-1' pragma: @@ -2553,11 +2532,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab?api-version=2022-08-01-preview&t=2023-06-26T17%3A35%3A49&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zfHiaitoaRTMHBOt2ZbZVSpwRrX8FQas2W-vV_1jmLQMd8PYpMZpIoMKwEx6LMUIRmn29QpdfDV-HkuISnyVnlyXsOcez-Zrh5ZgSoYsSE5vXT83BEOv0lisOwVC9LHH94XBZtny9GV9QswBlEhEoIdYQP1igB2kJU7UjBgw9JuCsHoyiQyHqVIJTRM_QQNQNa25zUccKHG1teEjs2LVyDJxD5S8Ku0E970eLIi-yoG6MKf9mEVN74Nih4hspEkjJir7TJt7bfvEdGIhGlMeUMnkSHbzWTS6B_py_fVufU2_lj3OcCO-3cPIfV7L2io3phsqsJ0ibFssZOKTLHBO1A&h=LUYvcUQrTPtKm23UXud-vPpWzt4DxGcjoRrHvqdiUEE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n - \ \"name\": \"aa6f546f-0cfa-4587-bd06-f6275764cfab\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n + \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2566,7 +2545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:19 GMT + - Thu, 22 Jun 2023 01:11:55 GMT expires: - '-1' pragma: @@ -2607,9 +2586,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-49-1fc94\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT5.8525342S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2622,9 +2601,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:49.3301337Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2635,7 +2614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:19 GMT + - Thu, 22 Jun 2023 01:11:55 GMT expires: - '-1' pragma: @@ -2772,7 +2751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:22 GMT + - Thu, 22 Jun 2023 01:11:58 GMT expires: - '-1' pragma: @@ -2808,9 +2787,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:20.2488759Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:20.5925974Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2821,7 +2800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:23 GMT + - Thu, 22 Jun 2023 01:11:59 GMT expires: - '-1' pragma: @@ -2958,7 +2937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:23 GMT + - Thu, 22 Jun 2023 01:12:01 GMT expires: - '-1' pragma: @@ -2994,9 +2973,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:52.7404749Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:11:28.2016155Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:53.2562529Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:28.6235078Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -3007,7 +2986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:24 GMT + - Thu, 22 Jun 2023 01:12:01 GMT expires: - '-1' pragma: @@ -3048,9 +3027,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-35-49-1fc94\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT5.8525342S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3063,9 +3042,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:49.3301337Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3076,7 +3055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:25 GMT + - Thu, 22 Jun 2023 01:12:03 GMT expires: - '-1' pragma: @@ -3147,14 +3126,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:36:26.8217461Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3a36%3a27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3a12%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g cache-control: - no-cache content-length: @@ -3162,7 +3141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:26 GMT + - Thu, 22 Jun 2023 01:12:04 GMT expires: - '-1' pragma: @@ -3199,11 +3178,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n - \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3212,7 +3191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:26 GMT + - Thu, 22 Jun 2023 01:12:04 GMT expires: - '-1' pragma: @@ -3247,11 +3226,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n - \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3260,7 +3239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:36:57 GMT + - Thu, 22 Jun 2023 01:12:34 GMT expires: - '-1' pragma: @@ -3295,11 +3274,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n - \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3308,7 +3287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:37:27 GMT + - Thu, 22 Jun 2023 01:13:04 GMT expires: - '-1' pragma: @@ -3343,11 +3322,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n - \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3356,7 +3335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:37:57 GMT + - Thu, 22 Jun 2023 01:13:35 GMT expires: - '-1' pragma: @@ -3391,11 +3370,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n - \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3404,7 +3383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:38:27 GMT + - Thu, 22 Jun 2023 01:14:05 GMT expires: - '-1' pragma: @@ -3439,11 +3418,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd?api-version=2022-08-01-preview&t=2023-06-26T17%3A36%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=P_D1rtehRaCoAOaQtsgFodsMQf7iHXhgE_YqxNALmTJe5qR2P_XVoG4rF_xGrAIK_zuLQ57ylJtkx48PB860zBLW_bnpPmSZCpB7PQoE11A8QhVd9hCYQQbutuv4LGgiQJTWADZ3J7QyjsnrSswfaTYIOvGvmCAzOE_-363GN-Bq85IX3RhtmcewWWx_T9SJbFEkqVCRg7aAb95Fe0qwF4jWeUAFWFBT1Xa8imrmRHV5Dog5LLQT8ex0alLTIkWxW_w_Pl3Zud6I4-VZjV0qql1-5xd1M4lLtoY6BqDNRObdtCB69tNovtaZXoyR9eL87x1QVqmZh3CfkVXDbcI-AQ&h=ROhjQsSiCjQRDLJaw0oZgXhXLhreB2Adt7x1QpvKh7M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n - \ \"name\": \"87932693-7cdf-4a23-92d2-815d67f42ffd\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n + \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3452,7 +3431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:38:57 GMT + - Thu, 22 Jun 2023 01:14:36 GMT expires: - '-1' pragma: @@ -3493,9 +3472,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-36-27-81769\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M23.1387875S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3508,9 +3487,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:36:26.8217461Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3521,7 +3500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:38:58 GMT + - Thu, 22 Jun 2023 01:14:36 GMT expires: - '-1' pragma: @@ -3658,7 +3637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:39:00 GMT + - Thu, 22 Jun 2023 01:14:38 GMT expires: - '-1' pragma: @@ -3694,9 +3673,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:20.2488759Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:35:20.5925974Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -3707,7 +3686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:39:01 GMT + - Thu, 22 Jun 2023 01:14:39 GMT expires: - '-1' pragma: @@ -3844,7 +3823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:39:02 GMT + - Thu, 22 Jun 2023 01:14:40 GMT expires: - '-1' pragma: @@ -3880,9 +3859,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:36:30.0871729Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:12:08.0902158Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:36:31.5715451Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:08.9184105Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3893,7 +3872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:39:03 GMT + - Thu, 22 Jun 2023 01:14:41 GMT expires: - '-1' pragma: @@ -3939,7 +3918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:39:03 GMT + - Thu, 22 Jun 2023 01:14:43 GMT expires: - '-1' pragma: @@ -3972,7 +3951,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T17:35:20.2043987Z","changedTime":"2023-06-26T17:35:20.3270047Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:35:20.2488759Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:35:20.2488759Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T17:35:20.5740228Z","changedTime":"2023-06-26T17:35:20.6864278Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:35:20.5925974Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:35:20.5925974Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T17:36:29.8464285Z","changedTime":"2023-06-26T17:36:30.2434169Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:36:30.0871729Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:36:30.0871729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T17:36:31.3263578Z","changedTime":"2023-06-26T17:36:31.7434182Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:36:31.5715451Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:36:31.5715451Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:10:55.6069337Z","changedTime":"2023-06-22T01:10:55.7745704Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:55.6495451Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:55.6495451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:10:56.0163696Z","changedTime":"2023-06-22T01:10:56.2433114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:56.0557146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:56.0557146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:12:08.0639163Z","changedTime":"2023-06-22T01:12:08.2152268Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.0902158Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.0902158Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:12:08.8913791Z","changedTime":"2023-06-22T01:12:09.0903012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.9184105Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.9184105Z"}}]}' headers: cache-control: - no-cache @@ -3981,7 +3960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:39:03 GMT + - Thu, 22 Jun 2023 01:14:43 GMT expires: - '-1' pragma: @@ -4023,11 +4002,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:39:06 GMT + - Thu, 22 Jun 2023 01:14:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4055,7 +4034,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4065,11 +4044,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:39:06 GMT + - Thu, 22 Jun 2023 01:14:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4095,7 +4074,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4105,11 +4084,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:39:21 GMT + - Thu, 22 Jun 2023 01:15:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4135,7 +4114,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4145,11 +4124,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:39:36 GMT + - Thu, 22 Jun 2023 01:15:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4175,7 +4154,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4185,11 +4164,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:39:51 GMT + - Thu, 22 Jun 2023 01:15:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4215,7 +4194,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4225,11 +4204,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:40:07 GMT + - Thu, 22 Jun 2023 01:15:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4255,7 +4234,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4265,7 +4244,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:40:22 GMT + - Thu, 22 Jun 2023 01:16:01 GMT expires: - '-1' pragma: @@ -4299,9 +4278,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-36-27-81769\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M23.1387875S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4314,9 +4293,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:35:16.9771326Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:36:26.8217461Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4327,7 +4306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:23 GMT + - Thu, 22 Jun 2023 01:16:02 GMT expires: - '-1' pragma: @@ -4373,7 +4352,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:40:23 GMT + - Thu, 22 Jun 2023 01:16:02 GMT expires: - '-1' pragma: @@ -4418,7 +4397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:24 GMT + - Thu, 22 Jun 2023 01:16:02 GMT expires: - '-1' pragma: @@ -4474,14 +4453,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:25.1811064Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142?api-version=2022-08-01-preview&t=2023-06-26T17%3a40%3a25&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ssLpnPuHcsgmEO_-oh7hiLKkIFVg2krQ9BTQAjMEmccr-PbXgtEYvkKsU5t2jdpxci_iv-9Bjl0-veRcPCAYFOwCdHjOB4DKz-lJ-EXjMZWoTR2kEZObh4UsCXqrx_sxDvGOetmumVV5zsuSn_flkLkiZ8Rhou0kNUWk-QeRu3nVpWaLBIx5MmX97HHP1wUNaq5inXMsfvM_Kq78VIjeBFbCnNeMxgXxuJFI1hiK0ORqaMt42Hgj-2LBvNY28UNLUcsm59gRSkGCTv_VaS4osHW5whiUi_QeEREY5pMZtwNXAL-mojAoB5gyYym0TahUOBWPCKhL5QsFkAK035q3fw&h=LNtOk70KHkIC3a6adPe9rSbiVTQ7GYyqDLLL4NUpoxY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM cache-control: - no-cache content-length: @@ -4489,7 +4468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:25 GMT + - Thu, 22 Jun 2023 01:16:03 GMT expires: - '-1' pragma: @@ -4521,11 +4500,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A25&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ssLpnPuHcsgmEO_-oh7hiLKkIFVg2krQ9BTQAjMEmccr-PbXgtEYvkKsU5t2jdpxci_iv-9Bjl0-veRcPCAYFOwCdHjOB4DKz-lJ-EXjMZWoTR2kEZObh4UsCXqrx_sxDvGOetmumVV5zsuSn_flkLkiZ8Rhou0kNUWk-QeRu3nVpWaLBIx5MmX97HHP1wUNaq5inXMsfvM_Kq78VIjeBFbCnNeMxgXxuJFI1hiK0ORqaMt42Hgj-2LBvNY28UNLUcsm59gRSkGCTv_VaS4osHW5whiUi_QeEREY5pMZtwNXAL-mojAoB5gyYym0TahUOBWPCKhL5QsFkAK035q3fw&h=LNtOk70KHkIC3a6adPe9rSbiVTQ7GYyqDLLL4NUpoxY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142\",\r\n - \ \"name\": \"a485b749-dd6f-493e-98af-82c326791142\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n + \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4534,7 +4513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:25 GMT + - Thu, 22 Jun 2023 01:16:03 GMT expires: - '-1' pragma: @@ -4568,11 +4547,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A25&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ssLpnPuHcsgmEO_-oh7hiLKkIFVg2krQ9BTQAjMEmccr-PbXgtEYvkKsU5t2jdpxci_iv-9Bjl0-veRcPCAYFOwCdHjOB4DKz-lJ-EXjMZWoTR2kEZObh4UsCXqrx_sxDvGOetmumVV5zsuSn_flkLkiZ8Rhou0kNUWk-QeRu3nVpWaLBIx5MmX97HHP1wUNaq5inXMsfvM_Kq78VIjeBFbCnNeMxgXxuJFI1hiK0ORqaMt42Hgj-2LBvNY28UNLUcsm59gRSkGCTv_VaS4osHW5whiUi_QeEREY5pMZtwNXAL-mojAoB5gyYym0TahUOBWPCKhL5QsFkAK035q3fw&h=LNtOk70KHkIC3a6adPe9rSbiVTQ7GYyqDLLL4NUpoxY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a485b749-dd6f-493e-98af-82c326791142\",\r\n - \ \"name\": \"a485b749-dd6f-493e-98af-82c326791142\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n + \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4581,7 +4560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:56 GMT + - Thu, 22 Jun 2023 01:16:34 GMT expires: - '-1' pragma: @@ -4621,9 +4600,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-25-3d16a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.4379592S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4632,9 +4611,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:25.1811064Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4645,7 +4624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:56 GMT + - Thu, 22 Jun 2023 01:16:35 GMT expires: - '-1' pragma: @@ -4685,9 +4664,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-25-3d16a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.4379592S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4696,9 +4675,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:25.1811064Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4709,7 +4688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:57 GMT + - Thu, 22 Jun 2023 01:16:36 GMT expires: - '-1' pragma: @@ -4769,22 +4748,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:58.0546766Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e?api-version=2022-08-01-preview&t=2023-06-26T17%3a40%3a58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=VrudgfSc6nKjKN3afm3S4Q2vQdyFXQzbmu_pprtZ83ccQeLE4PmS38t74CAx2mIp_h1_afLRdfgamrNDdamo8rgNjJ1M8aX06bpfpxAkVhC2qYAjQFSa-dm7SheNQWaf84ulvxtEihcfXPJ28mjCD_pMRiejGF_cFOzTwt1cQYBjkBnGucSp3nzvuQSz2pYraNNdy-csAlhjgCBCHjYKp8bHt-Q5ylNFMsD8SpkYjHX-JmHjd82sjRXMmsaAySMsCAbK9XyAbv1do97l3ClERdMJx8vyjBs8_uc1yCan2-ZUy77bTywLBKFivET_yLaFM4kO3NtZBTThn5aJ_hVFaQ&h=nZfy9nO00RC7AD52bd06d8mJ_TL_8MflgIR7dRn0Foc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ cache-control: - no-cache content-length: - - '1224' + - '1223' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:57 GMT + - Thu, 22 Jun 2023 01:16:37 GMT expires: - '-1' pragma: @@ -4820,11 +4799,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=VrudgfSc6nKjKN3afm3S4Q2vQdyFXQzbmu_pprtZ83ccQeLE4PmS38t74CAx2mIp_h1_afLRdfgamrNDdamo8rgNjJ1M8aX06bpfpxAkVhC2qYAjQFSa-dm7SheNQWaf84ulvxtEihcfXPJ28mjCD_pMRiejGF_cFOzTwt1cQYBjkBnGucSp3nzvuQSz2pYraNNdy-csAlhjgCBCHjYKp8bHt-Q5ylNFMsD8SpkYjHX-JmHjd82sjRXMmsaAySMsCAbK9XyAbv1do97l3ClERdMJx8vyjBs8_uc1yCan2-ZUy77bTywLBKFivET_yLaFM4kO3NtZBTThn5aJ_hVFaQ&h=nZfy9nO00RC7AD52bd06d8mJ_TL_8MflgIR7dRn0Foc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n - \ \"name\": \"50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n + \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4833,7 +4812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:40:58 GMT + - Thu, 22 Jun 2023 01:16:37 GMT expires: - '-1' pragma: @@ -4867,11 +4846,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e?api-version=2022-08-01-preview&t=2023-06-26T17%3A40%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=VrudgfSc6nKjKN3afm3S4Q2vQdyFXQzbmu_pprtZ83ccQeLE4PmS38t74CAx2mIp_h1_afLRdfgamrNDdamo8rgNjJ1M8aX06bpfpxAkVhC2qYAjQFSa-dm7SheNQWaf84ulvxtEihcfXPJ28mjCD_pMRiejGF_cFOzTwt1cQYBjkBnGucSp3nzvuQSz2pYraNNdy-csAlhjgCBCHjYKp8bHt-Q5ylNFMsD8SpkYjHX-JmHjd82sjRXMmsaAySMsCAbK9XyAbv1do97l3ClERdMJx8vyjBs8_uc1yCan2-ZUy77bTywLBKFivET_yLaFM4kO3NtZBTThn5aJ_hVFaQ&h=nZfy9nO00RC7AD52bd06d8mJ_TL_8MflgIR7dRn0Foc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n - \ \"name\": \"50299de5-e943-43ba-bc8c-2c6b03e83e3e\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n + \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4880,7 +4859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:28 GMT + - Thu, 22 Jun 2023 01:17:07 GMT expires: - '-1' pragma: @@ -4920,9 +4899,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-58-a4455\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.5156421S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4932,20 +4911,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:58.0546766Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1790' + - '1789' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:28 GMT + - Thu, 22 Jun 2023 01:17:07 GMT expires: - '-1' pragma: @@ -4991,7 +4970,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:29 GMT + - Thu, 22 Jun 2023 01:17:08 GMT expires: - '-1' pragma: @@ -5033,7 +5012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:29 GMT + - Thu, 22 Jun 2023 01:17:08 GMT expires: - '-1' pragma: @@ -5070,9 +5049,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-40-58-a4455\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.5156421S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5082,20 +5061,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:40:58.0546766Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1790' + - '1789' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:30 GMT + - Thu, 22 Jun 2023 01:17:09 GMT expires: - '-1' pragma: @@ -5156,22 +5135,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:41:30.9930128Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a?api-version=2022-08-01-preview&t=2023-06-26T17%3a41%3a31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=bOYPPsTicMkRDgAAQh98IpadFX-rYsFneWlI_C1ElRO81jW09eXMYJ6hsnKpTCKPmLjY8j3TYt36jhS59MBVZ4ZANEMd_fTcn60SWcGTSnlFByL8s22uOjAmxyxwNLGPuGwXm6j_P9O7Esg9q8uNFBJ5GQO-282VTEB9Ciuv8E6hTgi5awdqQneoxqnifmX_Vy_hPExlLLGEwGaua9eireb98vvNVCdXW6ya2lLMb6qMmUbC-6YEvFT0ictaY30U3RMhj0sau4QFsRnz3Qj98X5XH8j5_HzI417X1xkFfeDNkZY0AoHoFBBj-8DbKdfOQxcpH30LTs2ggEAMDip87g&h=93TdD3SRATfjlYhxCLJHY5KnRnV-1d9mcTNggTDIyCQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y cache-control: - no-cache content-length: - - '1226' + - '1225' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:30 GMT + - Thu, 22 Jun 2023 01:17:10 GMT expires: - '-1' pragma: @@ -5208,11 +5187,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a?api-version=2022-08-01-preview&t=2023-06-26T17%3A41%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=bOYPPsTicMkRDgAAQh98IpadFX-rYsFneWlI_C1ElRO81jW09eXMYJ6hsnKpTCKPmLjY8j3TYt36jhS59MBVZ4ZANEMd_fTcn60SWcGTSnlFByL8s22uOjAmxyxwNLGPuGwXm6j_P9O7Esg9q8uNFBJ5GQO-282VTEB9Ciuv8E6hTgi5awdqQneoxqnifmX_Vy_hPExlLLGEwGaua9eireb98vvNVCdXW6ya2lLMb6qMmUbC-6YEvFT0ictaY30U3RMhj0sau4QFsRnz3Qj98X5XH8j5_HzI417X1xkFfeDNkZY0AoHoFBBj-8DbKdfOQxcpH30LTs2ggEAMDip87g&h=93TdD3SRATfjlYhxCLJHY5KnRnV-1d9mcTNggTDIyCQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n - \ \"name\": \"b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n + \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5221,7 +5200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:41:30 GMT + - Thu, 22 Jun 2023 01:17:10 GMT expires: - '-1' pragma: @@ -5256,11 +5235,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a?api-version=2022-08-01-preview&t=2023-06-26T17%3A41%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=bOYPPsTicMkRDgAAQh98IpadFX-rYsFneWlI_C1ElRO81jW09eXMYJ6hsnKpTCKPmLjY8j3TYt36jhS59MBVZ4ZANEMd_fTcn60SWcGTSnlFByL8s22uOjAmxyxwNLGPuGwXm6j_P9O7Esg9q8uNFBJ5GQO-282VTEB9Ciuv8E6hTgi5awdqQneoxqnifmX_Vy_hPExlLLGEwGaua9eireb98vvNVCdXW6ya2lLMb6qMmUbC-6YEvFT0ictaY30U3RMhj0sau4QFsRnz3Qj98X5XH8j5_HzI417X1xkFfeDNkZY0AoHoFBBj-8DbKdfOQxcpH30LTs2ggEAMDip87g&h=93TdD3SRATfjlYhxCLJHY5KnRnV-1d9mcTNggTDIyCQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n - \ \"name\": \"b616e270-bd55-4b90-9cc1-8ace538b8f8a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n + \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5269,7 +5248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:00 GMT + - Thu, 22 Jun 2023 01:17:41 GMT expires: - '-1' pragma: @@ -5310,9 +5289,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-41-31-227c2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.9260348S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5322,10 +5301,10 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:41:30.9930128Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: @@ -5335,7 +5314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:01 GMT + - Thu, 22 Jun 2023 01:17:41 GMT expires: - '-1' pragma: @@ -5381,7 +5360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:02 GMT + - Thu, 22 Jun 2023 01:17:42 GMT expires: - '-1' pragma: @@ -5423,7 +5402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:02 GMT + - Thu, 22 Jun 2023 01:17:43 GMT expires: - '-1' pragma: @@ -5461,17 +5440,17 @@ interactions: /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core - (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-26T17:32:55.7694055Z","changedTime":"2023-06-26T17:32:57.2549035Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:32:56.8955196Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:32:56.8955196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-26T17:32:58.0925655Z","changedTime":"2023-06-26T17:32:58.6455508Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-26T17:32:58.5049201Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T17:32:58.5049201Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-26T17:34:45.6135525Z","changedTime":"2023-06-26T17:34:46.4143375Z","provisioningState":"Succeeded"}]}' + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storepja53i65mrhwc","name":"storepja53i65mrhwc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-15T14:24:26.9018384Z","changedTime":"2023-06-01T08:36:22.3999273Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storetestmuhausman","name":"storetestmuhausman","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-16T14:04:26.199647Z","changedTime":"2023-05-16T14:14:48.0702501Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:08:23.3210529Z","changedTime":"2023-06-22T01:08:24.8527828Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:24.5090807Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:24.5090807Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:08:25.7086532Z","changedTime":"2023-06-22T01:08:26.2903722Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:26.1184254Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:26.1184254Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-22T01:10:19.5779943Z","changedTime":"2023-06-22T01:10:20.1522284Z","provisioningState":"Succeeded"}]}' headers: cache-control: - no-cache content-length: - - '149223' + - '148870' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:02 GMT + - Thu, 22 Jun 2023 01:17:43 GMT expires: - '-1' pragma: @@ -5507,9 +5486,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-41-31-227c2\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.9260348S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5519,10 +5498,10 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:40:25.1811064Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:41:30.9930128Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: @@ -5532,7 +5511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:03 GMT + - Thu, 22 Jun 2023 01:17:44 GMT expires: - '-1' pragma: @@ -5578,7 +5557,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:42:03 GMT + - Thu, 22 Jun 2023 01:17:45 GMT expires: - '-1' pragma: @@ -5626,7 +5605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:05 GMT + - Thu, 22 Jun 2023 01:17:46 GMT expires: - '-1' pragma: @@ -5670,7 +5649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:05 GMT + - Thu, 22 Jun 2023 01:17:47 GMT expires: - '-1' pragma: @@ -5738,14 +5717,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:06.3337069Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3?api-version=2022-08-01-preview&t=2023-06-26T17%3a42%3a07&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=rw8r4eJwGnJCKfuNbCaNsN6Z70iE2znvk3BsX_djdOESTGcAzZDqsXNUzsWGQDZSequH3niDzvhMHmWYfXcI-oT57gE8frvALOzDaECQ6rCaBepRm0_ld5hsSrCAy0wOgFF0hGUIeOVqeoPBAH7LhYqSqr9u1hsYTW7oaMfkWlOV99OQFhQpqvORjQYx3P8bpFBFxKjXA6MDyqJDjpx6aAnfwhOA4doD_GaIUhjvgzJuiar0g78YDpv61ffUepwTRO8nMrtfluTndeiHflWCy8PVZnh1e0WsxF8vMLHuCWjRraCXJiKu7ouDLy7CIhVG6rVdEeK3G40rxAo5v7WE7Q&h=6NjYDaCFbRIGdkTwb_9Mflxmd8PPeXyb69hFPlGPDU4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU cache-control: - no-cache content-length: @@ -5753,7 +5732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:06 GMT + - Thu, 22 Jun 2023 01:17:48 GMT expires: - '-1' pragma: @@ -5786,11 +5765,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A07&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=rw8r4eJwGnJCKfuNbCaNsN6Z70iE2znvk3BsX_djdOESTGcAzZDqsXNUzsWGQDZSequH3niDzvhMHmWYfXcI-oT57gE8frvALOzDaECQ6rCaBepRm0_ld5hsSrCAy0wOgFF0hGUIeOVqeoPBAH7LhYqSqr9u1hsYTW7oaMfkWlOV99OQFhQpqvORjQYx3P8bpFBFxKjXA6MDyqJDjpx6aAnfwhOA4doD_GaIUhjvgzJuiar0g78YDpv61ffUepwTRO8nMrtfluTndeiHflWCy8PVZnh1e0WsxF8vMLHuCWjRraCXJiKu7ouDLy7CIhVG6rVdEeK3G40rxAo5v7WE7Q&h=6NjYDaCFbRIGdkTwb_9Mflxmd8PPeXyb69hFPlGPDU4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n - \ \"name\": \"bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n + \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5799,7 +5778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:06 GMT + - Thu, 22 Jun 2023 01:17:48 GMT expires: - '-1' pragma: @@ -5834,11 +5813,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A07&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=rw8r4eJwGnJCKfuNbCaNsN6Z70iE2znvk3BsX_djdOESTGcAzZDqsXNUzsWGQDZSequH3niDzvhMHmWYfXcI-oT57gE8frvALOzDaECQ6rCaBepRm0_ld5hsSrCAy0wOgFF0hGUIeOVqeoPBAH7LhYqSqr9u1hsYTW7oaMfkWlOV99OQFhQpqvORjQYx3P8bpFBFxKjXA6MDyqJDjpx6aAnfwhOA4doD_GaIUhjvgzJuiar0g78YDpv61ffUepwTRO8nMrtfluTndeiHflWCy8PVZnh1e0WsxF8vMLHuCWjRraCXJiKu7ouDLy7CIhVG6rVdEeK3G40rxAo5v7WE7Q&h=6NjYDaCFbRIGdkTwb_9Mflxmd8PPeXyb69hFPlGPDU4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n - \ \"name\": \"bbc698b3-23b4-4d56-b027-b8ae47cce3b3\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n + \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5847,7 +5826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:37 GMT + - Thu, 22 Jun 2023 01:18:18 GMT expires: - '-1' pragma: @@ -5888,9 +5867,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-06-d7b45\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT20.9372294S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -5902,9 +5881,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:06.3337069Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -5915,7 +5894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:37 GMT + - Thu, 22 Jun 2023 01:18:18 GMT expires: - '-1' pragma: @@ -6052,7 +6031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:39 GMT + - Thu, 22 Jun 2023 01:18:21 GMT expires: - '-1' pragma: @@ -6087,9 +6066,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:09.9047053Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:50.7335245Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:42:09.9047053Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:17:50.7335245Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -6100,7 +6079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:40 GMT + - Thu, 22 Jun 2023 01:18:21 GMT expires: - '-1' pragma: @@ -6146,7 +6125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:40 GMT + - Thu, 22 Jun 2023 01:18:22 GMT expires: - '-1' pragma: @@ -6183,9 +6162,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-06-d7b45\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT20.9372294S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -6197,9 +6176,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:06.3337069Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6210,7 +6189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:40 GMT + - Thu, 22 Jun 2023 01:18:22 GMT expires: - '-1' pragma: @@ -6270,13 +6249,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:42:41.4836513Z\"\r\n + \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3a42%3a41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3a18%3a24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE cache-control: - no-cache content-length: @@ -6284,7 +6263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:40 GMT + - Thu, 22 Jun 2023 01:18:23 GMT expires: - '-1' pragma: @@ -6321,11 +6300,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -6334,7 +6313,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:42:41 GMT + - Thu, 22 Jun 2023 01:18:23 GMT expires: - '-1' pragma: @@ -6369,11 +6348,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6382,7 +6361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:43:11 GMT + - Thu, 22 Jun 2023 01:18:54 GMT expires: - '-1' pragma: @@ -6417,11 +6396,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6430,7 +6409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:43:41 GMT + - Thu, 22 Jun 2023 01:19:24 GMT expires: - '-1' pragma: @@ -6465,11 +6444,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6478,7 +6457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:44:12 GMT + - Thu, 22 Jun 2023 01:19:54 GMT expires: - '-1' pragma: @@ -6513,11 +6492,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6526,7 +6505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:44:42 GMT + - Thu, 22 Jun 2023 01:20:24 GMT expires: - '-1' pragma: @@ -6561,11 +6540,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6574,7 +6553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:45:12 GMT + - Thu, 22 Jun 2023 01:20:55 GMT expires: - '-1' pragma: @@ -6609,11 +6588,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6622,7 +6601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:45:42 GMT + - Thu, 22 Jun 2023 01:21:26 GMT expires: - '-1' pragma: @@ -6657,11 +6636,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30?api-version=2022-08-01-preview&t=2023-06-26T17%3A42%3A41&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qlVpjXkpN5lq2X8a7CESOupIoBtbUsgxfrbDe9uHreSrgCkUfNHUpb-p3Exqdob4L39KovDZNl-3i96Qo9DQyUraJG0c6wNiQurH-Ze_Hf9ylkvSlthWN0J3OV5iy9XIj09D_6v9RX2qHheDgEh4RVIPkH1j-3Z9CVU9VrOKlZ9AxxtSsFzHpRnLN3YgJty3XGQZACQGwvxJwHZfTMispRFnltT7sRgHmSWvAiA6mhBKUcUZ50de3qI3-yfE4QZIvfD2wUCR2S9cYK3bjsRwU9M5l5aCUGqWFG6jkG8ovLbQziqpNIYMJ5PhLdIWEbcn3GGemBd3kSPqNFyTh8JPhg&h=PZIjWe6DB3AnppbQZ67bQj6vYFqwCVhwHgXg4v9Pvhg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n - \ \"name\": \"f89f683a-28f2-40fb-92a8-2b94e3f7fe30\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n + \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -6670,7 +6649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:13 GMT + - Thu, 22 Jun 2023 01:21:56 GMT expires: - '-1' pragma: @@ -6711,9 +6690,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-41-97110\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M21.0713561S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6723,9 +6702,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:42:41.4836513Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6736,7 +6715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:13 GMT + - Thu, 22 Jun 2023 01:21:56 GMT expires: - '-1' pragma: @@ -6782,7 +6761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:13 GMT + - Thu, 22 Jun 2023 01:21:57 GMT expires: - '-1' pragma: @@ -6824,7 +6803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:13 GMT + - Thu, 22 Jun 2023 01:21:57 GMT expires: - '-1' pragma: @@ -6856,16 +6835,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-26T17:32:57Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-22T01:08:15Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '79246' + - '75737' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:14 GMT + - Thu, 22 Jun 2023 01:21:58 GMT expires: - '-1' pragma: @@ -6902,9 +6881,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-42-41-97110\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M21.0713561S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6914,9 +6893,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-26T17:42:41.4836513Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6927,7 +6906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:15 GMT + - Thu, 22 Jun 2023 01:21:59 GMT expires: - '-1' pragma: @@ -6955,7 +6934,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.26.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -6969,15 +6948,15 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:46:16 GMT + - Thu, 22 Jun 2023 01:22:02 GMT expires: - - Mon, 26 Jun 2023 17:46:16 GMT + - Thu, 22 Jun 2023 01:22:02 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:7d63747b-487e-492a-872d-762362f77974 + - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 server: - Kestrel strict-transport-security: @@ -6997,12 +6976,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.26.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -7074,17 +7053,17 @@ interactions: connection: - keep-alive content-length: - - '41663' + - '41660' content-type: - application/octet-stream date: - - Mon, 26 Jun 2023 17:46:16 GMT + - Thu, 22 Jun 2023 01:22:02 GMT etag: - - '0x8DB75852C02DBEA' + - '0x8DB7236999A3CDE' last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT + - Wed, 21 Jun 2023 09:05:03 GMT x-azure-ref: - - 20230626T174616Z-8w338quabh6c180an6hdrx3cg800000003b000000000b1nm + - 20230622T012202Z-sp102gyr2x4xh8kue1spgtqpa400000003bg00000000fdav x-cache: - TCP_HIT x-ms-blob-type: @@ -7143,13 +7122,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-26T17:42:06.3337069Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:46:18.6646112Z\"\r\n + \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3a46%3a18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3a22%3a08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ cache-control: - no-cache content-length: @@ -7157,7 +7136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:18 GMT + - Thu, 22 Jun 2023 01:22:08 GMT expires: - '-1' pragma: @@ -7194,11 +7173,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3A46%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n - \ \"name\": \"6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n + \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -7207,55 +7186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:46:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file -p --deny-settings-mode - --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3A46%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n - \ \"name\": \"6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n \"status\": \"deploying\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 26 Jun 2023 17:46:48 GMT + - Thu, 22 Jun 2023 01:22:09 GMT expires: - '-1' pragma: @@ -7290,11 +7221,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9?api-version=2022-08-01-preview&t=2023-06-26T17%3A46%3A18&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LItCh1jkbYy-tv7EgKSDgxV1Jo-4cpj4_WFlY5IIYqetr1tOmYwnWbFhEod3k_CPWfVfoQj96RxkSYnSf_jUKkqIKkbOSUBA8wN9ZuuEDzVE0P1dU9jfXt_29mh9kUwqXLSNpzz1lLzvq0_J7_L58rZ-0TjTlL63JKgh1NEfP9SKx3YXwwo9ad9YkfQtf0MKgqui7dTzDt0wWkU8M8dYKi4JYbWDZ7AiX-jSMh217q_4GRq1k0HdFnhKUnyJB-YVFBjJbtm2-xyTU6BcN73Dm_edvaWL8vOCqIgx5pNIf_VyUu7G91-TjGPXJ6B8m4tcBmQZDfoq1-VcPmZpeDf7uQ&h=oGm67g8_qiJXeGLfC3eqcfxQ6JIF2YZMy26gbVC3zKU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n - \ \"name\": \"6ad42e2b-b9c7-41d5-8316-7c5ee261afc9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n + \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -7303,7 +7234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:47:19 GMT + - Thu, 22 Jun 2023 01:22:38 GMT expires: - '-1' pragma: @@ -7344,32 +7275,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-46-18-db7d3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT33.965111S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storecvoi532gxi6ho\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:46:18.6646112Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1905' + - '1906' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:47:19 GMT + - Thu, 22 Jun 2023 01:22:39 GMT expires: - '-1' pragma: @@ -7409,32 +7340,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-26-17-46-18-db7d3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT33.965111S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storecvoi532gxi6ho\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-26T17:42:06.3337069Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-26T17:46:18.6646112Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1905' + - '1906' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Jun 2023 17:47:20 GMT + - Thu, 22 Jun 2023 01:22:39 GMT expires: - '-1' pragma: @@ -7480,7 +7411,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:47:21 GMT + - Thu, 22 Jun 2023 01:22:40 GMT expires: - '-1' pragma: @@ -7524,11 +7455,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:47:24 GMT + - Thu, 22 Jun 2023 01:22:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7556,7 +7487,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7566,11 +7497,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:47:24 GMT + - Thu, 22 Jun 2023 01:22:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7596,7 +7527,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7606,11 +7537,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:47:39 GMT + - Thu, 22 Jun 2023 01:22:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7636,7 +7567,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7646,11 +7577,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:47:54 GMT + - Thu, 22 Jun 2023 01:23:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7676,7 +7607,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7686,11 +7617,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:48:09 GMT + - Thu, 22 Jun 2023 01:23:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7716,7 +7647,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7726,11 +7657,11 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:48:24 GMT + - Thu, 22 Jun 2023 01:23:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7756,7 +7687,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwxMzZCMTk3M0I1QzJDRkI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7766,7 +7697,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Jun 2023 17:48:39 GMT + - Thu, 22 Jun 2023 01:23:59 GMT expires: - '-1' pragma: From a6ca221e1c015811a2fa5a296e9ac801a5fe70c4 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 01:17:00 -0400 Subject: [PATCH 132/139] removed az in az group & reran live tests --- ...reate_deployment_stack_resource_group.yaml | 1262 +++++----- ..._create_deployment_stack_subscription.yaml | 1077 ++++---- ...elete_deployment_stack_resource_group.yaml | 1905 ++++++++------ ..._delete_deployment_stack_subscription.yaml | 2238 +++++++++++------ .../resource/tests/latest/test_resource.py | 12 +- 5 files changed, 3863 insertions(+), 2631 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index 115b46b1a18..c161e195e1b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:01:57 GMT + - Tue, 27 Jun 2023 04:58:54 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:01:58 GMT + - Tue, 27 Jun 2023 04:58:55 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:01:59.6551891Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:58:57.2862607Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:01:59.6551891Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:58:57.2862607Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:00 GMT + - Tue, 27 Jun 2023 04:58:57 GMT expires: - '-1' pragma: @@ -137,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -183,21 +183,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:58:59.3644888Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:58:59.3644888Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1476' + - '1478' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:01 GMT + - Tue, 27 Jun 2023 04:58:59 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -226,7 +226,8 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -244,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:02 GMT + - Tue, 27 Jun 2023 04:59:00 GMT expires: - '-1' pragma: @@ -266,8 +267,9 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": - false}}}' + {"resources": "delete", "resourceGroups": "delete"}, "description": "stack deployment", + "denySettings": {"excludedPrincipals": ["principal1", "principal2"], "excludedActions": + ["action1", "action2"], "applyToChildScopes": true}}}' headers: Accept: - application/json @@ -278,12 +280,13 @@ interactions: Connection: - keep-alive Content-Length: - - '737' + - '866' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -291,31 +294,34 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:03.2930232Z\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"description\": \"stack + deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n + \ \"principal1\",\r\n \"principal2\"\r\n ],\r\n \"excludedActions\": + [\r\n \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:01.0743903Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:01.0743903Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84?api-version=2022-08-01-preview&t=2023-06-27T04%3a59%3a01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=a7IrWszPqfHw33QKs0hGQfUpycIGQ6wrMDg4yvm8Jni5O7zQhaF8qj004vMLzQ6ZA_jx_71A7XWic_5lWUl1CNAxbH_fwoIrWjZH8kS2EOoMtICXnCNyYmiXsptNX2QL8Y8C3oRbtNaY00xHVLztuYChF4Enw5aCkdINlp9nfx-XkI1fi86IG59CwTu31yg-6W9ZlT-rOtrUBoFpQyr0_fFk9C3eVRspTz5ynS_Oqw92-gzQtnIIUC_hHPvUbjeEBIMnXMLP3yRoKnfjmPlFPe94GB8XXpzXtt1tT9NxfBYdYNZ0hXfRY01AYKc2KNL9OVRzp4amxSGNEKF6YHpSYA&h=W5cH_mw2Tv7Ifh-jkLLrvLaeUovDJjktxaGI_S7hY20 cache-control: - no-cache content-length: - - '1223' + - '1425' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:03 GMT + - Tue, 27 Jun 2023 04:59:01 GMT expires: - '-1' pragma: @@ -344,15 +350,16 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=a7IrWszPqfHw33QKs0hGQfUpycIGQ6wrMDg4yvm8Jni5O7zQhaF8qj004vMLzQ6ZA_jx_71A7XWic_5lWUl1CNAxbH_fwoIrWjZH8kS2EOoMtICXnCNyYmiXsptNX2QL8Y8C3oRbtNaY00xHVLztuYChF4Enw5aCkdINlp9nfx-XkI1fi86IG59CwTu31yg-6W9ZlT-rOtrUBoFpQyr0_fFk9C3eVRspTz5ynS_Oqw92-gzQtnIIUC_hHPvUbjeEBIMnXMLP3yRoKnfjmPlFPe94GB8XXpzXtt1tT9NxfBYdYNZ0hXfRY01AYKc2KNL9OVRzp4amxSGNEKF6YHpSYA&h=W5cH_mw2Tv7Ifh-jkLLrvLaeUovDJjktxaGI_S7hY20 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n - \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n + \ \"name\": \"a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -361,7 +368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:03 GMT + - Tue, 27 Jun 2023 04:59:01 GMT expires: - '-1' pragma: @@ -392,15 +399,16 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A03&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=g1CIWguq9Mfr6VJWumrN4aNvYLfOZajO5h1Eqi8CQlJrK2dVv1MRdnlVbfz_W4nxuGBMtQJuJb9-4BMrt_hLeZx3clmxxPo62AoF0TP2aMIriLBW5tRfj-m_QGbie6oRyuEUD3epwsrV0LNgZV9R5C45tfNgy1ZEbOLAWfWvO-oF6liQRUd1_JVNQ7K_1ju9ibPZCCksxoezqGMcPfwLZtZJ0TTtQIprOfWZrFJ5prQiw1KqgraCduUIZJ6HXMHyWc7vqkYauYsDlreGe_NZw5KVLvSJli0SzAQvap5m5kkHu4ieRONJ5gDTVexho2KJL8wcnB4-JcpqogKUPCEXsw&h=iNE_feS9OnyN4NsjiYF9ZpyPKTlNYfdZjZXHv7qbFYM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=a7IrWszPqfHw33QKs0hGQfUpycIGQ6wrMDg4yvm8Jni5O7zQhaF8qj004vMLzQ6ZA_jx_71A7XWic_5lWUl1CNAxbH_fwoIrWjZH8kS2EOoMtICXnCNyYmiXsptNX2QL8Y8C3oRbtNaY00xHVLztuYChF4Enw5aCkdINlp9nfx-XkI1fi86IG59CwTu31yg-6W9ZlT-rOtrUBoFpQyr0_fFk9C3eVRspTz5ynS_Oqw92-gzQtnIIUC_hHPvUbjeEBIMnXMLP3yRoKnfjmPlFPe94GB8XXpzXtt1tT9NxfBYdYNZ0hXfRY01AYKc2KNL9OVRzp4amxSGNEKF6YHpSYA&h=W5cH_mw2Tv7Ifh-jkLLrvLaeUovDJjktxaGI_S7hY20 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/4383637d-d961-4d05-aa28-28f124113235\",\r\n - \ \"name\": \"4383637d-d961-4d05-aa28-28f124113235\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n + \ \"name\": \"a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -409,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:33 GMT + - Tue, 27 Jun 2023 04:59:31 GMT expires: - '-1' pragma: @@ -440,7 +448,8 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --description --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -448,33 +457,36 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n - \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-01-d35c4\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.1608455S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:01.0743903Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:01.0743903Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1663' + - '1865' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:33 GMT + - Tue, 27 Jun 2023 04:59:31 GMT expires: - '-1' pragma: @@ -512,33 +524,36 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-03-54f96\",\r\n - \ \"duration\": \"PT7.3719375S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:02:03.2930232Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:03.2930232Z\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-01-d35c4\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.1608455S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:01.0743903Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:01.0743903Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1663' + - '1865' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:35 GMT + - Tue, 27 Jun 2023 04:59:32 GMT expires: - '-1' pragma: @@ -584,7 +599,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:02:35 GMT + - Tue, 27 Jun 2023 04:59:32 GMT expires: - '-1' pragma: @@ -631,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:36 GMT + - Tue, 27 Jun 2023 04:59:33 GMT expires: - '-1' pragma: @@ -678,21 +693,21 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:01.545812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:58:59.3644888Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:01.545812Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:58:59.3644888Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1476' + - '1478' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:38 GMT + - Tue, 27 Jun 2023 04:59:34 GMT expires: - '-1' pragma: @@ -746,22 +761,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:35.477424Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:35.477424Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3a02%3a38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c?api-version=2022-08-01-preview&t=2023-06-27T04%3a59%3a35&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=VG7yjYamc8Q4mVe2LuFmH_ZxH5FyuKGpFe_r8h9iH1y108O-5na4JoaJ-h27gOfJFPCf8x7PIl-KVhXNlQ-AzK7i_WQPM_-X5dr5Tk_7FNhB27lumFEwsyoW7hnI8InmHEQ5PvEFQhAon1MZyj5bKhAudSO06-pP5akjgJpfcaaVq9JTwn0CsGy2r-DocEyKoV7_PBUwS05DsFSIh0H7n0-vyo2sxe4KlWzMhXX8ZpCbit6JWdYP5-7F9RTGgn6Yfqkk5Ig6IpkisRZRGWZs2fADryEsvfUb2a5v9Ujbkrk6BPpEcDYBc97XjWoBVr3WlVISdEPGiJpC0GT9rcOMBw&h=1i6HTjjCPjtAtZxs3Mv9xccXjZLPvikhcOk2dQs0pY0 cache-control: - no-cache content-length: - - '1336' + - '1334' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:38 GMT + - Tue, 27 Jun 2023 04:59:35 GMT expires: - '-1' pragma: @@ -794,11 +809,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A35&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=VG7yjYamc8Q4mVe2LuFmH_ZxH5FyuKGpFe_r8h9iH1y108O-5na4JoaJ-h27gOfJFPCf8x7PIl-KVhXNlQ-AzK7i_WQPM_-X5dr5Tk_7FNhB27lumFEwsyoW7hnI8InmHEQ5PvEFQhAon1MZyj5bKhAudSO06-pP5akjgJpfcaaVq9JTwn0CsGy2r-DocEyKoV7_PBUwS05DsFSIh0H7n0-vyo2sxe4KlWzMhXX8ZpCbit6JWdYP5-7F9RTGgn6Yfqkk5Ig6IpkisRZRGWZs2fADryEsvfUb2a5v9Ujbkrk6BPpEcDYBc97XjWoBVr3WlVISdEPGiJpC0GT9rcOMBw&h=1i6HTjjCPjtAtZxs3Mv9xccXjZLPvikhcOk2dQs0pY0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n - \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n + \ \"name\": \"b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -807,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:02:39 GMT + - Tue, 27 Jun 2023 04:59:35 GMT expires: - '-1' pragma: @@ -842,11 +857,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a?api-version=2022-08-01-preview&t=2023-06-21T21%3A02%3A38&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=lALRSXZw81yaI4qhUELecyg524svnWWca_AQKHfRc9-mgnJG4Kux9TsK6DRmmtWGukkJY4xnsAcr54zVGTZ70GMnaFhxY-y22P1iQQ4WWzKqsM2ZEMwCMpVNo5Uld_aiqBK_dE-SReWTFoqWVIriyfg3Y0YvoN9l-NiOZDL9-4yDsW6SOZNSpqv9ZLn0WBzxQPC6f-J3kkjkmdV802IpsNwxRuyPmNToEn9C9spg4MVKJiB-D2CSm60mU97modVDKIn0JVKt6yYBrIuzh7BXlmQevL0ZRxUTr3w6w-6bQyRGmFwvGE5DCKERDaFpSdd75GHbKGhdb0ecPoEBlDg4Yg&h=ERekmRpWAng6euE00V4KbtNeUlWXZfiXNg1gdlWAghU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A35&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=VG7yjYamc8Q4mVe2LuFmH_ZxH5FyuKGpFe_r8h9iH1y108O-5na4JoaJ-h27gOfJFPCf8x7PIl-KVhXNlQ-AzK7i_WQPM_-X5dr5Tk_7FNhB27lumFEwsyoW7hnI8InmHEQ5PvEFQhAon1MZyj5bKhAudSO06-pP5akjgJpfcaaVq9JTwn0CsGy2r-DocEyKoV7_PBUwS05DsFSIh0H7n0-vyo2sxe4KlWzMhXX8ZpCbit6JWdYP5-7F9RTGgn6Yfqkk5Ig6IpkisRZRGWZs2fADryEsvfUb2a5v9Ujbkrk6BPpEcDYBc97XjWoBVr3WlVISdEPGiJpC0GT9rcOMBw&h=1i6HTjjCPjtAtZxs3Mv9xccXjZLPvikhcOk2dQs0pY0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n - \ \"name\": \"72a9b43a-dcf2-49c4-82f0-8130dacc1f1a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n + \ \"name\": \"b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -855,7 +870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:09 GMT + - Tue, 27 Jun 2023 05:00:06 GMT expires: - '-1' pragma: @@ -896,8 +911,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n - \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-35-f96a5\",\r\n + \ \"duration\": \"PT7.904289S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -909,20 +924,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:35.477424Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:35.477424Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1894' + - '1891' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:09 GMT + - Tue, 27 Jun 2023 05:00:06 GMT expires: - '-1' pragma: @@ -962,8 +977,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-02-38-94f89\",\r\n - \ \"duration\": \"PT6.5280056S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-35-f96a5\",\r\n + \ \"duration\": \"PT7.904289S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -975,20 +990,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:02:38.3785812Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:35.477424Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:02:38.3785812Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:35.477424Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1894' + - '1891' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:10 GMT + - Tue, 27 Jun 2023 05:00:07 GMT expires: - '-1' pragma: @@ -1034,7 +1049,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:03:10 GMT + - Tue, 27 Jun 2023 05:00:08 GMT expires: - '-1' pragma: @@ -1080,7 +1095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:11 GMT + - Tue, 27 Jun 2023 05:00:08 GMT expires: - '-1' pragma: @@ -1135,13 +1150,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:03:17.1566091Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n + \"2023-06-27T05:00:13.8123443Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:13.8123443Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7?api-version=2022-08-01-preview&t=2023-06-27T05%3a00%3a14&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vkJfT3FRaHsMA8b3o3T1X574qIuIspryj3Pm-fFC_zIgws5jEzR7SuRK9reLDKAIJznTEcXFBjGWxhn2e2sDF2c8O9WEGELTqScf6vejK8Rts_1Js8EJeD7fZFyAqnA4JVMiEnpsC55u00M9bVCzdz6DB_3v_c7eytJDZKX1oC2QANTI28TSDStydOHUzxLpiInK9Yamcqjb0nmmdKnZT1IXkfCeK8SHbMkM_v1yOp3605Y4qyUqHGPbK72iuJ9RzFOu-Qizh5JZNdXluJThdONRB-AK41OCMBd6w5Sod3PJ0PwttGVafOgzH1YqNDv2rs8zVMAw8tKWcs2_yoX5aQ&h=xbBitzAzQjYU79GhtyL0rR0ooTSccYfFhekjQDA0uA0 cache-control: - no-cache content-length: @@ -1149,7 +1164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:17 GMT + - Tue, 27 Jun 2023 05:00:13 GMT expires: - '-1' pragma: @@ -1181,11 +1196,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A14&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vkJfT3FRaHsMA8b3o3T1X574qIuIspryj3Pm-fFC_zIgws5jEzR7SuRK9reLDKAIJznTEcXFBjGWxhn2e2sDF2c8O9WEGELTqScf6vejK8Rts_1Js8EJeD7fZFyAqnA4JVMiEnpsC55u00M9bVCzdz6DB_3v_c7eytJDZKX1oC2QANTI28TSDStydOHUzxLpiInK9Yamcqjb0nmmdKnZT1IXkfCeK8SHbMkM_v1yOp3605Y4qyUqHGPbK72iuJ9RzFOu-Qizh5JZNdXluJThdONRB-AK41OCMBd6w5Sod3PJ0PwttGVafOgzH1YqNDv2rs8zVMAw8tKWcs2_yoX5aQ&h=xbBitzAzQjYU79GhtyL0rR0ooTSccYfFhekjQDA0uA0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n - \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7\",\r\n + \ \"name\": \"91242e57-57c9-4567-850e-980da38802b7\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1194,7 +1209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:17 GMT + - Tue, 27 Jun 2023 05:00:13 GMT expires: - '-1' pragma: @@ -1228,11 +1243,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=tboVWEWjJRmwZmmaKmu6-7qjpRiODSWLnGuTg6PzcsCzxRVVDRUgVb6nI90WzXe2KsVIWm2i8_xD6zooEbQarmvWAk3nqr3pu3FdFapQxnnrJWcxKEazCpg01S7l2LMgMQjZOkpNTZZL0XWZrBDmM1yld5j3NqYQdR9JUA9qAB5f7YIn2njrY4zGDyDnwcEHeV4ILMjt_d4XHxGWaBhfUBwRoHc1A3lw4wXhIhEFvC1UzUuByfkIq1JvFvGfw1tRycwfrVsca4gd-e7hxEXZdtV6O1yAUMuMuBAC6wxaEAQ_a6OsobblR2hXxTZiekY4csji7tB6p5QErcjfGKaeFg&h=RnYIxUYt5gZc406s9YxcrqCupJES2DOCmYkvKcrPAKM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A14&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vkJfT3FRaHsMA8b3o3T1X574qIuIspryj3Pm-fFC_zIgws5jEzR7SuRK9reLDKAIJznTEcXFBjGWxhn2e2sDF2c8O9WEGELTqScf6vejK8Rts_1Js8EJeD7fZFyAqnA4JVMiEnpsC55u00M9bVCzdz6DB_3v_c7eytJDZKX1oC2QANTI28TSDStydOHUzxLpiInK9Yamcqjb0nmmdKnZT1IXkfCeK8SHbMkM_v1yOp3605Y4qyUqHGPbK72iuJ9RzFOu-Qizh5JZNdXluJThdONRB-AK41OCMBd6w5Sod3PJ0PwttGVafOgzH1YqNDv2rs8zVMAw8tKWcs2_yoX5aQ&h=xbBitzAzQjYU79GhtyL0rR0ooTSccYfFhekjQDA0uA0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n - \ \"name\": \"dc958f27-daf5-4ec8-919f-01c61254e39a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7\",\r\n + \ \"name\": \"91242e57-57c9-4567-850e-980da38802b7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1241,7 +1256,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:47 GMT + - Tue, 27 Jun 2023 05:00:44 GMT expires: - '-1' pragma: @@ -1281,8 +1296,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n - \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-13-96dda\",\r\n + \ \"duration\": \"PT7.9858688S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1292,9 +1307,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:13.8123443Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:13.8123443Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1305,7 +1320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:47 GMT + - Tue, 27 Jun 2023 05:00:44 GMT expires: - '-1' pragma: @@ -1345,8 +1360,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-17-c1876\",\r\n - \ \"duration\": \"PT5.5878816S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-13-96dda\",\r\n + \ \"duration\": \"PT7.9858688S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1356,9 +1371,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:17.1566091Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:13.8123443Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:17.1566091Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:13.8123443Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1369,7 +1384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:49 GMT + - Tue, 27 Jun 2023 05:00:45 GMT expires: - '-1' pragma: @@ -1415,7 +1430,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:03:49 GMT + - Tue, 27 Jun 2023 05:00:45 GMT expires: - '-1' pragma: @@ -1444,7 +1459,7 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1462,7 +1477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:49 GMT + - Tue, 27 Jun 2023 05:00:46 GMT expires: - '-1' pragma: @@ -1493,7 +1508,7 @@ interactions: "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "delete"}, "denySettings": {"applyToChildScopes": false}}}' headers: Accept: @@ -1510,7 +1525,7 @@ interactions: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -1518,7 +1533,7 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": @@ -1526,14 +1541,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:46.9082968Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3a03%3a51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403?api-version=2022-08-01-preview&t=2023-06-27T05%3a00%3a47&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=h307gXVumxxCciF9cku-Quxxlv5C-P8F3vMs3-qNIVtJo9fWFQIqRETUkfg-P97M1FqSZplPJ0-Gud_M7gYXZIw795crZxCOysLBZK4iCqqGuBhEc7M1krQv15Dcr5sIrSMiScGoMzuPlTtz1OF2hMAa5dqPRGX5_Hrbq2ijUWLU0GcP02o5DDe2LWjfINxiELHetrwO7NO7vLIAZ_ufl_MBSIn4Wi9mlvWEeWsfcpY9mkoIxkKoQmpv1eQ-TD1nuhPZ32zFdrxnWrHQhWl3hR7pnAPgwHvGrS0yJODv59MbxLeITKQqLL20PUju3RCFG68WpjBOTx61ZTmjQyOaxQ&h=nzxPObN9hFNWrjiBdZMzf31NDqNlbL5bazwXcmOInGA cache-control: - no-cache content-length: @@ -1541,7 +1556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:50 GMT + - Tue, 27 Jun 2023 05:00:46 GMT expires: - '-1' pragma: @@ -1570,15 +1585,15 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A47&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=h307gXVumxxCciF9cku-Quxxlv5C-P8F3vMs3-qNIVtJo9fWFQIqRETUkfg-P97M1FqSZplPJ0-Gud_M7gYXZIw795crZxCOysLBZK4iCqqGuBhEc7M1krQv15Dcr5sIrSMiScGoMzuPlTtz1OF2hMAa5dqPRGX5_Hrbq2ijUWLU0GcP02o5DDe2LWjfINxiELHetrwO7NO7vLIAZ_ufl_MBSIn4Wi9mlvWEeWsfcpY9mkoIxkKoQmpv1eQ-TD1nuhPZ32zFdrxnWrHQhWl3hR7pnAPgwHvGrS0yJODv59MbxLeITKQqLL20PUju3RCFG68WpjBOTx61ZTmjQyOaxQ&h=nzxPObN9hFNWrjiBdZMzf31NDqNlbL5bazwXcmOInGA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n - \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n + \ \"name\": \"8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1587,7 +1602,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:03:50 GMT + - Tue, 27 Jun 2023 05:00:47 GMT expires: - '-1' pragma: @@ -1618,15 +1633,15 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005?api-version=2022-08-01-preview&t=2023-06-21T21%3A03%3A51&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=sJL9fZVMVaM66H1G6DD2Ss1WuwCq-DdevxVFF9lrYTDta64NGOFdV7s9Q5uNQ1JURQVBxE_XB44Uy3953eHLjHBmHfJn4RjhyiDmJcIzmN7MWBvaqGnWHUpf9_4_ToNWOZxUsIejDL7CYR_33gfn_lTxnoajDF8xFZpdHdlr_ONjV2nECedPMtNdVPvPjt25YxLnqxr-RSEJCqQs7BETfsKKE2Te3Z6Hp4YBP2U3fSpfWNupS1-oaZ7TXTTX1z50WBeMJSQORBfSCeaXDj6s4ZGmwgDHyUS4bX9ngtVpcipDetILxX0nS2hGDFvHot_ZC4RitySj6fgYvZL792fY3w&h=WOhjtQD5w478ZXLw51fM_kiucw3zPUPigqlbGF90i2A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A47&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=h307gXVumxxCciF9cku-Quxxlv5C-P8F3vMs3-qNIVtJo9fWFQIqRETUkfg-P97M1FqSZplPJ0-Gud_M7gYXZIw795crZxCOysLBZK4iCqqGuBhEc7M1krQv15Dcr5sIrSMiScGoMzuPlTtz1OF2hMAa5dqPRGX5_Hrbq2ijUWLU0GcP02o5DDe2LWjfINxiELHetrwO7NO7vLIAZ_ufl_MBSIn4Wi9mlvWEeWsfcpY9mkoIxkKoQmpv1eQ-TD1nuhPZ32zFdrxnWrHQhWl3hR7pnAPgwHvGrS0yJODv59MbxLeITKQqLL20PUju3RCFG68WpjBOTx61ZTmjQyOaxQ&h=nzxPObN9hFNWrjiBdZMzf31NDqNlbL5bazwXcmOInGA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n - \ \"name\": \"ecd60b21-4893-49aa-91a6-124474b8e005\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n + \ \"name\": \"8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1635,7 +1650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:21 GMT + - Tue, 27 Jun 2023 05:01:17 GMT expires: - '-1' pragma: @@ -1666,7 +1681,7 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1674,10 +1689,10 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n - \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-46-34303\",\r\n + \ \"duration\": \"PT9.7597434S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -1688,9 +1703,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:46.9082968Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1701,7 +1716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:21 GMT + - Tue, 27 Jun 2023 05:01:17 GMT expires: - '-1' pragma: @@ -1740,10 +1755,10 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-03-50-db642\",\r\n - \ \"duration\": \"PT6.1862061S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-46-34303\",\r\n + \ \"duration\": \"PT9.7597434S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -1754,9 +1769,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:50.8643324Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:46.9082968Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -1767,7 +1782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:23 GMT + - Tue, 27 Jun 2023 05:01:18 GMT expires: - '-1' pragma: @@ -1835,14 +1850,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:19.2932618Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3a04%3a23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65?api-version=2022-08-01-preview&t=2023-06-27T05%3a01%3a19&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Q-JWaaQ6dFyXF7gTEE7C649_l4e6Xv889uHsfPGhisVvDIayghsBTUdZa0Rgn65a1VhGU9GhJv0ADuO-TIE1G2tpEqXyMSqC0ZnWxG7WcOL0hDbwg6j52dDx0Oac8PM8QS8v51VHedoc6y250GjmiqAxTgrlc6GQgL0zIAL2U33GSE1MTKOTIJo4kdJlsYPt0Wn6xJm4_lEN_kUUlWX212CRgSTNuA_xGgDLUjOE4Ktf7PGI31533eyi0C0DmCT3vk0VfIuedfUfqowEHvWPke15QhrB93MlagzB5X3oCwBTCtPSjZiUTrNVSRkFXK2PzgOqpySr_7Usct4ZccK8SQ&h=6XQ_kGGtE3t99-CXe7saU5-KM-9SAfQMGn7EvpDADXA cache-control: - no-cache content-length: @@ -1850,7 +1865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:23 GMT + - Tue, 27 Jun 2023 05:01:18 GMT expires: - '-1' pragma: @@ -1887,11 +1902,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A19&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Q-JWaaQ6dFyXF7gTEE7C649_l4e6Xv889uHsfPGhisVvDIayghsBTUdZa0Rgn65a1VhGU9GhJv0ADuO-TIE1G2tpEqXyMSqC0ZnWxG7WcOL0hDbwg6j52dDx0Oac8PM8QS8v51VHedoc6y250GjmiqAxTgrlc6GQgL0zIAL2U33GSE1MTKOTIJo4kdJlsYPt0Wn6xJm4_lEN_kUUlWX212CRgSTNuA_xGgDLUjOE4Ktf7PGI31533eyi0C0DmCT3vk0VfIuedfUfqowEHvWPke15QhrB93MlagzB5X3oCwBTCtPSjZiUTrNVSRkFXK2PzgOqpySr_7Usct4ZccK8SQ&h=6XQ_kGGtE3t99-CXe7saU5-KM-9SAfQMGn7EvpDADXA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n - \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n + \ \"name\": \"356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1900,7 +1915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:24 GMT + - Tue, 27 Jun 2023 05:01:18 GMT expires: - '-1' pragma: @@ -1935,11 +1950,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9?api-version=2022-08-01-preview&t=2023-06-21T21%3A04%3A23&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=KCvcZVT4cVeVbbInEBYi0iU6_hPPzL7noc9s9PMmLha3637dJ_5I1R0jbVWfV3PJF8Tc4Qu2974EfINjGjp5f_6EPJ6-jYDIGgUB4083OAA_c4bBFuvroUnA_Mkb3MIzu2WLZlhl_T5SuWxVMh8yjW91ErEJvkl28YC3TMw7FOcLPE8L-ujaQWz1rEckVu-dox6rTw2aEWlxEtihJ03DNII1Xsn48LeGz2cFwoPmQN0gSMBkLA79MbW5Jy3nhQD_1qY_bvjSULUWoWZrwbvbze10lFwR6qg2RbNCI4ZuXVyrSsCEEQV47I4ppUUhwhZws6SzlaSkHWJCLWylXze7bg&h=EGJccKetYtghoa3SBHF3S_8Hen0FpVnSXeXDwi2NGVg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A19&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Q-JWaaQ6dFyXF7gTEE7C649_l4e6Xv889uHsfPGhisVvDIayghsBTUdZa0Rgn65a1VhGU9GhJv0ADuO-TIE1G2tpEqXyMSqC0ZnWxG7WcOL0hDbwg6j52dDx0Oac8PM8QS8v51VHedoc6y250GjmiqAxTgrlc6GQgL0zIAL2U33GSE1MTKOTIJo4kdJlsYPt0Wn6xJm4_lEN_kUUlWX212CRgSTNuA_xGgDLUjOE4Ktf7PGI31533eyi0C0DmCT3vk0VfIuedfUfqowEHvWPke15QhrB93MlagzB5X3oCwBTCtPSjZiUTrNVSRkFXK2PzgOqpySr_7Usct4ZccK8SQ&h=6XQ_kGGtE3t99-CXe7saU5-KM-9SAfQMGn7EvpDADXA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n - \ \"name\": \"63c95102-7643-43f2-8bc5-3316d9bf99e9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n + \ \"name\": \"356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1948,7 +1963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:54 GMT + - Tue, 27 Jun 2023 05:01:49 GMT expires: - '-1' pragma: @@ -1989,8 +2004,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n - \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-19-fb379\",\r\n + \ \"duration\": \"PT9.301829S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2003,20 +2018,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:19.2932618Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2420' + - '2419' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:54 GMT + - Tue, 27 Jun 2023 05:01:49 GMT expires: - '-1' pragma: @@ -2153,7 +2168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:56 GMT + - Tue, 27 Jun 2023 05:01:51 GMT expires: - '-1' pragma: @@ -2189,9 +2204,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:54.0989594Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:51.0195219Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:03:54.4896164Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:52.5039674Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2202,7 +2217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:56 GMT + - Tue, 27 Jun 2023 05:01:52 GMT expires: - '-1' pragma: @@ -2339,7 +2354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:58 GMT + - Tue, 27 Jun 2023 05:01:53 GMT expires: - '-1' pragma: @@ -2375,9 +2390,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:04:25.9580653Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:01:23.8089703Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:26.7549909Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:25.1840392Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2388,7 +2403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:04:59 GMT + - Tue, 27 Jun 2023 05:01:54 GMT expires: - '-1' pragma: @@ -2429,8 +2444,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-04-23-1a83c\",\r\n - \ \"duration\": \"PT5.9566498S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-19-fb379\",\r\n + \ \"duration\": \"PT9.301829S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2443,20 +2458,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:04:23.6937016Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:19.2932618Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2420' + - '2419' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:00 GMT + - Tue, 27 Jun 2023 05:01:55 GMT expires: - '-1' pragma: @@ -2524,14 +2539,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:55.8014434Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3a05%3a00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3a01%3a56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI cache-control: - no-cache content-length: @@ -2539,7 +2554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:00 GMT + - Tue, 27 Jun 2023 05:01:56 GMT expires: - '-1' pragma: @@ -2576,11 +2591,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n + \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2589,7 +2604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:00 GMT + - Tue, 27 Jun 2023 05:01:56 GMT expires: - '-1' pragma: @@ -2624,11 +2639,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n + \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2637,7 +2652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:05:30 GMT + - Tue, 27 Jun 2023 05:02:26 GMT expires: - '-1' pragma: @@ -2672,11 +2687,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n + \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2685,7 +2700,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:06:01 GMT + - Tue, 27 Jun 2023 05:02:56 GMT expires: - '-1' pragma: @@ -2720,11 +2735,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n + \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2733,7 +2748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:06:31 GMT + - Tue, 27 Jun 2023 05:03:27 GMT expires: - '-1' pragma: @@ -2768,11 +2783,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n + \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2781,7 +2796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:01 GMT + - Tue, 27 Jun 2023 05:03:57 GMT expires: - '-1' pragma: @@ -2816,11 +2831,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9?api-version=2022-08-01-preview&t=2023-06-21T21%3A05%3A00&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=LZqbEpbpmsJg6JwpQ_Ll-LQw12BCQWzNh7C_mELvBURx9t2uxfn0mimytJCfRv3VRqt4YzNZKIxeU8aZWBHEPxJTOr5KcjAWcJuhXFeVTUbpql2EJDpNy5eIHkSOstoDjGlW5Lk3WO9IRZhudl41AizzoEv3CG5ifWEHutavjW4mGfdebWkloTInJoNf32GmGeQnKmzkvzcVCgOKSlBqJ-SyEB6Ntt1Fnh1K-gNMLStY19w410SqybA9IRoGNnocACWw_3y0TiUDBkcj6cs-5tttI-OBWwhpnKhbuRI1BKwJDufxvBRmoPQcpA0a-TotTuNB49lGlTfsiF3QQo8YCA&h=k2ayPsG9L9I_pyVfw-AkeqbfgaXlBwODZIxxCfJ37hg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n - \ \"name\": \"9a152122-ddf5-4179-9e93-78b4e27330b9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n + \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2829,7 +2844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:32 GMT + - Tue, 27 Jun 2023 05:04:27 GMT expires: - '-1' pragma: @@ -2870,8 +2885,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n - \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-55-36fde\",\r\n + \ \"duration\": \"PT2M15.790663S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2884,20 +2899,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T05:01:55.8014434Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2429' + - '2428' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:32 GMT + - Tue, 27 Jun 2023 05:04:27 GMT expires: - '-1' pragma: @@ -3034,7 +3049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:33 GMT + - Tue, 27 Jun 2023 05:04:29 GMT expires: - '-1' pragma: @@ -3070,9 +3085,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:05:03.3850369Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:01:58.2983916Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:05:03.8381721Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:58.6577085Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3083,7 +3098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:34 GMT + - Tue, 27 Jun 2023 05:04:31 GMT expires: - '-1' pragma: @@ -3123,8 +3138,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-05-00-7726b\",\r\n - \ \"duration\": \"PT2M19.2713186S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-55-36fde\",\r\n + \ \"duration\": \"PT2M15.790663S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3137,20 +3152,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:03:50.8643324Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:05:00.6137318Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T05:01:55.8014434Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2429' + - '2428' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:35 GMT + - Tue, 27 Jun 2023 05:04:32 GMT expires: - '-1' pragma: @@ -3196,7 +3211,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:07:36 GMT + - Tue, 27 Jun 2023 05:04:32 GMT expires: - '-1' pragma: @@ -3244,7 +3259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:37 GMT + - Tue, 27 Jun 2023 05:04:33 GMT expires: - '-1' pragma: @@ -3288,7 +3303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:38 GMT + - Tue, 27 Jun 2023 05:04:35 GMT expires: - '-1' pragma: @@ -3353,14 +3368,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:04:36.0233556Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3a07%3a39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3a04%3a36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go cache-control: - no-cache content-length: @@ -3368,7 +3383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:38 GMT + - Tue, 27 Jun 2023 05:04:36 GMT expires: - '-1' pragma: @@ -3400,11 +3415,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3A04%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n - \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n + \ \"name\": \"9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3413,7 +3428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:07:38 GMT + - Tue, 27 Jun 2023 05:04:36 GMT expires: - '-1' pragma: @@ -3447,11 +3462,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f?api-version=2022-08-01-preview&t=2023-06-21T21%3A07%3A39&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SyjtEQ7fsSnwxMjxZnXn_L5gCyMkeS1oaNm5Nf7GTaWk40-vKjzPK84AaZF2sW33GOsVNRsmQ_M0mDmnL8qV1qPkmZu6CsoZgOWBgi6rM9baDOOXmcC43k44AL0Ft4C86lFwGpcNvZZ_dL-RZlGmzkJrQh5RAhowfyxEkOVYqSASVqRU_Ta0xSggm10_kl3n7V7_bqxM-OtzjsSD-ibjkTSIgw5ywyyRNLH6LJYTkOworyM8zTspJFZ6oxYRo_-EmglQCuyOFeuM251CkOgSNQgN6iAoSxrkQA-vKqCzSROhfgnhHcIbYH06Lp6qGt_bHaa0ck00_fIXh034NUDofQ&h=Y3P8blz3OARSlTx0JhlnULuIgVFHhPl0eGIqEJ8YAro + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3A04%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n - \ \"name\": \"b1dc3368-a638-4d6a-a0ef-d20cafdd4c5f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n + \ \"name\": \"9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n \"status\": \"deploying\"\r\n}" headers: cache-control: - no-cache @@ -3460,7 +3475,54 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:09 GMT + - Tue, 27 Jun 2023 05:05:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --deny-settings-mode --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3A04%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n + \ \"name\": \"9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 05:05:36 GMT expires: - '-1' pragma: @@ -3500,8 +3562,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n - \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-04-36-3f163\",\r\n + \ \"duration\": \"PT31.1855695S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3513,9 +3575,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:04:36.0233556Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3526,7 +3588,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:10 GMT + - Tue, 27 Jun 2023 05:05:36 GMT expires: - '-1' pragma: @@ -3572,7 +3634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:10 GMT + - Tue, 27 Jun 2023 05:05:37 GMT expires: - '-1' pragma: @@ -3605,7 +3667,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:07:42.5534309Z","changedTime":"2023-06-21T21:07:42.7915151Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:07:42.6352598Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:07:42.6352598Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T05:04:39.6018822Z","changedTime":"2023-06-27T05:04:39.9866717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T05:04:39.8616697Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T05:04:39.8616697Z"}}]}' headers: cache-control: - no-cache @@ -3614,7 +3676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:10 GMT + - Tue, 27 Jun 2023 05:05:37 GMT expires: - '-1' pragma: @@ -3656,7 +3718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:11 GMT + - Tue, 27 Jun 2023 05:05:38 GMT expires: - '-1' pragma: @@ -3692,8 +3754,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-07-39-0c9c0\",\r\n - \ \"duration\": \"PT27.9823282S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-04-36-3f163\",\r\n + \ \"duration\": \"PT31.1855695S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3705,9 +3767,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:07:39.0930795Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:04:36.0233556Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3718,7 +3780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:12 GMT + - Tue, 27 Jun 2023 05:05:38 GMT expires: - '-1' pragma: @@ -3774,21 +3836,21 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n + \"2023-06-27T05:04:36.0233556Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:05:39.6946579Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3a08%3a13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3a05%3a39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA cache-control: - no-cache content-length: - - '1076' + - '1077' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:13 GMT + - Tue, 27 Jun 2023 05:05:39 GMT expires: - '-1' pragma: @@ -3824,11 +3886,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3837,7 +3899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:13 GMT + - Tue, 27 Jun 2023 05:05:39 GMT expires: - '-1' pragma: @@ -3871,11 +3933,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3884,7 +3946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:08:43 GMT + - Tue, 27 Jun 2023 05:06:09 GMT expires: - '-1' pragma: @@ -3918,11 +3980,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3931,7 +3993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:09:14 GMT + - Tue, 27 Jun 2023 05:06:39 GMT expires: - '-1' pragma: @@ -3965,11 +4027,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3978,7 +4040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:09:44 GMT + - Tue, 27 Jun 2023 05:07:10 GMT expires: - '-1' pragma: @@ -4012,11 +4074,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4025,7 +4087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:10:15 GMT + - Tue, 27 Jun 2023 05:07:40 GMT expires: - '-1' pragma: @@ -4059,11 +4121,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4072,7 +4134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:10:45 GMT + - Tue, 27 Jun 2023 05:08:10 GMT expires: - '-1' pragma: @@ -4106,11 +4168,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4119,7 +4181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:15 GMT + - Tue, 27 Jun 2023 05:08:41 GMT expires: - '-1' pragma: @@ -4153,11 +4215,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322?api-version=2022-08-01-preview&t=2023-06-21T21%3A08%3A13&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=deKexeZs1fj2yLsyjN0QT1G2fA_G9rq4q61p9yYLiAtUCsbBXb4iJ04cBjc_1Fr6P77YEbK0bxKNftQA95CaDUtGBAuyF-JDrFcnYI1QyRIEdI1qfYlVGyigpspFc2kUk73AodqCv9XegX16SmD8ABGBoKrjHTzaUw2XgbBrE5qC5EllH9YkuJzvUAQu-m1HMI-yqKTebeC7XXQeiRFee1KtNXn5RsPcXEp-gMWe3d-X6c2gDf8kj6JpYMaLmxnAUoY0DEdspZq-zViECSpk-3U8vMldwMzCjgNGU67X3tbzHO4tGr7G3Az3dhSwzkuR-7d21WhbdsuWOXuZPtjDNA&h=N1dG8w7FMd9KcrteJov52KIG5jpvtj0UrcvIBhlfZMc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n - \ \"name\": \"a60715b6-bdda-419e-9c6e-154a3384f322\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n + \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4166,7 +4228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:46 GMT + - Tue, 27 Jun 2023 05:09:12 GMT expires: - '-1' pragma: @@ -4206,8 +4268,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n - \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-05-39-ecd90\",\r\n + \ \"duration\": \"PT3M19.0464117S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4217,20 +4279,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T05:05:39.6946579Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1889' + - '1891' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:46 GMT + - Tue, 27 Jun 2023 05:09:12 GMT expires: - '-1' pragma: @@ -4276,7 +4338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:47 GMT + - Tue, 27 Jun 2023 05:09:13 GMT expires: - '-1' pragma: @@ -4318,7 +4380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:47 GMT + - Tue, 27 Jun 2023 05:09:13 GMT expires: - '-1' pragma: @@ -4350,16 +4412,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-27T04:58:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '74728' + - '81928' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:48 GMT + - Tue, 27 Jun 2023 05:09:13 GMT expires: - '-1' pragma: @@ -4395,8 +4457,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-08-13-631be\",\r\n - \ \"duration\": \"PT3M20.331011S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-05-39-ecd90\",\r\n + \ \"duration\": \"PT3M19.0464117S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4406,20 +4468,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:07:39.0930795Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:08:13.332242Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T05:05:39.6946579Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1889' + - '1891' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:11:48 GMT + - Tue, 27 Jun 2023 05:09:14 GMT expires: - '-1' pragma: @@ -4465,7 +4527,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:11:49 GMT + - Tue, 27 Jun 2023 05:09:15 GMT expires: - '-1' pragma: @@ -4509,11 +4571,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:11:52 GMT + - Tue, 27 Jun 2023 05:09:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4541,7 +4603,87 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 05:09:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 05:09:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4551,11 +4693,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:11:52 GMT + - Tue, 27 Jun 2023 05:09:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4581,7 +4723,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4591,7 +4733,87 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:12:08 GMT + - Tue, 27 Jun 2023 05:10:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 05:10:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 05:10:34 GMT expires: - '-1' pragma: @@ -4635,7 +4857,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:10 GMT + - Tue, 27 Jun 2023 05:10:36 GMT expires: - '-1' pragma: @@ -4645,7 +4867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -4679,7 +4901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:10 GMT + - Tue, 27 Jun 2023 05:10:37 GMT expires: - '-1' pragma: @@ -4739,14 +4961,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:10:37.5550787Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9?api-version=2022-08-01-preview&t=2023-06-27T05%3a10%3a37&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=w1Ff_G5NNbBhabi1JTYhyT0zU7CTN4ipUA4bOCGGOZJPbw8MnwZCV1wdIckd8L5_IbABwgasgrxMGPiZQFvVQ2ju6-ao_DNDdCEdjfcNh1QTWqzTJ1Y9mP_fuEUOL-x6qQf-9YpeOw9CEZXQI1V_I_vT2BCzk8uYvRE1V--OkWLRDSA098JEkF-K2C3NOAZaO89pA6VuMFSK1N4-KwK3y4cetERq3FqmlV_1LW_1FxH1_nc9a5_BKSBt5nw4K8n80P4ZnDYPEV_cEfoY1UKQvQQdflOp7iKml1IsgqC2wU03Fns9bxJUk0jDfJ6-HO-5TPhS8UbnItMmZRrNZEvQkA&h=nu_0TAQbjLP3y4T3yMgoEaGX0hND6pBxbp9w_HLgnIs cache-control: - no-cache content-length: @@ -4754,7 +4976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:10 GMT + - Tue, 27 Jun 2023 05:10:37 GMT expires: - '-1' pragma: @@ -4786,11 +5008,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9?api-version=2022-08-01-preview&t=2023-06-27T05%3A10%3A37&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=w1Ff_G5NNbBhabi1JTYhyT0zU7CTN4ipUA4bOCGGOZJPbw8MnwZCV1wdIckd8L5_IbABwgasgrxMGPiZQFvVQ2ju6-ao_DNDdCEdjfcNh1QTWqzTJ1Y9mP_fuEUOL-x6qQf-9YpeOw9CEZXQI1V_I_vT2BCzk8uYvRE1V--OkWLRDSA098JEkF-K2C3NOAZaO89pA6VuMFSK1N4-KwK3y4cetERq3FqmlV_1LW_1FxH1_nc9a5_BKSBt5nw4K8n80P4ZnDYPEV_cEfoY1UKQvQQdflOp7iKml1IsgqC2wU03Fns9bxJUk0jDfJ6-HO-5TPhS8UbnItMmZRrNZEvQkA&h=nu_0TAQbjLP3y4T3yMgoEaGX0hND6pBxbp9w_HLgnIs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n - \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n + \ \"name\": \"a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4799,7 +5021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:11 GMT + - Tue, 27 Jun 2023 05:10:37 GMT expires: - '-1' pragma: @@ -4833,11 +5055,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A11&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XFJUs3wBc44bRaKVyXvmg7vz9qX-dGO6Y-oSIoiWTQaywSJGNH1zl5wC8-HKgQ7zcYrGVV7o5tA0fn3d-BfYN-o8m6afRGSu4l244KJCfxRjHndfUaFQjJ6VEemWc5WWwRdda2_mc15Uorc_9zE64MvOV4tUsoO06dvlDwTKE76Kgr092FZzkFa0Qj9l_e5IMYuuLdSbIppgBgACbfuZEbebAJiz261wRCt90h6mMY5IfE6K84vrER56BZ7a9GhUHgdLQHKxrafQHVmXschk8LZPEBMrL88zzzuh8W3QjQBfbTshFmc9Yf1hCTJHh5PYot2o52nWffk63iMjv5SOhw&h=IUo93vHjDSIp2aMG6Vgb2IDi1GN-1NPUnBmg0rSxg04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9?api-version=2022-08-01-preview&t=2023-06-27T05%3A10%3A37&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=w1Ff_G5NNbBhabi1JTYhyT0zU7CTN4ipUA4bOCGGOZJPbw8MnwZCV1wdIckd8L5_IbABwgasgrxMGPiZQFvVQ2ju6-ao_DNDdCEdjfcNh1QTWqzTJ1Y9mP_fuEUOL-x6qQf-9YpeOw9CEZXQI1V_I_vT2BCzk8uYvRE1V--OkWLRDSA098JEkF-K2C3NOAZaO89pA6VuMFSK1N4-KwK3y4cetERq3FqmlV_1LW_1FxH1_nc9a5_BKSBt5nw4K8n80P4ZnDYPEV_cEfoY1UKQvQQdflOp7iKml1IsgqC2wU03Fns9bxJUk0jDfJ6-HO-5TPhS8UbnItMmZRrNZEvQkA&h=nu_0TAQbjLP3y4T3yMgoEaGX0hND6pBxbp9w_HLgnIs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/75175c6e-89f3-4c71-b980-b010104c7272\",\r\n - \ \"name\": \"75175c6e-89f3-4c71-b980-b010104c7272\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n + \ \"name\": \"a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4846,7 +5068,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:41 GMT + - Tue, 27 Jun 2023 05:11:07 GMT expires: - '-1' pragma: @@ -4886,8 +5108,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n - \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-10-37-ae7b8\",\r\n + \ \"duration\": \"PT29.2969341S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4896,9 +5118,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:10:37.5550787Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4909,7 +5131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:41 GMT + - Tue, 27 Jun 2023 05:11:08 GMT expires: - '-1' pragma: @@ -4955,7 +5177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:42 GMT + - Tue, 27 Jun 2023 05:11:08 GMT expires: - '-1' pragma: @@ -4991,8 +5213,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-11-822ed\",\r\n - \ \"duration\": \"PT28.6266295S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-10-37-ae7b8\",\r\n + \ \"duration\": \"PT29.2969341S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5001,9 +5223,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:11.3125845Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:10:37.5550787Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5014,7 +5236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:43 GMT + - Tue, 27 Jun 2023 05:11:10 GMT expires: - '-1' pragma: @@ -5070,13 +5292,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n + \"2023-06-27T05:10:37.5550787Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:11:10.5261435Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3a12%3a44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3a11%3a10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 cache-control: - no-cache content-length: @@ -5084,7 +5306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:44 GMT + - Tue, 27 Jun 2023 05:11:10 GMT expires: - '-1' pragma: @@ -5120,11 +5342,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n + \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5133,7 +5355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:12:44 GMT + - Tue, 27 Jun 2023 05:11:10 GMT expires: - '-1' pragma: @@ -5167,11 +5389,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n + \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5180,7 +5402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:13:14 GMT + - Tue, 27 Jun 2023 05:11:41 GMT expires: - '-1' pragma: @@ -5214,11 +5436,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n + \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5227,7 +5449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:13:44 GMT + - Tue, 27 Jun 2023 05:12:11 GMT expires: - '-1' pragma: @@ -5261,11 +5483,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n + \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5274,7 +5496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:14:15 GMT + - Tue, 27 Jun 2023 05:12:41 GMT expires: - '-1' pragma: @@ -5308,11 +5530,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n + \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5321,7 +5543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:14:45 GMT + - Tue, 27 Jun 2023 05:13:11 GMT expires: - '-1' pragma: @@ -5355,11 +5577,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510?api-version=2022-08-01-preview&t=2023-06-21T21%3A12%3A44&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=bU4HenKXHRODsnkQUiigaZpUhrrk2lqOmuoYatArL177yM1-xaK0YZyYdzoRUHY_5U-_VqpfG5sLk-pGeGehdnYUIKh1XbHFs0auymH-ugHgTSBXUZ0etKfy9h9RQBsuh0DdkDf7y8-zv0b0XW6Ei-z8KKbM40tU8uxO7alLXtO7x3TnO0JDZF9ov9FEXgs2hZRzzUF_MNtNyqo_xq4_0ieO1RzNx1vmVRS6Eo_05XX22zo5eFDdpGhiM0hnbSUFiROs5XJwh_v6Zu1u-7yziRnf0m0OK3F5aB03Wg4YKVu-yC1IWGHBAuOXEKYW0JYPJ0VuvVH3LqhZXxw5ef59NA&h=TDkMY_RlGBDUbv6zjW8Y1VtkmDVZcReahISQISP_Als + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n - \ \"name\": \"29bf1a3f-b67f-451f-879f-40b6400fa510\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n + \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5368,7 +5590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:15 GMT + - Tue, 27 Jun 2023 05:13:42 GMT expires: - '-1' pragma: @@ -5408,8 +5630,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n - \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-11-10-cc7ba\",\r\n + \ \"duration\": \"PT2M20.0253764S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5418,9 +5640,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T05:11:10.5261435Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5431,7 +5653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:16 GMT + - Tue, 27 Jun 2023 05:13:42 GMT expires: - '-1' pragma: @@ -5467,16 +5689,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-21T21:01:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-27T04:58:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '74728' + - '81928' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:16 GMT + - Tue, 27 Jun 2023 05:13:43 GMT expires: - '-1' pragma: @@ -5512,8 +5734,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-12-44-91aff\",\r\n - \ \"duration\": \"PT2M18.7193535S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-11-10-cc7ba\",\r\n + \ \"duration\": \"PT2M20.0253764S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5522,9 +5744,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-21T21:12:11.3125845Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-21T21:12:44.3466536Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T05:11:10.5261435Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5535,7 +5757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:18 GMT + - Tue, 27 Jun 2023 05:13:43 GMT expires: - '-1' pragma: @@ -5581,7 +5803,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:15:18 GMT + - Tue, 27 Jun 2023 05:13:44 GMT expires: - '-1' pragma: @@ -5627,7 +5849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:18 GMT + - Tue, 27 Jun 2023 05:13:45 GMT expires: - '-1' pragma: @@ -5651,7 +5873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -5665,15 +5887,15 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:15:22 GMT + - Tue, 27 Jun 2023 05:13:47 GMT expires: - - Wed, 21 Jun 2023 21:15:22 GMT + - Tue, 27 Jun 2023 05:13:47 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 server: - Kestrel strict-transport-security: @@ -5693,12 +5915,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -5770,17 +5992,17 @@ interactions: connection: - keep-alive content-length: - - '41660' + - '41663' content-type: - application/octet-stream date: - - Wed, 21 Jun 2023 21:15:22 GMT + - Tue, 27 Jun 2023 05:13:48 GMT etag: - - '0x8DB7236999A3CDE' + - '0x8DB75852C02DBEA' last-modified: - - Wed, 21 Jun 2023 09:05:03 GMT + - Sun, 25 Jun 2023 14:05:03 GMT x-azure-ref: - - 20230621T211522Z-eqz6fa3b6p5dh9wf38v0fptumg00000001g000000000a11t + - 20230627T051348Z-d98vq2nfkd64b486xdk0pfq4n400000008kg00000001zqst x-cache: - TCP_HIT x-ms-blob-type: @@ -5836,13 +6058,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-21T21:15:28.9477407Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n + \"2023-06-27T05:13:52.0477913Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:13:52.0477913Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3a15%3a29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035?api-version=2022-08-01-preview&t=2023-06-27T05%3a13%3a52&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=RK4wydRU3SGSjiFa-yaCzi35jcHE4ILXajUU4GWpZ90byuIPQZYV03F2XpaXpfXRH62XPwdBCrbUe9rEc4-XVjfMikYkgJY82JcJx1aCwX40d_5QpQb3Vt2vGTgPMuKD5z1JuFcehUUFldwtUvFCmBHkOXlp4okuYr_cAwp5St_NuaynGyEPmIXoWoMdJ5ADz9GkTUv5S50bHsItvKGlhJ-lScY9nbaHLyKmzjvI-h5xJtC9AeR1SA4jQyjdWfJ9rBrRrgsLakhOGerxHBbjmQUrqp7MLPVziG5LQsROVRuU3yAckC7Ad9c5DhY2b2GIiAsETK7LcwBqRZs4PA8B9A&h=BiirEzrjcR8P9AdHFn2o0oAdDrkoyBVYlLw5XrLQUFc cache-control: - no-cache content-length: @@ -5850,7 +6072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:28 GMT + - Tue, 27 Jun 2023 05:13:51 GMT expires: - '-1' pragma: @@ -5882,11 +6104,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035?api-version=2022-08-01-preview&t=2023-06-27T05%3A13%3A52&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=RK4wydRU3SGSjiFa-yaCzi35jcHE4ILXajUU4GWpZ90byuIPQZYV03F2XpaXpfXRH62XPwdBCrbUe9rEc4-XVjfMikYkgJY82JcJx1aCwX40d_5QpQb3Vt2vGTgPMuKD5z1JuFcehUUFldwtUvFCmBHkOXlp4okuYr_cAwp5St_NuaynGyEPmIXoWoMdJ5ADz9GkTUv5S50bHsItvKGlhJ-lScY9nbaHLyKmzjvI-h5xJtC9AeR1SA4jQyjdWfJ9rBrRrgsLakhOGerxHBbjmQUrqp7MLPVziG5LQsROVRuU3yAckC7Ad9c5DhY2b2GIiAsETK7LcwBqRZs4PA8B9A&h=BiirEzrjcR8P9AdHFn2o0oAdDrkoyBVYlLw5XrLQUFc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n - \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035\",\r\n + \ \"name\": \"7b5e0601-ae7f-481f-b65f-768430097035\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5895,7 +6117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:28 GMT + - Tue, 27 Jun 2023 05:13:52 GMT expires: - '-1' pragma: @@ -5929,11 +6151,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff?api-version=2022-08-01-preview&t=2023-06-21T21%3A15%3A29&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=pUz7bjxj1q09qWunuFU8EMaOoma4K-h_wJFyJMthIPNT62e5hFRyeAppCauHZdJ1bp0o3JK4iMgHwHSy1teFEmjSGf_r-Vqi9JwscmeuDJ9JP7CGlXId_-13sUoH8uI1F2W0Qte7LPmAFj3iBdO9WN5c_ijsNLejFR3cFzmH8rskSL7PiNVnMApXJ61Ecp7bCnLkE9sLOl3SLabCMfRBRXTJsvoyWC6JqLZdPk7WhPzkszEN-6VtnCK-e3BjITT7Rx8d_-ZmAEHPFQ_2b7jNeJt-KRHD7RJU6CMLnFvDgZBUsTwjfunj_ftXhYJnZfwkBicYOINt6eFz7zzWEYaleA&h=aL9aFN1_IxEWJnxdzzA6VJNYb1gYm_lFDY1pNA5WoiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035?api-version=2022-08-01-preview&t=2023-06-27T05%3A13%3A52&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=RK4wydRU3SGSjiFa-yaCzi35jcHE4ILXajUU4GWpZ90byuIPQZYV03F2XpaXpfXRH62XPwdBCrbUe9rEc4-XVjfMikYkgJY82JcJx1aCwX40d_5QpQb3Vt2vGTgPMuKD5z1JuFcehUUFldwtUvFCmBHkOXlp4okuYr_cAwp5St_NuaynGyEPmIXoWoMdJ5ADz9GkTUv5S50bHsItvKGlhJ-lScY9nbaHLyKmzjvI-h5xJtC9AeR1SA4jQyjdWfJ9rBrRrgsLakhOGerxHBbjmQUrqp7MLPVziG5LQsROVRuU3yAckC7Ad9c5DhY2b2GIiAsETK7LcwBqRZs4PA8B9A&h=BiirEzrjcR8P9AdHFn2o0oAdDrkoyBVYlLw5XrLQUFc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n - \ \"name\": \"b5438d5e-f865-4a94-be95-63d8ff9fd6ff\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035\",\r\n + \ \"name\": \"7b5e0601-ae7f-481f-b65f-768430097035\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5942,7 +6164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:15:59 GMT + - Tue, 27 Jun 2023 05:14:22 GMT expires: - '-1' pragma: @@ -5982,20 +6204,20 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n - \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-13-52-8f810\",\r\n + \ \"duration\": \"PT30.5700691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storec2xm2tedpulxe\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:13:52.0477913Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:13:52.0477913Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -6006,7 +6228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:16:00 GMT + - Tue, 27 Jun 2023 05:14:22 GMT expires: - '-1' pragma: @@ -6046,20 +6268,20 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-21-21-15-29-feb76\",\r\n - \ \"duration\": \"PT30.5242357S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-13-52-8f810\",\r\n + \ \"duration\": \"PT30.5700691S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storef6nimr43fjbsc\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storec2xm2tedpulxe\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-21T21:15:28.9477407Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:13:52.0477913Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-21T21:15:28.9477407Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:13:52.0477913Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -6070,7 +6292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Jun 2023 21:16:00 GMT + - Tue, 27 Jun 2023 05:14:23 GMT expires: - '-1' pragma: @@ -6116,7 +6338,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:16:01 GMT + - Tue, 27 Jun 2023 05:14:24 GMT expires: - '-1' pragma: @@ -6160,11 +6382,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:16:03 GMT + - Tue, 27 Jun 2023 05:14:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6192,127 +6414,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 21 Jun 2023 21:16:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 21 Jun 2023 21:16:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 21 Jun 2023 21:16:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6322,11 +6424,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:16:49 GMT + - Tue, 27 Jun 2023 05:14:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6352,7 +6454,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6362,11 +6464,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:05 GMT + - Tue, 27 Jun 2023 05:14:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6392,7 +6494,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6402,11 +6504,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:20 GMT + - Tue, 27 Jun 2023 05:14:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6432,7 +6534,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6442,11 +6544,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:36 GMT + - Tue, 27 Jun 2023 05:15:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6472,7 +6574,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6482,11 +6584,11 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:17:51 GMT + - Tue, 27 Jun 2023 05:15:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6512,7 +6614,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwwNDE1ODY3QzAwRkU1MUE4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6522,7 +6624,7 @@ interactions: content-length: - '0' date: - - Wed, 21 Jun 2023 21:18:06 GMT + - Tue, 27 Jun 2023 05:15:42 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 819d8a9dc82..4b968308524 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:22 GMT + - Tue, 27 Jun 2023 04:20:05 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:22 GMT + - Tue, 27 Jun 2023 04:20:05 GMT expires: - '-1' pragma: @@ -112,9 +112,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:24.5090807Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:07.8127462Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:24.5090807Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:07.8127462Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -125,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:24 GMT + - Tue, 27 Jun 2023 04:20:07 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:09.5627143Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:09.5627143Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:26 GMT + - Tue, 27 Jun 2023 04:20:09 GMT expires: - '-1' pragma: @@ -225,7 +225,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -242,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:26 GMT + - Tue, 27 Jun 2023 04:20:10 GMT expires: - '-1' pragma: @@ -265,8 +267,10 @@ interactions: [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", - "denySettings": {"applyToChildScopes": false}}}' + {"resources": "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", + "description": "stack deployment", "denySettings": {"excludedPrincipals": ["principal1", + "principal2"], "excludedActions": ["action1", "action2"], "applyToChildScopes": + true}}}' headers: Accept: - application/json @@ -277,11 +281,13 @@ interactions: Connection: - keep-alive Content-Length: - - '834' + - '963' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -289,32 +295,35 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n - \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:27.423522Z\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"description\": + \"stack deployment\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n + \ \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n + \ \"principal1\",\r\n \"principal2\"\r\n ],\r\n \"excludedActions\": + [\r\n \"action1\",\r\n \"action2\"\r\n ]\r\n },\r\n + \ \"parameters\": {\r\n \"foo\": {\r\n \"value\": \"abc\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n \"value\": + \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": + [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:10.9491524Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:10.9491524Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3a08%3a28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9?api-version=2022-08-01-preview&t=2023-06-27T04%3a20%3a11&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rAxEnxbhLmdrSECyoEDEmL78fuAlHH40UwHexNxNFtUklraS0OgDpLMGh4hMWHGRV-8Zv_TM4nObWwnpPXMM6dxyl7Pi6FR7GO6acdc-rLtEvIEdbGTBYdn3U5sEC0E_bCern2XccwssxRCzJmmgFR29E6axP-khAelTn3fW_ZkgdIYNB8vhr7drTEw8loO3jZ_X_m3r__YaYFrqpUJazkj5JROPHgTFtXXdRXdizTnYMv71xoH9gioRnuAWe2pfFfycy9nSCV_O8JMrdz178iDUbgQq15PY0g6PuHHXD8gKHA7UDO0k8_h7lG3Ml-IQs8i7zZeWwAH67B0IXGBuzQ&h=SrTbEBioj8GOsrbgA8WzoBd3rz_bVGFyVYRgmMoN4Uc cache-control: - no-cache content-length: - - '1274' + - '1478' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:27 GMT + - Tue, 27 Jun 2023 04:20:11 GMT expires: - '-1' pragma: @@ -342,15 +351,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A11&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rAxEnxbhLmdrSECyoEDEmL78fuAlHH40UwHexNxNFtUklraS0OgDpLMGh4hMWHGRV-8Zv_TM4nObWwnpPXMM6dxyl7Pi6FR7GO6acdc-rLtEvIEdbGTBYdn3U5sEC0E_bCern2XccwssxRCzJmmgFR29E6axP-khAelTn3fW_ZkgdIYNB8vhr7drTEw8loO3jZ_X_m3r__YaYFrqpUJazkj5JROPHgTFtXXdRXdizTnYMv71xoH9gioRnuAWe2pfFfycy9nSCV_O8JMrdz178iDUbgQq15PY0g6PuHHXD8gKHA7UDO0k8_h7lG3Ml-IQs8i7zZeWwAH67B0IXGBuzQ&h=SrTbEBioj8GOsrbgA8WzoBd3rz_bVGFyVYRgmMoN4Uc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n - \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n + \ \"name\": \"ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -359,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:27 GMT + - Tue, 27 Jun 2023 04:20:11 GMT expires: - '-1' pragma: @@ -389,15 +400,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5?api-version=2022-08-01-preview&t=2023-06-22T01%3A08%3A28&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=XPUhHKBMj50AWPa4_O-4WWt_vfNCgtRDBeBrXqWqGWZaqBjJ9vzFYRfHgqrhqUi4FuqgrslmR__Ih-Nnf76DqyYLk94QMnuoEm8vsL_2o6ZL_kuIfTm0we9Sk-mLFDYwN3g3BlEVDCWpXZ50-794yo1ozQ18Trjt-t9uu9u_9Vo1Z0iGUls8P387EHZMnNxRPbUaQN1Nw4qTBCcrGrD5Hr86uoe-mzsbX9JxW963t1LpWkPV9xR0GkfbxgKS3cOTiz7U07omIOHbvPIVO1N56Zr_FM_F0mOHjCb27EOc20k9hyUrB43Jpy4vEk2_653yKLf20qHXTgrJmBcXOcO3yA&h=rALkmaTzBYznaos7xUnI7Al8PVY4S1Egf0jn_KFMvBw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A11&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rAxEnxbhLmdrSECyoEDEmL78fuAlHH40UwHexNxNFtUklraS0OgDpLMGh4hMWHGRV-8Zv_TM4nObWwnpPXMM6dxyl7Pi6FR7GO6acdc-rLtEvIEdbGTBYdn3U5sEC0E_bCern2XccwssxRCzJmmgFR29E6axP-khAelTn3fW_ZkgdIYNB8vhr7drTEw8loO3jZ_X_m3r__YaYFrqpUJazkj5JROPHgTFtXXdRXdizTnYMv71xoH9gioRnuAWe2pfFfycy9nSCV_O8JMrdz178iDUbgQq15PY0g6PuHHXD8gKHA7UDO0k8_h7lG3Ml-IQs8i7zZeWwAH67B0IXGBuzQ&h=SrTbEBioj8GOsrbgA8WzoBd3rz_bVGFyVYRgmMoN4Uc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n - \ \"name\": \"57b020ba-7e02-4da5-b2ba-5127fd5fbac5\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n + \ \"name\": \"ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -406,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:57 GMT + - Tue, 27 Jun 2023 04:20:41 GMT expires: - '-1' pragma: @@ -436,7 +449,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --parameters --yes + - --name --location --template-file --deny-settings-mode --parameters --description + --delete-all --deny-settings-excluded-principals --deny-settings-excluded-actions + --deny-settings-apply-to-child-scopes --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -444,34 +459,37 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-11-5b354\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.7457871S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:10.9491524Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:10.9491524Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1666' + - '1870' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:58 GMT + - Tue, 27 Jun 2023 04:20:42 GMT expires: - '-1' pragma: @@ -509,34 +527,37 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-08-27-b2070\",\r\n + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-11-5b354\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.6910006S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n - \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": - \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:08:27.423522Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:27.423522Z\"\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.7457871S\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n + \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n + \ ]\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": + \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n + \ \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:10.9491524Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:10.9491524Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1666' + - '1870' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:08:59 GMT + - Tue, 27 Jun 2023 04:20:43 GMT expires: - '-1' pragma: @@ -582,7 +603,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:09:00 GMT + - Tue, 27 Jun 2023 04:20:43 GMT expires: - '-1' pragma: @@ -627,7 +648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:00 GMT + - Tue, 27 Jun 2023 04:20:44 GMT expires: - '-1' pragma: @@ -673,9 +694,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:08:26.1184254Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:09.5627143Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:08:26.1184254Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:09.5627143Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -687,7 +708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:01 GMT + - Tue, 27 Jun 2023 04:20:45 GMT expires: - '-1' pragma: @@ -742,14 +763,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:46.3111996Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:46.3111996Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3?api-version=2022-08-01-preview&t=2023-06-27T04%3a20%3a47&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=IiW-16O8HhgyOs0g2DhV3S0MvJunh1ldgbWXN6MWfEOeoBOA0LXegP_n1KseCySbyc9iFFLAPl5ALsnZ5Ugy1bCAIYpeBn1pp7wnoOiikPAbHl-Ymy1O9PQieq5lB2rpEWqYJFE2Kn1AwB1EGA_ylXky7jaT6x-UTQv2s2ZWb7PtHTRYnLxddjwTtbVkAvEOMZCnPiDhKM5aks9n2Ryz1921nPiTlzprEV8PSUKXLfPI210qOr8xDObn020b9_LX5GSMczPDXCI-ADY2dKaTshhyWizbCoGFc4osDVlZMqyVy6RKvLeJ_zmrgGMhRs7E8cO9kkPFa_paGHhllJdTEQ&h=TbWOPO3zdwAtZuUOFqR8w8C1-RKlBbexLaYzEcoCM8s cache-control: - no-cache content-length: @@ -757,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:02 GMT + - Tue, 27 Jun 2023 04:20:47 GMT expires: - '-1' pragma: @@ -789,11 +810,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A47&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=IiW-16O8HhgyOs0g2DhV3S0MvJunh1ldgbWXN6MWfEOeoBOA0LXegP_n1KseCySbyc9iFFLAPl5ALsnZ5Ugy1bCAIYpeBn1pp7wnoOiikPAbHl-Ymy1O9PQieq5lB2rpEWqYJFE2Kn1AwB1EGA_ylXky7jaT6x-UTQv2s2ZWb7PtHTRYnLxddjwTtbVkAvEOMZCnPiDhKM5aks9n2Ryz1921nPiTlzprEV8PSUKXLfPI210qOr8xDObn020b9_LX5GSMczPDXCI-ADY2dKaTshhyWizbCoGFc4osDVlZMqyVy6RKvLeJ_zmrgGMhRs7E8cO9kkPFa_paGHhllJdTEQ&h=TbWOPO3zdwAtZuUOFqR8w8C1-RKlBbexLaYzEcoCM8s response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n - \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n + \ \"name\": \"7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -802,7 +823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:02 GMT + - Tue, 27 Jun 2023 04:20:47 GMT expires: - '-1' pragma: @@ -836,11 +857,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A02&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=BjMUgJoadkDn9BmPC2ZFqHgOvjjwXZ2BHc907gFmeirX2cT8vAZXZZwYeayefLpWhuvHfqeVk08ix4yh8KXgZFsslZyyMOwmnSWKTlcFklbhpore2QyyR4yy1QcZvM72AslOfVQpvGib5YHOh9c7ogPY3mUwU8wdMc_kUm89hYXqeTz636BsKxZrmh1H7EKwd26CkNg1jw1zYM1vwC0LktpQjp0BrAcbPSJwbj2zGXb_2ILQg8OSRMwX1wqacNvEV6ihuYrvEi4g_5at4SBMqZcCIDzn5ZASxcmAOpAGUoqTzGBIot9XATgL4mldlAa6rYrs7TYcb2yxDoxJYwfFFQ&h=3PR44WMLMVH_sdt1eeKJpa7eoTBv17IkwmKCLwPc71E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A47&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=IiW-16O8HhgyOs0g2DhV3S0MvJunh1ldgbWXN6MWfEOeoBOA0LXegP_n1KseCySbyc9iFFLAPl5ALsnZ5Ugy1bCAIYpeBn1pp7wnoOiikPAbHl-Ymy1O9PQieq5lB2rpEWqYJFE2Kn1AwB1EGA_ylXky7jaT6x-UTQv2s2ZWb7PtHTRYnLxddjwTtbVkAvEOMZCnPiDhKM5aks9n2Ryz1921nPiTlzprEV8PSUKXLfPI210qOr8xDObn020b9_LX5GSMczPDXCI-ADY2dKaTshhyWizbCoGFc4osDVlZMqyVy6RKvLeJ_zmrgGMhRs7E8cO9kkPFa_paGHhllJdTEQ&h=TbWOPO3zdwAtZuUOFqR8w8C1-RKlBbexLaYzEcoCM8s response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30c5cad7-1779-464b-afc3-336470a8042f\",\r\n - \ \"name\": \"30c5cad7-1779-464b-afc3-336470a8042f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n + \ \"name\": \"7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -849,7 +870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:32 GMT + - Tue, 27 Jun 2023 04:21:17 GMT expires: - '-1' pragma: @@ -889,9 +910,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-46-9fe0e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.2883024S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -903,20 +924,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:46.3111996Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:46.3111996Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1898' + - '1900' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:32 GMT + - Tue, 27 Jun 2023 04:21:18 GMT expires: - '-1' pragma: @@ -956,9 +977,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-02-03ff3\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-46-9fe0e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.067743S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT10.2883024S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -970,20 +991,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:02.1822987Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:46.3111996Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:02.1822987Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:46.3111996Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1898' + - '1900' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:34 GMT + - Tue, 27 Jun 2023 04:21:19 GMT expires: - '-1' pragma: @@ -1029,7 +1050,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:09:34 GMT + - Tue, 27 Jun 2023 04:21:19 GMT expires: - '-1' pragma: @@ -1075,7 +1096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:34 GMT + - Tue, 27 Jun 2023 04:21:20 GMT expires: - '-1' pragma: @@ -1133,14 +1154,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:09:35.8967059Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:21:20.8759855Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:20.8759855Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3a09%3a36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c?api-version=2022-08-01-preview&t=2023-06-27T04%3a21%3a21&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=dQ75SOcXE6yZP7dQitS2D3uVhKFNZRTg_wBBc689oVX8YJTSWCTnnM7siUMUeXh-B06P6wbzJrC1PsLzLTyy440ajX4r8BFuaviLIPuHMRCmoTU_uBdRzs1bojb09YIiFnl19a9vpgUuiSRG-HRRn3Nh_YUx7ZNJdUm2wRAcbjeXwQcXnCamyDyBVXZ39pHvVuJ08g1BoUSIBORi1z679Vdyp_y2PUhEXyhP-bbbfHKFNtJ5TNBHS0WolXNZ9qE-jU_djT_q1px7F0uF7Wqx7rTpC4SZ6YmMzHWbO4rqGUc8JOv3sZ6PAIPJsYmVAH8ZZBhgGYOauvM15bvjhDz5Vw&h=X9y9prUmnxTVFIt14aJfaO4xw2UOSheqy6xs5kJMn8s cache-control: - no-cache content-length: @@ -1148,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:35 GMT + - Tue, 27 Jun 2023 04:21:21 GMT expires: - '-1' pragma: @@ -1181,11 +1202,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c?api-version=2022-08-01-preview&t=2023-06-27T04%3A21%3A21&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=dQ75SOcXE6yZP7dQitS2D3uVhKFNZRTg_wBBc689oVX8YJTSWCTnnM7siUMUeXh-B06P6wbzJrC1PsLzLTyy440ajX4r8BFuaviLIPuHMRCmoTU_uBdRzs1bojb09YIiFnl19a9vpgUuiSRG-HRRn3Nh_YUx7ZNJdUm2wRAcbjeXwQcXnCamyDyBVXZ39pHvVuJ08g1BoUSIBORi1z679Vdyp_y2PUhEXyhP-bbbfHKFNtJ5TNBHS0WolXNZ9qE-jU_djT_q1px7F0uF7Wqx7rTpC4SZ6YmMzHWbO4rqGUc8JOv3sZ6PAIPJsYmVAH8ZZBhgGYOauvM15bvjhDz5Vw&h=X9y9prUmnxTVFIt14aJfaO4xw2UOSheqy6xs5kJMn8s response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n - \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n + \ \"name\": \"022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1194,7 +1215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:09:36 GMT + - Tue, 27 Jun 2023 04:21:21 GMT expires: - '-1' pragma: @@ -1229,11 +1250,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f?api-version=2022-08-01-preview&t=2023-06-22T01%3A09%3A36&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=dA1zvvwL3FtU9P-qiudz9QZjBwl544M35Dp5PFd6B3Mp7acGNd_Ewb4l4n52ZePLN_DZObDknI49ftFdGcMQbXO--efmpuDp_yf_bJLv5QCY8XmQQTH7KAWUqJ-9DIcc6sPECAsQGlmM6rdokLc0MZr4JkQEtqw3zP5AkrawpUrSLGcyxZsdhxVQAdpfsICXSE9WYnVLmnqkiG47pLn5tGuA505xZnPATaUsjeOoBT6pOf4dBdZrBkb4jEdtO_wFAKtw2CtX9V9WP6HSDQReZR1wfMzB9_5yvuH__PLIgq0IwOAUZzugj5hc9D8crwb3mLGnO7yFUj5uEtQENJaF2Q&h=tBRvvJ1QklOk4nrzeZ6SiVgXQWfCagnmdDRLqTMV-U8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c?api-version=2022-08-01-preview&t=2023-06-27T04%3A21%3A21&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=dQ75SOcXE6yZP7dQitS2D3uVhKFNZRTg_wBBc689oVX8YJTSWCTnnM7siUMUeXh-B06P6wbzJrC1PsLzLTyy440ajX4r8BFuaviLIPuHMRCmoTU_uBdRzs1bojb09YIiFnl19a9vpgUuiSRG-HRRn3Nh_YUx7ZNJdUm2wRAcbjeXwQcXnCamyDyBVXZ39pHvVuJ08g1BoUSIBORi1z679Vdyp_y2PUhEXyhP-bbbfHKFNtJ5TNBHS0WolXNZ9qE-jU_djT_q1px7F0uF7Wqx7rTpC4SZ6YmMzHWbO4rqGUc8JOv3sZ6PAIPJsYmVAH8ZZBhgGYOauvM15bvjhDz5Vw&h=X9y9prUmnxTVFIt14aJfaO4xw2UOSheqy6xs5kJMn8s response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n - \ \"name\": \"90896258-281a-409c-b1fe-f19f70a08a1f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n + \ \"name\": \"022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1242,7 +1263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:07 GMT + - Tue, 27 Jun 2023 04:21:51 GMT expires: - '-1' pragma: @@ -1283,9 +1304,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-21-21-6782e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7995499S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1296,8 +1317,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n + \"2023-06-27T04:21:20.8759855Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:20.8759855Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1308,7 +1329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:07 GMT + - Tue, 27 Jun 2023 04:21:51 GMT expires: - '-1' pragma: @@ -1348,9 +1369,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-09-36-9af5a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-21-21-6782e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.7400368S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7995499S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1361,8 +1382,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:09:35.8967059Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:09:35.8967059Z\"\r\n + \"2023-06-27T04:21:20.8759855Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:20.8759855Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1373,7 +1394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:08 GMT + - Tue, 27 Jun 2023 04:21:52 GMT expires: - '-1' pragma: @@ -1419,7 +1440,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:10:08 GMT + - Tue, 27 Jun 2023 04:21:53 GMT expires: - '-1' pragma: @@ -1465,7 +1486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:08 GMT + - Tue, 27 Jun 2023 04:21:54 GMT expires: - '-1' pragma: @@ -1489,7 +1510,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -1503,15 +1524,15 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:10:10 GMT + - Tue, 27 Jun 2023 04:21:55 GMT expires: - - Thu, 22 Jun 2023 01:10:10 GMT + - Tue, 27 Jun 2023 04:21:55 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e server: - Kestrel strict-transport-security: @@ -1531,12 +1552,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":14,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":61,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":640,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":8677,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":271,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1024,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1743,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":9090,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":144,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -1603,24 +1624,24 @@ interactions: \r\n\r\n@davidcho23\r\n* Update release-checklist.md (#10886)\r\n\r\n \r\n\r\n@snehabandla\r\n* Adding support for taking diagnostics format as input for bicep build (#10672)\r\n-->","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' headers: + accept-ranges: + - bytes + connection: + - keep-alive content-length: - - '41661' - content-md5: - - l4ATFhxnZwZ7nJNCUpaQlQ== + - '41663' content-type: - application/octet-stream date: - - Thu, 22 Jun 2023 01:10:11 GMT + - Tue, 27 Jun 2023 04:21:56 GMT etag: - - '0x8DB72BCB58C32B9' + - '0x8DB75852C02DBEA' last-modified: - - Thu, 22 Jun 2023 01:05:02 GMT + - Sun, 25 Jun 2023 14:05:03 GMT x-azure-ref: - - 0c5+TZAAAAAAFgvQ5abb+QrplYS+mwDHCTUlBRURHRTIyMjEANTY3YTBjMmEtNTdjOS00YmExLTk2MzUtMDg2ZTBiZWVjMTFh - x-azure-ref-originshield: - - 0c5+TZAAAAABngyLkP1kHQpyxmisRxOPqTU5aMjIxMDYwNjExMDIzADU2N2EwYzJhLTU3YzktNGJhMS05NjM1LTA4NmUwYmVlYzExYQ== + - 20230627T042156Z-d98vq2nfkd64b486xdk0pfq4n400000008k000000001np7g x-cache: - - TCP_REMOTE_HIT + - TCP_HIT x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -1674,13 +1695,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:10:16.8403093Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n + \"2023-06-27T04:21:59.7250393Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:59.7250393Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7?api-version=2022-08-01-preview&t=2023-06-27T04%3a22%3a00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rLDhLQNK4QyQ9cvsyzc_O9SrFhigUu_p42y-aOmtc83ow8CmoG5bzjqMqsYm9SdRUSNvFdxrcLbdGA7FysRsVTF8wgGmkXk9D37GhLOUTni-NKuJvFk0XCiGe5SUbU8orJ_wedMhsG5DtrV1rvBElEhDbeH-7cX_cjkUifvHkZ6kHfhVnmK9Lj_B1IW1Csy-7K6bOzDbaEC1Xblu3_2kOdV5dGICtuhL-pLV_lxuH5Ae7q4QizwyIYblZdE7lOFTuEuq6rwzoWdXcaUlW2cJQ7jmMXkuklOxbOx9PPkpz3qNzo2pdEJVoDBwazaXY8byQidbwrVURG4B85BOlUJM0A&h=_xXfOMTk2t-mXIqgDTXyEwrj2ChTLipOnIbabXcuRXo cache-control: - no-cache content-length: @@ -1688,7 +1709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:16 GMT + - Tue, 27 Jun 2023 04:22:00 GMT expires: - '-1' pragma: @@ -1721,11 +1742,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rLDhLQNK4QyQ9cvsyzc_O9SrFhigUu_p42y-aOmtc83ow8CmoG5bzjqMqsYm9SdRUSNvFdxrcLbdGA7FysRsVTF8wgGmkXk9D37GhLOUTni-NKuJvFk0XCiGe5SUbU8orJ_wedMhsG5DtrV1rvBElEhDbeH-7cX_cjkUifvHkZ6kHfhVnmK9Lj_B1IW1Csy-7K6bOzDbaEC1Xblu3_2kOdV5dGICtuhL-pLV_lxuH5Ae7q4QizwyIYblZdE7lOFTuEuq6rwzoWdXcaUlW2cJQ7jmMXkuklOxbOx9PPkpz3qNzo2pdEJVoDBwazaXY8byQidbwrVURG4B85BOlUJM0A&h=_xXfOMTk2t-mXIqgDTXyEwrj2ChTLipOnIbabXcuRXo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n - \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n + \ \"name\": \"3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1734,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:17 GMT + - Tue, 27 Jun 2023 04:22:00 GMT expires: - '-1' pragma: @@ -1769,11 +1790,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A17&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=SQu7IPntBhuP44JbJRwJGmsRHAz9hSEkzKsQH-IMLsCD4rideThyVCg4pO2YQBfsrMVJQMDA48V3lADfP1cqCqgR9s4IvnkI2B0bAIy39rn_nw-6q7xnxfa2t8KpxmcUIkLVNIauVnqIwNRXI9xZGnzCSYTikZRk_yob_kg2STlKHskLNECypvj3FCqyufG2DdYPC6kilLyilLSfwsrdy7mrJqIsV6XLT4RHNKXHvgibidoDbTnSCT_Nuo2f_3HhIwOhL1Th5DpiBi7WXWQ0826UnU1Ag_uU5Gqktk8y3wZb4W6_FGVVkJmNtpaPUx33rDUvUZlf3d68KGorI3Exrw&h=tDYALfddyT_C5K_XSBECmKi8F0ioIvUAwquQZ-aGPZU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rLDhLQNK4QyQ9cvsyzc_O9SrFhigUu_p42y-aOmtc83ow8CmoG5bzjqMqsYm9SdRUSNvFdxrcLbdGA7FysRsVTF8wgGmkXk9D37GhLOUTni-NKuJvFk0XCiGe5SUbU8orJ_wedMhsG5DtrV1rvBElEhDbeH-7cX_cjkUifvHkZ6kHfhVnmK9Lj_B1IW1Csy-7K6bOzDbaEC1Xblu3_2kOdV5dGICtuhL-pLV_lxuH5Ae7q4QizwyIYblZdE7lOFTuEuq6rwzoWdXcaUlW2cJQ7jmMXkuklOxbOx9PPkpz3qNzo2pdEJVoDBwazaXY8byQidbwrVURG4B85BOlUJM0A&h=_xXfOMTk2t-mXIqgDTXyEwrj2ChTLipOnIbabXcuRXo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0b49d79f-e877-4125-9354-69a5815175f4\",\r\n - \ \"name\": \"0b49d79f-e877-4125-9354-69a5815175f4\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n + \ \"name\": \"3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1782,7 +1803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:48 GMT + - Tue, 27 Jun 2023 04:22:30 GMT expires: - '-1' pragma: @@ -1823,9 +1844,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-00-c0f29\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.1834631S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1835,9 +1856,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:21:59.7250393Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:59.7250393Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1848,7 +1869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:48 GMT + - Tue, 27 Jun 2023 04:22:30 GMT expires: - '-1' pragma: @@ -1888,9 +1909,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-17-8005f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-00-c0f29\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.8743918S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.1834631S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n @@ -1900,9 +1921,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:16.8403093Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:21:59.7250393Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:16.8403093Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:59.7250393Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1913,7 +1934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:49 GMT + - Tue, 27 Jun 2023 04:22:32 GMT expires: - '-1' pragma: @@ -1959,7 +1980,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:10:49 GMT + - Tue, 27 Jun 2023 04:22:32 GMT expires: - '-1' pragma: @@ -2007,7 +2028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:51 GMT + - Tue, 27 Jun 2023 04:22:34 GMT expires: - '-1' pragma: @@ -2051,7 +2072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:51 GMT + - Tue, 27 Jun 2023 04:22:34 GMT expires: - '-1' pragma: @@ -2118,14 +2139,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:35.8297984Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3a10%3a53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f?api-version=2022-08-01-preview&t=2023-06-27T04%3a22%3a36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RX7bWdo7tUz-uT5JTWfdq99DyTQAgk0rpENJgQ_f7CAou0vi5dNTMzoS9lqDm0PuGRjZo9RSW76y_1VeyBlq0ClAXrSkwE8S7EfDV51eJ1QMVaPgk4WbActzZjj3uRIbRqE19CKAElgMvI9UMp-9_-2WOebrmloXNLNyMeISkGyAHojl5pJgIFxUu1gSMCpIgeag4YvKmTqpnGEsfv-uuWlLZoSyht4WzHG-kgjE58FkrB11c9MBg6YwxsFR1u0TXz-M29UHBHHqGq9mfqukEGtyKitj8OLZwUmbi7A1YGnQ1z5GElYYNRBwxNAnQKgn-ioMae0etEt8vSFqQ5j7Ew&h=RgDL3tsIMr5q1CxDyRDp3uMJ9jYaUhQ2fe-IAQPyWa0 cache-control: - no-cache content-length: @@ -2133,7 +2154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:52 GMT + - Tue, 27 Jun 2023 04:22:35 GMT expires: - '-1' pragma: @@ -2166,11 +2187,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RX7bWdo7tUz-uT5JTWfdq99DyTQAgk0rpENJgQ_f7CAou0vi5dNTMzoS9lqDm0PuGRjZo9RSW76y_1VeyBlq0ClAXrSkwE8S7EfDV51eJ1QMVaPgk4WbActzZjj3uRIbRqE19CKAElgMvI9UMp-9_-2WOebrmloXNLNyMeISkGyAHojl5pJgIFxUu1gSMCpIgeag4YvKmTqpnGEsfv-uuWlLZoSyht4WzHG-kgjE58FkrB11c9MBg6YwxsFR1u0TXz-M29UHBHHqGq9mfqukEGtyKitj8OLZwUmbi7A1YGnQ1z5GElYYNRBwxNAnQKgn-ioMae0etEt8vSFqQ5j7Ew&h=RgDL3tsIMr5q1CxDyRDp3uMJ9jYaUhQ2fe-IAQPyWa0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n - \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n + \ \"name\": \"eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2179,7 +2200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:10:52 GMT + - Tue, 27 Jun 2023 04:22:36 GMT expires: - '-1' pragma: @@ -2214,11 +2235,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878?api-version=2022-08-01-preview&t=2023-06-22T01%3A10%3A53&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=ewfRxjxG8S8GAZs7j265-YQUXaYclH-qJnQBinmSCe_e3pPqk9nwcgaJnD4I-2MKTAnWMiH7xk8fuBBqW2CaG71M3yJcwrBGiIr5pfmJS1ySrZt8XBw7exr3T8ab2a_JDbdLuHNH_ICtymNvrZlcFEXQoy3fRaje4c9D5y-OYzWlPBZsePpAyzCtec984Jau7xjw87jqjjokhrR5vRqRsjuvftBNoIacV_c2j4ATKMQPLMHPRzZPZ694IlCqPrSPi7H4eWdv3f1W5HfMD3T3ncXXkuGAhTvz1MoMFVbm-BfzrlmQ4YEJV6cND50DGIxlG1WoyDr8pWqnllGi1DnD3A&h=zlLIQTC8sMMfZTmTfztQzrgRH5knDW7CWsAQlaDinqw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RX7bWdo7tUz-uT5JTWfdq99DyTQAgk0rpENJgQ_f7CAou0vi5dNTMzoS9lqDm0PuGRjZo9RSW76y_1VeyBlq0ClAXrSkwE8S7EfDV51eJ1QMVaPgk4WbActzZjj3uRIbRqE19CKAElgMvI9UMp-9_-2WOebrmloXNLNyMeISkGyAHojl5pJgIFxUu1gSMCpIgeag4YvKmTqpnGEsfv-uuWlLZoSyht4WzHG-kgjE58FkrB11c9MBg6YwxsFR1u0TXz-M29UHBHHqGq9mfqukEGtyKitj8OLZwUmbi7A1YGnQ1z5GElYYNRBwxNAnQKgn-ioMae0etEt8vSFqQ5j7Ew&h=RgDL3tsIMr5q1CxDyRDp3uMJ9jYaUhQ2fe-IAQPyWa0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n - \ \"name\": \"bfef4ba4-ca96-4c04-a4f5-42da77933878\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n + \ \"name\": \"eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2227,7 +2248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:23 GMT + - Tue, 27 Jun 2023 04:23:06 GMT expires: - '-1' pragma: @@ -2268,9 +2289,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-36-b2474\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0176949S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2281,9 +2302,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:35.8297984Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2294,7 +2315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:24 GMT + - Tue, 27 Jun 2023 04:23:06 GMT expires: - '-1' pragma: @@ -2335,9 +2356,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-10-53-ee644\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-36-b2474\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT8.3320861S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0176949S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2348,9 +2369,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:52.7733923Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:35.8297984Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2361,7 +2382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:24 GMT + - Tue, 27 Jun 2023 04:23:07 GMT expires: - '-1' pragma: @@ -2432,14 +2453,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:08.3409917Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3a11%3a25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b?api-version=2022-08-01-preview&t=2023-06-27T04%3a23%3a08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=xu-W3J1U61X7cNM0bfPmhwoon8wSvAEDJlVh-ZCJhWWfsDrcn6mNiuIEMbmdlf5CWL-HttUvYJXFroy0XO4jsDs4dkMMoTCxnN79OBTAeMD0DkbP85SBATWeZ5BLO6z-36HPLLlClnnLwP7cZb1UBIvbECqGSFZ3RR2FJFLVsZkVIWeCrrYEhItQMgwXrR_98yAS8ddrswcnvlIEV6W721cQqbxhZ4KqjkADgVjsSFi89dpyCPTT6mFGLycNLL9kcl-HOaCvNL3FzGuA5T8NqhIw1CDjfHBA4Ium5AHUf82jV2f1dhbkqLhNTFMwV1sSn2bWjYdUu1m0GfT9YOal4Q&h=yTmFaKPCbQSEXiIIMSktXbLDUs-buF6bhZ850IgGck8 cache-control: - no-cache content-length: @@ -2447,7 +2468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:25 GMT + - Tue, 27 Jun 2023 04:23:07 GMT expires: - '-1' pragma: @@ -2484,11 +2505,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=xu-W3J1U61X7cNM0bfPmhwoon8wSvAEDJlVh-ZCJhWWfsDrcn6mNiuIEMbmdlf5CWL-HttUvYJXFroy0XO4jsDs4dkMMoTCxnN79OBTAeMD0DkbP85SBATWeZ5BLO6z-36HPLLlClnnLwP7cZb1UBIvbECqGSFZ3RR2FJFLVsZkVIWeCrrYEhItQMgwXrR_98yAS8ddrswcnvlIEV6W721cQqbxhZ4KqjkADgVjsSFi89dpyCPTT6mFGLycNLL9kcl-HOaCvNL3FzGuA5T8NqhIw1CDjfHBA4Ium5AHUf82jV2f1dhbkqLhNTFMwV1sSn2bWjYdUu1m0GfT9YOal4Q&h=yTmFaKPCbQSEXiIIMSktXbLDUs-buF6bhZ850IgGck8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n - \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n + \ \"name\": \"ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2497,7 +2518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:25 GMT + - Tue, 27 Jun 2023 04:23:08 GMT expires: - '-1' pragma: @@ -2532,11 +2553,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af?api-version=2022-08-01-preview&t=2023-06-22T01%3A11%3A25&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=n5OPYVffQfRSra5iymqXEFfbZmy3R2ASF2iP2_rBT69h3g_QDOEGhG_R8gOf8qqnQ_jVva4PlPy-3es3DJArpgIggNNNWcF8yHqe1eCp_5GoIiFJUGtrnYqLayP5Jep9FfIP6XF39r40ZLRVUzOxjYla7l6MAP1kcg-fEd7T3akOND-6dIMIxdv1h4PiOhzev8t_KSABjBdr9WCvPPrC96pIMh0Tt-jKcGcOVaSXDAuTBdoUCwrU92L9oOs2EDW4Zuk4v2nrB69SWqLPtISfXpE0w7_FHJgqX009QUr3ve8q27tOGQvFIl1fERolUIBNn5BVa31YKxAo5HbiGAhNWA&h=i0jtcJq1xL8vfR49kqRc-b2MaMCwcGbUo0I9ttPvQEs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=xu-W3J1U61X7cNM0bfPmhwoon8wSvAEDJlVh-ZCJhWWfsDrcn6mNiuIEMbmdlf5CWL-HttUvYJXFroy0XO4jsDs4dkMMoTCxnN79OBTAeMD0DkbP85SBATWeZ5BLO6z-36HPLLlClnnLwP7cZb1UBIvbECqGSFZ3RR2FJFLVsZkVIWeCrrYEhItQMgwXrR_98yAS8ddrswcnvlIEV6W721cQqbxhZ4KqjkADgVjsSFi89dpyCPTT6mFGLycNLL9kcl-HOaCvNL3FzGuA5T8NqhIw1CDjfHBA4Ium5AHUf82jV2f1dhbkqLhNTFMwV1sSn2bWjYdUu1m0GfT9YOal4Q&h=yTmFaKPCbQSEXiIIMSktXbLDUs-buF6bhZ850IgGck8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n - \ \"name\": \"e58d04de-34d5-4f24-a7e9-4b0e8dd2f1af\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n + \ \"name\": \"ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2545,7 +2566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:55 GMT + - Tue, 27 Jun 2023 04:23:39 GMT expires: - '-1' pragma: @@ -2586,9 +2607,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-08-d4be9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0805543S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2601,9 +2622,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:08.3409917Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -2614,7 +2635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:55 GMT + - Tue, 27 Jun 2023 04:23:39 GMT expires: - '-1' pragma: @@ -2751,7 +2772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:58 GMT + - Tue, 27 Jun 2023 04:23:41 GMT expires: - '-1' pragma: @@ -2787,9 +2808,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:39.2029485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:39.5779314Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2800,7 +2821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:11:59 GMT + - Tue, 27 Jun 2023 04:23:41 GMT expires: - '-1' pragma: @@ -2937,7 +2958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:01 GMT + - Tue, 27 Jun 2023 04:23:42 GMT expires: - '-1' pragma: @@ -2973,9 +2994,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:11:28.2016155Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:23:11.4718841Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:28.6235078Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:11.8469127Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: @@ -2986,7 +3007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:01 GMT + - Tue, 27 Jun 2023 04:23:43 GMT expires: - '-1' pragma: @@ -3027,9 +3048,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-11-25-83528\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-08-d4be9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.8162156S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.0805543S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3042,9 +3063,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:11:25.7171607Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:08.3409917Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -3055,7 +3076,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:03 GMT + - Tue, 27 Jun 2023 04:23:44 GMT expires: - '-1' pragma: @@ -3126,22 +3147,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:45.115881Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3a12%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3a23%3a45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo cache-control: - no-cache content-length: - - '1287' + - '1286' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:04 GMT + - Tue, 27 Jun 2023 04:23:45 GMT expires: - '-1' pragma: @@ -3178,11 +3199,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n + \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3191,7 +3212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:04 GMT + - Tue, 27 Jun 2023 04:23:45 GMT expires: - '-1' pragma: @@ -3226,11 +3247,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n + \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3239,7 +3260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:12:34 GMT + - Tue, 27 Jun 2023 04:24:15 GMT expires: - '-1' pragma: @@ -3274,11 +3295,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n + \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3287,7 +3308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:13:04 GMT + - Tue, 27 Jun 2023 04:24:45 GMT expires: - '-1' pragma: @@ -3322,11 +3343,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n + \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3335,7 +3356,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:13:35 GMT + - Tue, 27 Jun 2023 04:25:16 GMT expires: - '-1' pragma: @@ -3370,11 +3391,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n + \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3383,7 +3404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:05 GMT + - Tue, 27 Jun 2023 04:25:46 GMT expires: - '-1' pragma: @@ -3418,11 +3439,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7?api-version=2022-08-01-preview&t=2023-06-22T01%3A12%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=s2aCfY_UGJoyPrqR_bzHckeF7tCXMmeUJX7xW69DuJSqIunJeuckTOuETEVdRAjJqC0UpMelcVuxBhcTGwx9W8puymZHBaUegHvaeLq1UZfZLD2tR-nk38HScM2jxqiwGDEz2yPDtn-pJRi3J9RFdvqtyxBxZ1ScqjJ0i5R3yUNsqLdwx2Jg00yYqt6dn49RuHOtvp_Z7RELPIHKJ_zXXQSZZhMaWXy8xtw3z_vlyyzGS2E9ivKgbjLuxWT0PuAXwUdeH_XjMAB-ZmYX5Z1stZK1Re_31RWMEKTyn8PTFqQB4eTGa7k9u2HlrtWIRTzvxe6GhfgOp1El1UDXSo4SWw&h=JXhyCl8c1JtbMTohs_2G531pRLC3QE4EaRBNI477K8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n - \ \"name\": \"b5447540-f420-4f81-8fad-798bcd8496d7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n + \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3431,7 +3452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:36 GMT + - Tue, 27 Jun 2023 04:26:16 GMT expires: - '-1' pragma: @@ -3472,9 +3493,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-45-cb5dc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M17.4277759S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3487,20 +3508,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T04:23:45.115881Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2608' + - '2607' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:36 GMT + - Tue, 27 Jun 2023 04:26:16 GMT expires: - '-1' pragma: @@ -3637,7 +3658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:38 GMT + - Tue, 27 Jun 2023 04:26:18 GMT expires: - '-1' pragma: @@ -3673,9 +3694,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:55.6495451Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:39.2029485Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:10:56.0557146Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:39.5779314Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -3686,7 +3707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:39 GMT + - Tue, 27 Jun 2023 04:26:19 GMT expires: - '-1' pragma: @@ -3823,7 +3844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:40 GMT + - Tue, 27 Jun 2023 04:26:21 GMT expires: - '-1' pragma: @@ -3859,20 +3880,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:12:08.0902158Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:23:49.0256366Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:12:08.9184105Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:49.47876Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: cache-control: - no-cache content-length: - - '733' + - '731' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:41 GMT + - Tue, 27 Jun 2023 04:26:22 GMT expires: - '-1' pragma: @@ -3918,7 +3939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:43 GMT + - Tue, 27 Jun 2023 04:26:23 GMT expires: - '-1' pragma: @@ -3951,16 +3972,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:10:55.6069337Z","changedTime":"2023-06-22T01:10:55.7745704Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:55.6495451Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:55.6495451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:10:56.0163696Z","changedTime":"2023-06-22T01:10:56.2433114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:10:56.0557146Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:10:56.0557146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:12:08.0639163Z","changedTime":"2023-06-22T01:12:08.2152268Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.0902158Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.0902158Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:12:08.8913791Z","changedTime":"2023-06-22T01:12:09.0903012Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:12:08.9184105Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:12:08.9184105Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:22:39.1823235Z","changedTime":"2023-06-27T04:22:39.2810222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:22:39.2029485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:22:39.2029485Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:22:39.5558274Z","changedTime":"2023-06-27T04:22:39.6716484Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:22:39.5779314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:22:39.5779314Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:23:49.0039518Z","changedTime":"2023-06-27T04:23:49.1663191Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:23:49.0256366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:23:49.0256366Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:23:49.4593083Z","changedTime":"2023-06-27T04:23:49.6194101Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:23:49.47876Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:23:49.47876Z"}}]}' headers: cache-control: - no-cache + connection: + - close content-length: - - '2695' + - '2691' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:14:43 GMT + - Tue, 27 Jun 2023 04:26:23 GMT expires: - '-1' pragma: @@ -4002,11 +4025,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:14:45 GMT + - Tue, 27 Jun 2023 04:26:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4034,7 +4057,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4044,11 +4067,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:14:45 GMT + - Tue, 27 Jun 2023 04:26:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4074,7 +4097,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4084,11 +4107,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:00 GMT + - Tue, 27 Jun 2023 04:26:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4114,7 +4137,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4124,11 +4147,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:15 GMT + - Tue, 27 Jun 2023 04:26:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4154,7 +4177,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4164,11 +4187,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:30 GMT + - Tue, 27 Jun 2023 04:27:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4194,21 +4217,23 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' headers: cache-control: - no-cache + connection: + - close content-length: - '0' date: - - Thu, 22 Jun 2023 01:15:46 GMT + - Tue, 27 Jun 2023 04:27:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4234,7 +4259,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4244,7 +4269,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:16:01 GMT + - Tue, 27 Jun 2023 04:27:42 GMT expires: - '-1' pragma: @@ -4278,9 +4303,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-12-04-665f0\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-45-cb5dc\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M18.0413351S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT2M17.4277759S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4293,20 +4318,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:10:52.7733923Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:12:04.2757975Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T04:23:45.115881Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2608' + - '2607' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:02 GMT + - Tue, 27 Jun 2023 04:27:42 GMT expires: - '-1' pragma: @@ -4352,7 +4377,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:16:02 GMT + - Tue, 27 Jun 2023 04:27:43 GMT expires: - '-1' pragma: @@ -4397,7 +4422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:02 GMT + - Tue, 27 Jun 2023 04:27:44 GMT expires: - '-1' pragma: @@ -4453,14 +4478,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:27:44.6626038Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1?api-version=2022-08-01-preview&t=2023-06-27T04%3a27%3a45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cUGINHimxMyLsENyPtr2x1K8wL9uiANY8nccgja_jUXtvZi2FJ9AjxZ25qXZnZha4WyiBzOkMh-shg1mNc24rBAboOSlC7fRQFQ9kTWyptIAAVRnjW9Opdaytzjx8AMSuFvPho9TCDjMqfK3js_9f5hW7meSM13hRzi9jgC_6h2o5Cq1eURN7Dj440CW7682asEbJDXhAU8pWXjC5yYdg7DK3ceAJ03gIlCnED4iVdIn63MTfss8maF9Ldn0p0qvaKld1uKKPWcPrxgvR8Po6ZHhKH5QnXpflm8Na3-EKXxAFthHfT4RLcvKaYDuZV-JQdJrEQ7obqhu6MJphvojjg&h=TVMBY8W6m4ZvcsPLIvcNBmut6fvtoY-Qi9s2gZEjSdQ cache-control: - no-cache content-length: @@ -4468,7 +4493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:03 GMT + - Tue, 27 Jun 2023 04:27:45 GMT expires: - '-1' pragma: @@ -4500,11 +4525,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1?api-version=2022-08-01-preview&t=2023-06-27T04%3A27%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cUGINHimxMyLsENyPtr2x1K8wL9uiANY8nccgja_jUXtvZi2FJ9AjxZ25qXZnZha4WyiBzOkMh-shg1mNc24rBAboOSlC7fRQFQ9kTWyptIAAVRnjW9Opdaytzjx8AMSuFvPho9TCDjMqfK3js_9f5hW7meSM13hRzi9jgC_6h2o5Cq1eURN7Dj440CW7682asEbJDXhAU8pWXjC5yYdg7DK3ceAJ03gIlCnED4iVdIn63MTfss8maF9Ldn0p0qvaKld1uKKPWcPrxgvR8Po6ZHhKH5QnXpflm8Na3-EKXxAFthHfT4RLcvKaYDuZV-JQdJrEQ7obqhu6MJphvojjg&h=TVMBY8W6m4ZvcsPLIvcNBmut6fvtoY-Qi9s2gZEjSdQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n - \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n + \ \"name\": \"d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4513,7 +4538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:03 GMT + - Tue, 27 Jun 2023 04:27:45 GMT expires: - '-1' pragma: @@ -4547,11 +4572,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A04&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=greDZNKmf7QLt3fEeMbysdxsgCP6RoJbWMVNLX73qPsD70OF9nJwxy0tLapLzX43MIAJk82fGfVS2QpmIM_nqY9ri-aiOwL4n10-qqLf1VeZdquuKW2blnLe79CeACnGYYExsivfd0D3fC_C7ZOD2qx1BQUh-0Zj2B4Ak0W6eivFSbaWCHofgcCbYZKC-rEdbRtnpX1waSBhiGlRSqupi8-kTbxdc3P3UHX5GqNLpU1cPNWK9VNmtFevugjH_LhjwSB8kqMLE_1p5zpR3_e8hk28_qE1cjdSgHov5NUZTWMJPOZ3KPeAjTH2Jr4xtvpOG7_sGuRFmTgjSFEPyDQIxQ&h=aEOGj1MPOvdrj3FGEDOIVvkuqClcTnpM9Fa7NgwwpXM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1?api-version=2022-08-01-preview&t=2023-06-27T04%3A27%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cUGINHimxMyLsENyPtr2x1K8wL9uiANY8nccgja_jUXtvZi2FJ9AjxZ25qXZnZha4WyiBzOkMh-shg1mNc24rBAboOSlC7fRQFQ9kTWyptIAAVRnjW9Opdaytzjx8AMSuFvPho9TCDjMqfK3js_9f5hW7meSM13hRzi9jgC_6h2o5Cq1eURN7Dj440CW7682asEbJDXhAU8pWXjC5yYdg7DK3ceAJ03gIlCnED4iVdIn63MTfss8maF9Ldn0p0qvaKld1uKKPWcPrxgvR8Po6ZHhKH5QnXpflm8Na3-EKXxAFthHfT4RLcvKaYDuZV-JQdJrEQ7obqhu6MJphvojjg&h=TVMBY8W6m4ZvcsPLIvcNBmut6fvtoY-Qi9s2gZEjSdQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n - \ \"name\": \"efdb1cbd-2444-4d74-b18c-1df3758d624d\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n + \ \"name\": \"d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4560,7 +4585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:34 GMT + - Tue, 27 Jun 2023 04:28:15 GMT expires: - '-1' pragma: @@ -4600,9 +4625,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-27-45-6b4e9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4155788S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4611,9 +4636,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:27:44.6626038Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4624,7 +4649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:35 GMT + - Tue, 27 Jun 2023 04:28:15 GMT expires: - '-1' pragma: @@ -4664,9 +4689,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-04-90e27\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-27-45-6b4e9\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.9475909S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.4155788S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4675,9 +4700,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:03.7963993Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:27:44.6626038Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -4688,7 +4713,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:36 GMT + - Tue, 27 Jun 2023 04:28:16 GMT expires: - '-1' pragma: @@ -4748,22 +4773,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:17.5794594Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3a16%3a37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef?api-version=2022-08-01-preview&t=2023-06-27T04%3a28%3a17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zlLfMjEOsV1OT5Sw78admPt6QGrZXBZ2kw22WNubxAMAd3px6clCy4c34NEPsShJIWKp08YCmmJG4-rxdykMJSY7iYLO-sDTruuVfM54OcDeuIR-IyMY8mJV27B07no_wvkITNJ0hQ_B4Jb2mPjVrEOIAo8cLPRW8-o1n7fQAS_w6PRp_vLQqe9FfT7F1ZOey2iiNumUpqPf_-ZLbd4jpOkgRgkX4UlsWhotnvArTjCLbkJTVf2bae7jPEYdJmQ_0i6vpprcLXccFpQVET3shqNsRyRhy4If7neu4IjuHo9NtMcDbsSnxzlX4WcNcu-4vzMYZc1xsoQzR2q4geikzg&h=Q6c8WKYJ2lxfl4QxIKEQi0-4ooTvgCkpqpZ6WKFfDjc cache-control: - no-cache content-length: - - '1223' + - '1224' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:37 GMT + - Tue, 27 Jun 2023 04:28:17 GMT expires: - '-1' pragma: @@ -4799,11 +4824,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zlLfMjEOsV1OT5Sw78admPt6QGrZXBZ2kw22WNubxAMAd3px6clCy4c34NEPsShJIWKp08YCmmJG4-rxdykMJSY7iYLO-sDTruuVfM54OcDeuIR-IyMY8mJV27B07no_wvkITNJ0hQ_B4Jb2mPjVrEOIAo8cLPRW8-o1n7fQAS_w6PRp_vLQqe9FfT7F1ZOey2iiNumUpqPf_-ZLbd4jpOkgRgkX4UlsWhotnvArTjCLbkJTVf2bae7jPEYdJmQ_0i6vpprcLXccFpQVET3shqNsRyRhy4If7neu4IjuHo9NtMcDbsSnxzlX4WcNcu-4vzMYZc1xsoQzR2q4geikzg&h=Q6c8WKYJ2lxfl4QxIKEQi0-4ooTvgCkpqpZ6WKFfDjc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n - \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n + \ \"name\": \"3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -4812,7 +4837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:16:37 GMT + - Tue, 27 Jun 2023 04:28:17 GMT expires: - '-1' pragma: @@ -4846,11 +4871,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87?api-version=2022-08-01-preview&t=2023-06-22T01%3A16%3A37&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=eUVF4MmlFFF74KYhZ9h50J2urkzGE6n_nNptQwtQjYjx1eWAyg3BPqi064DRJ2vq3IwEltCqTZ4RagZtjpa72ml-g2uQloxDzDToik3rapoY9LjhRnQOyVhAGl60i21Ps6covaC7_v3XQd5fTuHRn7Ze5BoNlcVideMSXGlQLVqFYZinNIMyHFpXdLFukMVWdTMCRJTe8JGaOEcui1mYIcgPVcJf1We4PjEnsn-219Nw7Pgh4xxbGwnBeePmpyRgnlPGka3OE7636HI-r_zd0bJ1wV_uxTMVCz1FA-tWJG-0P_OfZ2ayRD5drPhnLBz9S8zdwKdW20qDHEEBQTmCFg&h=LJFQc4GHi60c0q_VkXs8Fw9mXZPgyQ1H-tV6kXfZdOQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zlLfMjEOsV1OT5Sw78admPt6QGrZXBZ2kw22WNubxAMAd3px6clCy4c34NEPsShJIWKp08YCmmJG4-rxdykMJSY7iYLO-sDTruuVfM54OcDeuIR-IyMY8mJV27B07no_wvkITNJ0hQ_B4Jb2mPjVrEOIAo8cLPRW8-o1n7fQAS_w6PRp_vLQqe9FfT7F1ZOey2iiNumUpqPf_-ZLbd4jpOkgRgkX4UlsWhotnvArTjCLbkJTVf2bae7jPEYdJmQ_0i6vpprcLXccFpQVET3shqNsRyRhy4If7neu4IjuHo9NtMcDbsSnxzlX4WcNcu-4vzMYZc1xsoQzR2q4geikzg&h=Q6c8WKYJ2lxfl4QxIKEQi0-4ooTvgCkpqpZ6WKFfDjc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n - \ \"name\": \"06ed4e37-54fb-470e-9b6a-e433bbd8ac87\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n + \ \"name\": \"3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4859,7 +4884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:07 GMT + - Tue, 27 Jun 2023 04:28:48 GMT expires: - '-1' pragma: @@ -4899,9 +4924,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-17-16d74\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.2124529S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -4911,20 +4936,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:17.5794594Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1789' + - '1790' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:07 GMT + - Tue, 27 Jun 2023 04:28:48 GMT expires: - '-1' pragma: @@ -4970,7 +4995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:08 GMT + - Tue, 27 Jun 2023 04:28:48 GMT expires: - '-1' pragma: @@ -5012,7 +5037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:08 GMT + - Tue, 27 Jun 2023 04:28:49 GMT expires: - '-1' pragma: @@ -5049,9 +5074,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-16-37-78104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-17-16d74\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.7322529S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.2124529S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5061,20 +5086,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:16:37.174516Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:17.5794594Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1789' + - '1790' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:09 GMT + - Tue, 27 Jun 2023 04:28:50 GMT expires: - '-1' pragma: @@ -5135,22 +5160,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:50.6269037Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785?api-version=2022-08-01-preview&t=2023-06-27T04%3a28%3a50&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fMae4N1B6Udx_ONH9UGXliv6tbBK5WczsKujC6Uq1wn4FES4-t4yy9EYuiAimK1P9AgnKERDsVQ_s6bD5f4ZawAR-HNmiOBSAlgMPHMIF6dYGx5jGbFifjx9HRzQXUuSNCSJphlKjw9XUm8GfPw3aogZ8oul0y4LBW4pe9E1Udr_VxHcHaO4lBHuPxf_7U6LndsZE8OdvugwC_hOj3kuJ_7ENJEA13dI4sdBMGcBs8fX5P7AnH8UKAqbmg6kmMqSClWrro5OGGBB8gAYi4v6LuL9VSmCwB0JHW0OLQ2tv3WwmmdSJpLbY_WiUlmbBAWsi5B3NfOhchrdniVvSysl1Q&h=5sWc28WVH1sxX1BGlPWYCTDtaJbfabHTw07t9UrP1Cs cache-control: - no-cache content-length: - - '1225' + - '1226' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:10 GMT + - Tue, 27 Jun 2023 04:28:50 GMT expires: - '-1' pragma: @@ -5187,11 +5212,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A50&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fMae4N1B6Udx_ONH9UGXliv6tbBK5WczsKujC6Uq1wn4FES4-t4yy9EYuiAimK1P9AgnKERDsVQ_s6bD5f4ZawAR-HNmiOBSAlgMPHMIF6dYGx5jGbFifjx9HRzQXUuSNCSJphlKjw9XUm8GfPw3aogZ8oul0y4LBW4pe9E1Udr_VxHcHaO4lBHuPxf_7U6LndsZE8OdvugwC_hOj3kuJ_7ENJEA13dI4sdBMGcBs8fX5P7AnH8UKAqbmg6kmMqSClWrro5OGGBB8gAYi4v6LuL9VSmCwB0JHW0OLQ2tv3WwmmdSJpLbY_WiUlmbBAWsi5B3NfOhchrdniVvSysl1Q&h=5sWc28WVH1sxX1BGlPWYCTDtaJbfabHTw07t9UrP1Cs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n - \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785\",\r\n + \ \"name\": \"96099bda-205a-4c00-851f-800498f44785\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5200,7 +5225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:10 GMT + - Tue, 27 Jun 2023 04:28:50 GMT expires: - '-1' pragma: @@ -5235,11 +5260,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A10&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=PmnOi6AIqwhwUt2EVAJz1iPfJ4Imq69X1_FJEP8BBQtakc0v-SXQxo68RctiR7T8dJgQcsKdnOc9Rua2QIAvnUOEhn13-cw4IL4rsSt9b7z9NKtG6T4qtSFCBF3z-L1eP0MF2zkCxxh5M94qYWxOD6DTuNymXeYOmHl2YbgP1GmUXBZDesVrUuHV6x7MQYGQxmF0-FPNLmwURGEAl-_kwo2xk3X0OxDWAgyGXNpYeNkVYMIe8b6f8XoFpV-7D2ZFZzGY132VRX3FykYS5xfWB6oHa9Q2xZwEjhefy-6qsa0eYhdoYYL3tTxezmMV1wMLLVXk5G8SwGibFygw5rAV4g&h=2BQ3NwL0FWHBwXNsGEqYN8KaZbxQWt9VuThNzjkwB2Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A50&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fMae4N1B6Udx_ONH9UGXliv6tbBK5WczsKujC6Uq1wn4FES4-t4yy9EYuiAimK1P9AgnKERDsVQ_s6bD5f4ZawAR-HNmiOBSAlgMPHMIF6dYGx5jGbFifjx9HRzQXUuSNCSJphlKjw9XUm8GfPw3aogZ8oul0y4LBW4pe9E1Udr_VxHcHaO4lBHuPxf_7U6LndsZE8OdvugwC_hOj3kuJ_7ENJEA13dI4sdBMGcBs8fX5P7AnH8UKAqbmg6kmMqSClWrro5OGGBB8gAYi4v6LuL9VSmCwB0JHW0OLQ2tv3WwmmdSJpLbY_WiUlmbBAWsi5B3NfOhchrdniVvSysl1Q&h=5sWc28WVH1sxX1BGlPWYCTDtaJbfabHTw07t9UrP1Cs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n - \ \"name\": \"1fee73e6-4195-46a9-bfa4-03db823e1cce\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785\",\r\n + \ \"name\": \"96099bda-205a-4c00-851f-800498f44785\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5248,7 +5273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:41 GMT + - Tue, 27 Jun 2023 04:29:20 GMT expires: - '-1' pragma: @@ -5289,9 +5314,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-50-73031\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.724522S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5301,20 +5326,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:50.6269037Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1794' + - '1793' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:41 GMT + - Tue, 27 Jun 2023 04:29:21 GMT expires: - '-1' pragma: @@ -5360,7 +5385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:42 GMT + - Tue, 27 Jun 2023 04:29:21 GMT expires: - '-1' pragma: @@ -5402,7 +5427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:43 GMT + - Tue, 27 Jun 2023 04:29:22 GMT expires: - '-1' pragma: @@ -5440,17 +5465,17 @@ interactions: /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storepja53i65mrhwc","name":"storepja53i65mrhwc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-15T14:24:26.9018384Z","changedTime":"2023-06-01T08:36:22.3999273Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting/providers/Microsoft.Storage/storageAccounts/storetestmuhausman","name":"storetestmuhausman","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-16T14:04:26.199647Z","changedTime":"2023-05-16T14:14:48.0702501Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core - (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-22T01:08:23.3210529Z","changedTime":"2023-06-22T01:08:24.8527828Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:24.5090807Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:24.5090807Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-22T01:08:25.7086532Z","changedTime":"2023-06-22T01:08:26.2903722Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-22T01:08:26.1184254Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T01:08:26.1184254Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-22T01:10:19.5779943Z","changedTime":"2023-06-22T01:10:20.1522284Z","provisioningState":"Succeeded"}]}' + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:20:06.6541016Z","changedTime":"2023-06-27T04:20:08.1408673Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:20:07.8127462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:20:07.8127462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:20:09.1846485Z","changedTime":"2023-06-27T04:20:09.8127144Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:20:09.5627143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:20:09.5627143Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-27T04:22:02.6855612Z","changedTime":"2023-06-27T04:22:03.1865234Z","provisioningState":"Succeeded"}]}' headers: cache-control: - no-cache content-length: - - '148870' + - '149223' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:43 GMT + - Tue, 27 Jun 2023 04:29:22 GMT expires: - '-1' pragma: @@ -5486,9 +5511,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-10-d1336\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-50-73031\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT15.1055654S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.724522S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5498,20 +5523,20 @@ interactions: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:16:03.7963993Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:10.711736Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:50.6269037Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1794' + - '1793' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:44 GMT + - Tue, 27 Jun 2023 04:29:23 GMT expires: - '-1' pragma: @@ -5557,7 +5582,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:17:45 GMT + - Tue, 27 Jun 2023 04:29:24 GMT expires: - '-1' pragma: @@ -5605,7 +5630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:46 GMT + - Tue, 27 Jun 2023 04:29:26 GMT expires: - '-1' pragma: @@ -5649,7 +5674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:47 GMT + - Tue, 27 Jun 2023 04:29:26 GMT expires: - '-1' pragma: @@ -5717,14 +5742,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:29:27.3793176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3a17%3a48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529?api-version=2022-08-01-preview&t=2023-06-27T04%3a29%3a28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cYJkoymtlCedPYQGiseqovU9k5y16Z7MsHEosvBdXm74s8CDGCMO-79Mf3VWe8FnrIKlFWfaRj5D0GbiMMzF84WTwkDRA4GWEppO3W7dtE2HYetZCmF0qYq8ieKwOidmrHlSpsBs9A2FPNRIJldx7TG9mJlMXub5rMFEl0P2t81ncUqLz45-FFqGGIrR3iphLjX32kBW5GRimclcpl6JOt7ZRpvwwJLGRcRCnGtD2JraUud9nsjgVJQnxIvuPjVVYYDiffqVF_V6R9HnWwLvH-Gl-sS9g9C7zJlItUhr4PX9ar4-aAOGv07apV21zBZkmt131GZ2yQpjPZgW9NXxig&h=0sfkP4vemia5bTp-FPAtMXxQHfEIBgLqcIsaRveKY1o cache-control: - no-cache content-length: @@ -5732,7 +5757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:48 GMT + - Tue, 27 Jun 2023 04:29:27 GMT expires: - '-1' pragma: @@ -5765,11 +5790,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529?api-version=2022-08-01-preview&t=2023-06-27T04%3A29%3A28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cYJkoymtlCedPYQGiseqovU9k5y16Z7MsHEosvBdXm74s8CDGCMO-79Mf3VWe8FnrIKlFWfaRj5D0GbiMMzF84WTwkDRA4GWEppO3W7dtE2HYetZCmF0qYq8ieKwOidmrHlSpsBs9A2FPNRIJldx7TG9mJlMXub5rMFEl0P2t81ncUqLz45-FFqGGIrR3iphLjX32kBW5GRimclcpl6JOt7ZRpvwwJLGRcRCnGtD2JraUud9nsjgVJQnxIvuPjVVYYDiffqVF_V6R9HnWwLvH-Gl-sS9g9C7zJlItUhr4PX9ar4-aAOGv07apV21zBZkmt131GZ2yQpjPZgW9NXxig&h=0sfkP4vemia5bTp-FPAtMXxQHfEIBgLqcIsaRveKY1o response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n - \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n + \ \"name\": \"b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5778,7 +5803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:17:48 GMT + - Tue, 27 Jun 2023 04:29:27 GMT expires: - '-1' pragma: @@ -5813,11 +5838,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795?api-version=2022-08-01-preview&t=2023-06-22T01%3A17%3A48&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=EqRemhoLQNdhAl29UXA4tFAbLq5LfETiioibc5O6FK9EHilrEIa7z6RKUypEKbYcHmIikZvbyaGbEDb-TVv1NUpIaGzsHfqWtqVkzeQTAaf62u3Ihd393JXDc7D_flgIlhL0EJLGD9LwS-5y7j7V6akn1PQZJcBTq2nCADDfxYdSWQOA1L9i0MIwNNkZ8mCxDEDJbRgRTrcfspF3EnF1i4GsTVuDsYWZja69oIcs4T0a4ANwTSckwRM3v9MbEIfV0DKVBC92PQeQyeX8DKy2YL69YdWR65qzm1-Nfa9I9vA5fevFJ01qqby5QthExr_wAXGXL8FBY6YMb22XcU3O8A&h=xz0H2-Fk9UHMIcrairYQff91YdfOcMT3aJ6ZLFF_rVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529?api-version=2022-08-01-preview&t=2023-06-27T04%3A29%3A28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cYJkoymtlCedPYQGiseqovU9k5y16Z7MsHEosvBdXm74s8CDGCMO-79Mf3VWe8FnrIKlFWfaRj5D0GbiMMzF84WTwkDRA4GWEppO3W7dtE2HYetZCmF0qYq8ieKwOidmrHlSpsBs9A2FPNRIJldx7TG9mJlMXub5rMFEl0P2t81ncUqLz45-FFqGGIrR3iphLjX32kBW5GRimclcpl6JOt7ZRpvwwJLGRcRCnGtD2JraUud9nsjgVJQnxIvuPjVVYYDiffqVF_V6R9HnWwLvH-Gl-sS9g9C7zJlItUhr4PX9ar4-aAOGv07apV21zBZkmt131GZ2yQpjPZgW9NXxig&h=0sfkP4vemia5bTp-FPAtMXxQHfEIBgLqcIsaRveKY1o response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/38964017-f220-41e5-8b5c-cc52c297c795\",\r\n - \ \"name\": \"38964017-f220-41e5-8b5c-cc52c297c795\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n + \ \"name\": \"b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5826,7 +5851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:18 GMT + - Tue, 27 Jun 2023 04:29:58 GMT expires: - '-1' pragma: @@ -5867,9 +5892,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-29-27-6e74c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT20.059694S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -5881,20 +5906,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:29:27.3793176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2147' + - '2146' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:18 GMT + - Tue, 27 Jun 2023 04:29:58 GMT expires: - '-1' pragma: @@ -6031,7 +6056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:21 GMT + - Tue, 27 Jun 2023 04:30:00 GMT expires: - '-1' pragma: @@ -6066,9 +6091,9 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:50.7335245Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:29.3892657Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:17:50.7335245Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T04:29:29.3892657Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: @@ -6079,7 +6104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:21 GMT + - Tue, 27 Jun 2023 04:30:01 GMT expires: - '-1' pragma: @@ -6125,7 +6150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:22 GMT + - Tue, 27 Jun 2023 04:30:01 GMT expires: - '-1' pragma: @@ -6162,9 +6187,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-17-48-de104\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-29-27-6e74c\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT21.1760758S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT20.059694S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -6176,20 +6201,20 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:17:48.0777469Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:29:27.3793176Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2147' + - '2146' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:22 GMT + - Tue, 27 Jun 2023 04:30:02 GMT expires: - '-1' pragma: @@ -6249,13 +6274,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n + \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:30:03.1953795Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3a18%3a24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3a30%3a03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 cache-control: - no-cache content-length: @@ -6263,7 +6288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:23 GMT + - Tue, 27 Jun 2023 04:30:03 GMT expires: - '-1' pragma: @@ -6300,11 +6325,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -6313,7 +6338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:23 GMT + - Tue, 27 Jun 2023 04:30:03 GMT expires: - '-1' pragma: @@ -6348,11 +6373,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6361,7 +6386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:18:54 GMT + - Tue, 27 Jun 2023 04:30:33 GMT expires: - '-1' pragma: @@ -6396,11 +6421,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6409,7 +6434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:19:24 GMT + - Tue, 27 Jun 2023 04:31:03 GMT expires: - '-1' pragma: @@ -6444,11 +6469,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6457,7 +6482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:19:54 GMT + - Tue, 27 Jun 2023 04:31:34 GMT expires: - '-1' pragma: @@ -6492,11 +6517,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6505,7 +6530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:20:24 GMT + - Tue, 27 Jun 2023 04:32:05 GMT expires: - '-1' pragma: @@ -6540,11 +6565,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6553,7 +6578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:20:55 GMT + - Tue, 27 Jun 2023 04:32:34 GMT expires: - '-1' pragma: @@ -6588,11 +6613,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -6601,7 +6626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:26 GMT + - Tue, 27 Jun 2023 04:33:05 GMT expires: - '-1' pragma: @@ -6636,11 +6661,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9?api-version=2022-08-01-preview&t=2023-06-22T01%3A18%3A24&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=locAgsrTjPT3gY4bfa2v_7v_TZtW-VTDWiNWUE9U47qVOjABuYncuVG-DYs5Pj7kHEPJ3CU0XR7OotdgbJ06mch7LB_0ODudJS-FZfuUt0EoZI9zjs_iTUyIYqzkrW11CUoy0NNINSeJ9YGxbP_Eg67n8mfr0UAmWPzMCNe8mjAQ5mwnkAYLAYjZQ-rJfgf6E_P6j8zrKB9_rrrKsOFg60VNgrX-5Xfm2JMZS9yU48-fqUYx56-IGvTAX-_w5UJFgP55sq7rp7mo6ZkZ1XhqrW93w4m373G3WvTgoDjo69XElQ79GShbyzQR0W9l4gRgaZ46cZ8fIynIgyJcgvvt0A&h=H-9mXWgJMYxdjkw5DvXMuG2Ef3e8Oie2wzyQcC4zWsE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n - \ \"name\": \"fcd48d29-306a-41af-af77-763296bfe4a9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n + \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -6649,7 +6674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:56 GMT + - Tue, 27 Jun 2023 04:33:35 GMT expires: - '-1' pragma: @@ -6690,9 +6715,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-30-03-db54b\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M20.5906222S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6702,9 +6727,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T04:30:03.1953795Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6715,7 +6740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:56 GMT + - Tue, 27 Jun 2023 04:33:35 GMT expires: - '-1' pragma: @@ -6761,7 +6786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:57 GMT + - Tue, 27 Jun 2023 04:33:36 GMT expires: - '-1' pragma: @@ -6803,7 +6828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:57 GMT + - Tue, 27 Jun 2023 04:33:36 GMT expires: - '-1' pragma: @@ -6835,16 +6860,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-22T01:08:15Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-27T04:20:02Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '75737' + - '81798' content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:58 GMT + - Tue, 27 Jun 2023 04:33:37 GMT expires: - '-1' pragma: @@ -6881,9 +6906,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-18-23-9c41d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-30-03-db54b\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M19.4056392S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT3M20.5906222S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -6893,9 +6918,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-22T01:18:23.8095726Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T04:30:03.1953795Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -6906,7 +6931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:21:59 GMT + - Tue, 27 Jun 2023 04:33:37 GMT expires: - '-1' pragma: @@ -6934,7 +6959,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://aka.ms/BicepLatestRelease response: @@ -6948,15 +6973,15 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:02 GMT + - Tue, 27 Jun 2023 04:33:40 GMT expires: - - Thu, 22 Jun 2023 01:22:02 GMT + - Tue, 27 Jun 2023 04:33:40 GMT location: - https://downloads.bicep.azure.com/releases/latest pragma: - no-cache request-context: - - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 + - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e server: - Kestrel strict-transport-security: @@ -6976,12 +7001,12 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://downloads.bicep.azure.com/releases/latest response: body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":13,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":15,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":49,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":605,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":7926,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":253,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":992,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":1564,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":3,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":8198,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":138,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files (bicep-style parameters file). This includes support for:\r\n - support for expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - @@ -7053,17 +7078,17 @@ interactions: connection: - keep-alive content-length: - - '41660' + - '41663' content-type: - application/octet-stream date: - - Thu, 22 Jun 2023 01:22:02 GMT + - Tue, 27 Jun 2023 04:33:40 GMT etag: - - '0x8DB7236999A3CDE' + - '0x8DB75852C02DBEA' last-modified: - - Wed, 21 Jun 2023 09:05:03 GMT + - Sun, 25 Jun 2023 14:05:03 GMT x-azure-ref: - - 20230622T012202Z-sp102gyr2x4xh8kue1spgtqpa400000003bg00000000fdav + - 20230627T043340Z-sdfny0pcvh37d63pfyynd8sres000000080000000000pkqr x-cache: - TCP_HIT x-ms-blob-type: @@ -7122,13 +7147,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-22T01:17:48.0777469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n + \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:33:44.8250162Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3a22%3a08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8?api-version=2022-08-01-preview&t=2023-06-27T04%3a33%3a45&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KZw6EwNUMkp_KMXtH_qlve9p-KXikwy6rJoTCfeHRsLDrBGC1ZGFew0TPaSgYWSXbKaYm_Cucma2VJHWc7g8zNzHL9drJVv0IyWygCuLJmAkLxXToRDiT6qTai9mVwqKtq7bFHgXs5e9bgZJkGEgdGX2FuWzXKlPjaa19K-wLcooXma5OKQx-llbu54j9az-r3uaE7_SEMjJp2oaZI0KFtkUTPRoi-ewXiSejtjkR3H_Rx_QJrBKVfRlIg0LTXn9fpgSHDwayL60G47nrMHdoJmrXOcReHyOjgWIvh_lPYt3Hwoqa8QhOw_Q43RA40dwJhiO58lV-8Hj16Xmd-xqbQ&h=ARm5-1k1Jt0OpdN4blIoyG4JLRC5Ns6_DD1l-OzDENs cache-control: - no-cache content-length: @@ -7136,7 +7161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:08 GMT + - Tue, 27 Jun 2023 04:33:44 GMT expires: - '-1' pragma: @@ -7173,11 +7198,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8?api-version=2022-08-01-preview&t=2023-06-27T04%3A33%3A45&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KZw6EwNUMkp_KMXtH_qlve9p-KXikwy6rJoTCfeHRsLDrBGC1ZGFew0TPaSgYWSXbKaYm_Cucma2VJHWc7g8zNzHL9drJVv0IyWygCuLJmAkLxXToRDiT6qTai9mVwqKtq7bFHgXs5e9bgZJkGEgdGX2FuWzXKlPjaa19K-wLcooXma5OKQx-llbu54j9az-r3uaE7_SEMjJp2oaZI0KFtkUTPRoi-ewXiSejtjkR3H_Rx_QJrBKVfRlIg0LTXn9fpgSHDwayL60G47nrMHdoJmrXOcReHyOjgWIvh_lPYt3Hwoqa8QhOw_Q43RA40dwJhiO58lV-8Hj16Xmd-xqbQ&h=ARm5-1k1Jt0OpdN4blIoyG4JLRC5Ns6_DD1l-OzDENs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n - \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n + \ \"name\": \"06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -7186,7 +7211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:09 GMT + - Tue, 27 Jun 2023 04:33:44 GMT expires: - '-1' pragma: @@ -7221,11 +7246,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25?api-version=2022-08-01-preview&t=2023-06-22T01%3A22%3A08&c=MIIHHjCCBgagAwIBAgITfwFcaAzbR6d05t1RDwAEAVxoDDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwNTAzMjMxOTA3WhcNMjQwNDI3MjMxOTA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALrNAPqVrvLjwW7IkL1YjcxsKPwFapjZ_C9LHpfgy_rQh1T4PQj9dD3nHq-bIZ3gI4HOQkBfT9eHMChJGDQLx_rS_YiMzf5V8P2GypeYJhJrDpz-fdjhKibZ0_NDf7GcOQnZDwiM-jyjZEuaA2BQajpYWRId_kwSt_DumGKKKr0SI1UrY5J8yzS_h4iEnCJJB-VQrF-YboZ559ux5XR9huLNchZiTcEzjargQDz0T75LmUopfdt36wpFrsf8bv5p39v26UI7hsUITHL0koXIoCrGkzSmupX7L6AB_oSIqnhcdBTXjsBm1erPujvbMAF1NSi3sMWUt7o8UmyvhhN0gPUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRyi6-tJQbxCGOwWGNu7x2Wzd-mWTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGtG07nWvUOzBfNvS_rZxKbWjVFnjobMxO5bj2cGX-NlFPka-hmAcAsV5YShUJsVwR1yoXAzxxy9oiXD5DIURULzA6UnZSr-Sn79GGFpb8ldOzUgYAYCa-_-8Nt0j-pbCmuLxSUrxZHiJqZhwSvyaRpHjDzmAffqz1v5KwRfZ4-CTbiTELGVz-_ckndX0-r1HpcSRGHtUsD1IxolJ6ss-n-Fgx-YtDdKuSo2TbvPBGaaBeey3pxsy9k04E82hZfTmRTY5wthElPwB-XQJZZGxsoNCPpBdUFMnGJDGNT2xMn7jXK8LGYNkBwDUFkxYhCitaJMbyHY5YXIdNqD2zol5_w&s=d10MqUMwffnziPQLN_xnpWvbidr5bJC7DcJMHPrwNLkv4uYwjCDe0Bv0lXdgIXViJIE47PHOJsAlJXHh47dKI9IOnqQNyQZEv_NwqDPOUtiiPdMFsyfPX-120lUmVxTiNmltg-G2oqCykpNl07r5g2zqGRSHIN2_IQcj-oOfBwnxLvpUyFfG__mV69VMVCTFFNXMwOI0m_HUccKbNpYDZI1ZsHGbYbGdt69LRqVnR0irLmpT_w0VY6TRyg_b_ot5QqLSKRB6byF4G4PpCymMhW2iMFPgSQgUvRTDVYXBMBIu8IrQW1nYmwgHxTIAMezKxDXdeUJOXoFJXELr0o9qaA&h=obDf9sVlEHXDNQ25qgunWqQ_DXeRzmgiMcaDpq8oxVQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8?api-version=2022-08-01-preview&t=2023-06-27T04%3A33%3A45&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KZw6EwNUMkp_KMXtH_qlve9p-KXikwy6rJoTCfeHRsLDrBGC1ZGFew0TPaSgYWSXbKaYm_Cucma2VJHWc7g8zNzHL9drJVv0IyWygCuLJmAkLxXToRDiT6qTai9mVwqKtq7bFHgXs5e9bgZJkGEgdGX2FuWzXKlPjaa19K-wLcooXma5OKQx-llbu54j9az-r3uaE7_SEMjJp2oaZI0KFtkUTPRoi-ewXiSejtjkR3H_Rx_QJrBKVfRlIg0LTXn9fpgSHDwayL60G47nrMHdoJmrXOcReHyOjgWIvh_lPYt3Hwoqa8QhOw_Q43RA40dwJhiO58lV-8Hj16Xmd-xqbQ&h=ARm5-1k1Jt0OpdN4blIoyG4JLRC5Ns6_DD1l-OzDENs response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n - \ \"name\": \"259e5d93-2259-4f5c-8cc8-ac26c80b1f25\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n + \ \"name\": \"06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -7234,7 +7259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:38 GMT + - Tue, 27 Jun 2023 04:34:15 GMT expires: - '-1' pragma: @@ -7275,21 +7300,21 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-33-44-d83e0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT28.6319688S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storee76pbeua3xpga\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:33:44.8250162Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -7300,7 +7325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:39 GMT + - Tue, 27 Jun 2023 04:34:15 GMT expires: - '-1' pragma: @@ -7340,21 +7365,21 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-22-01-22-08-2347e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-33-44-d83e0\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT28.7637332S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT28.6319688S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/store3ee5yvxqfk63w\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storee76pbeua3xpga\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-22T01:17:48.0777469Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-22T01:22:08.5531001Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:33:44.8250162Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -7365,7 +7390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 Jun 2023 01:22:39 GMT + - Tue, 27 Jun 2023 04:34:16 GMT expires: - '-1' pragma: @@ -7411,7 +7436,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:40 GMT + - Tue, 27 Jun 2023 04:34:17 GMT expires: - '-1' pragma: @@ -7455,11 +7480,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:43 GMT + - Tue, 27 Jun 2023 04:34:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7487,7 +7512,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7497,11 +7522,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:43 GMT + - Tue, 27 Jun 2023 04:34:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7527,7 +7552,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7537,11 +7562,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:22:59 GMT + - Tue, 27 Jun 2023 04:34:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7567,7 +7592,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7577,11 +7602,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:14 GMT + - Tue, 27 Jun 2023 04:34:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7607,7 +7632,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7617,11 +7642,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:29 GMT + - Tue, 27 Jun 2023 04:35:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7647,7 +7672,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7657,11 +7682,11 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:44 GMT + - Tue, 27 Jun 2023 04:35:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7687,7 +7712,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw4MDdEMEYwQzk0MjA5NEFBLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7697,7 +7722,7 @@ interactions: content-length: - '0' date: - - Thu, 22 Jun 2023 01:23:59 GMT + - Tue, 27 Jun 2023 04:35:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml index c580d27ba03..77f05db0059 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_resource_group.yaml @@ -12,10 +12,9 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -31,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:09 GMT + - Tue, 27 Jun 2023 04:03:41 GMT expires: - '-1' pragma: @@ -46,14 +45,14 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, "parameters": {"foo": {"value": "abc"}, "bar": {"value": "xyz"}}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + {"resources": "delete", "resourceGroups": "delete"}, "denySettings": {"applyToChildScopes": false}}}' headers: Accept: @@ -65,44 +64,44 @@ interactions: Connection: - keep-alive Content-Length: - - '725' + - '737' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:03:42.705534Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:03:42.705534Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d8d88a1-9aef-43e4-9410-24e7c8442328?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6bb78034-02d9-4ac1-b64d-cd3af6649d38?api-version=2022-08-01-preview&t=2023-06-27T04%3a03%3a42&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=aYAn47XlQQNlLJlw0Mp09WGAIJ7HRU3ZR-hT63PsoIOdYE859fxE9FFg1IxI_9S8-DW1Cm0mFboNbx28KheeCI_jRneyi9YV1SjQ6AK2nxF4lC1PKlhKuKqnLAp9owO0Nal1ss4k_E7WFhPNCAQlbNXKXhjvXhMzxSIJ3i9vbqqtTIPfwQKXhUcHJ8S_3G6wyf_5U885JUNKIkanYTJRDxaW-jYU-zXjJ5kALarMmw7Cd6O7LAARWKjsYvhA3h04s38tQ4t3DOtLMNVKz_C6XbiUM1UWaE_nPH7Z7vwHHG7HweVWYDB7RMriM4g5WGxnKybcUOoGXLWHO6vK6jy93g&h=W7cZRyzGd9PURu8C9UfHENwL8niZQlglck54QyMZ3LE cache-control: - no-cache content-length: - - '1154' + - '1221' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:09 GMT + - Tue, 27 Jun 2023 04:03:42 GMT expires: - '-1' pragma: @@ -131,16 +130,63 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6bb78034-02d9-4ac1-b64d-cd3af6649d38?api-version=2022-08-01-preview&t=2023-06-27T04%3A03%3A42&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=aYAn47XlQQNlLJlw0Mp09WGAIJ7HRU3ZR-hT63PsoIOdYE859fxE9FFg1IxI_9S8-DW1Cm0mFboNbx28KheeCI_jRneyi9YV1SjQ6AK2nxF4lC1PKlhKuKqnLAp9owO0Nal1ss4k_E7WFhPNCAQlbNXKXhjvXhMzxSIJ3i9vbqqtTIPfwQKXhUcHJ8S_3G6wyf_5U885JUNKIkanYTJRDxaW-jYU-zXjJ5kALarMmw7Cd6O7LAARWKjsYvhA3h04s38tQ4t3DOtLMNVKz_C6XbiUM1UWaE_nPH7Z7vwHHG7HweVWYDB7RMriM4g5WGxnKybcUOoGXLWHO6vK6jy93g&h=W7cZRyzGd9PURu8C9UfHENwL8niZQlglck54QyMZ3LE + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6bb78034-02d9-4ac1-b64d-cd3af6649d38\",\r\n + \ \"name\": \"6bb78034-02d9-4ac1-b64d-cd3af6649d38\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:03:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --parameters + --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d8d88a1-9aef-43e4-9410-24e7c8442328?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6bb78034-02d9-4ac1-b64d-cd3af6649d38?api-version=2022-08-01-preview&t=2023-06-27T04%3A03%3A42&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=aYAn47XlQQNlLJlw0Mp09WGAIJ7HRU3ZR-hT63PsoIOdYE859fxE9FFg1IxI_9S8-DW1Cm0mFboNbx28KheeCI_jRneyi9YV1SjQ6AK2nxF4lC1PKlhKuKqnLAp9owO0Nal1ss4k_E7WFhPNCAQlbNXKXhjvXhMzxSIJ3i9vbqqtTIPfwQKXhUcHJ8S_3G6wyf_5U885JUNKIkanYTJRDxaW-jYU-zXjJ5kALarMmw7Cd6O7LAARWKjsYvhA3h04s38tQ4t3DOtLMNVKz_C6XbiUM1UWaE_nPH7Z7vwHHG7HweVWYDB7RMriM4g5WGxnKybcUOoGXLWHO6vK6jy93g&h=W7cZRyzGd9PURu8C9UfHENwL8niZQlglck54QyMZ3LE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d8d88a1-9aef-43e4-9410-24e7c8442328\",\r\n - \ \"name\": \"5d8d88a1-9aef-43e4-9410-24e7c8442328\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6bb78034-02d9-4ac1-b64d-cd3af6649d38\",\r\n + \ \"name\": \"6bb78034-02d9-4ac1-b64d-cd3af6649d38\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -149,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:27 GMT + - Tue, 27 Jun 2023 04:04:13 GMT expires: - '-1' pragma: @@ -180,41 +226,41 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-10-f8182\",\r\n - \ \"duration\": \"PT6.4147086S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-03-42-a6b4c\",\r\n + \ \"duration\": \"PT6.783978S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:03:42.705534Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:03:42.705534Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1660' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:27 GMT + - Tue, 27 Jun 2023 04:04:13 GMT expires: - '-1' pragma: @@ -246,39 +292,39 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-10-f8182\",\r\n - \ \"duration\": \"PT6.4147086S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-03-42-a6b4c\",\r\n + \ \"duration\": \"PT6.783978S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:03:42.705534Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:03:42.705534Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1660' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:28 GMT + - Tue, 27 Jun 2023 04:04:14 GMT expires: - '-1' pragma: @@ -310,39 +356,39 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-10-f8182\",\r\n - \ \"duration\": \"PT6.4147086S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-03-42-a6b4c\",\r\n + \ \"duration\": \"PT6.783978S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:10.3328572Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:10.3328572Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:03:42.705534Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:03:42.705534Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1594' + - '1660' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:29 GMT + - Tue, 27 Jun 2023 04:04:14 GMT expires: - '-1' pragma: @@ -376,8 +422,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -389,7 +434,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:48:29 GMT + - Tue, 27 Jun 2023 04:04:15 GMT expires: - '-1' pragma: @@ -419,36 +464,33 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: "{\r\n \"value\": []\r\n}" + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '19' + - '12' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:30 GMT + - Tue, 27 Jun 2023 04:04:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - 32044acb-e16a-4969-a645-1fe50e6caea5 status: code: 200 message: OK @@ -467,8 +509,7 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -484,7 +525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:30 GMT + - Tue, 27 Jun 2023 04:04:16 GMT expires: - '-1' pragma: @@ -499,7 +540,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": @@ -518,44 +559,44 @@ interactions: Connection: - keep-alive Content-Length: - - '725' + - '737' Content-Type: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:04:17.3124903Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:17.3124903Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bed908e5-2879-49bf-951b-97eb2a5a9f83?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d38ffba3-9200-4433-92f7-bb0758c23b5c?api-version=2022-08-01-preview&t=2023-06-27T04%3a04%3a17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wjsUCg-L_C33c9Q10PkZrh3eeafEM880Db38CzBoqZLjqr9yWZror4gThj8R5vfY8QOTrrzAcrYjw6-Vhm17ji6Kc4E2v4Euqrft8ITDFiOTdcB6tXbpjYPuaLadJNJ4A6BgUGVDyl38v-yYt9x6EPDKw9u4KB7aUYOegkuZWHJsCJ93lX51-4-YQZffNk04Boou15RkP9jr6au2Hqdz1rL8prTeT8bJjCjsZZY-_EiB9k-yFqoZxChmD7jpcuAVnjiklxLJywprhQOcP3Jnf52EAB73ANCzC8eAxzK7fLojNqchBbYI0ZK_zqpzWMowMm2AbsrWWqYjUpuz_iunHQ&h=PfU5r7ruau31Zex6SJuKNNzvxUY9V9gmBDOHfgqePOQ cache-control: - no-cache content-length: - - '1152' + - '1223' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:31 GMT + - Tue, 27 Jun 2023 04:04:17 GMT expires: - '-1' pragma: @@ -586,14 +627,61 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d38ffba3-9200-4433-92f7-bb0758c23b5c?api-version=2022-08-01-preview&t=2023-06-27T04%3A04%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wjsUCg-L_C33c9Q10PkZrh3eeafEM880Db38CzBoqZLjqr9yWZror4gThj8R5vfY8QOTrrzAcrYjw6-Vhm17ji6Kc4E2v4Euqrft8ITDFiOTdcB6tXbpjYPuaLadJNJ4A6BgUGVDyl38v-yYt9x6EPDKw9u4KB7aUYOegkuZWHJsCJ93lX51-4-YQZffNk04Boou15RkP9jr6au2Hqdz1rL8prTeT8bJjCjsZZY-_EiB9k-yFqoZxChmD7jpcuAVnjiklxLJywprhQOcP3Jnf52EAB73ANCzC8eAxzK7fLojNqchBbYI0ZK_zqpzWMowMm2AbsrWWqYjUpuz_iunHQ&h=PfU5r7ruau31Zex6SJuKNNzvxUY9V9gmBDOHfgqePOQ + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d38ffba3-9200-4433-92f7-bb0758c23b5c\",\r\n + \ \"name\": \"d38ffba3-9200-4433-92f7-bb0758c23b5c\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:04:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bed908e5-2879-49bf-951b-97eb2a5a9f83?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d38ffba3-9200-4433-92f7-bb0758c23b5c?api-version=2022-08-01-preview&t=2023-06-27T04%3A04%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=wjsUCg-L_C33c9Q10PkZrh3eeafEM880Db38CzBoqZLjqr9yWZror4gThj8R5vfY8QOTrrzAcrYjw6-Vhm17ji6Kc4E2v4Euqrft8ITDFiOTdcB6tXbpjYPuaLadJNJ4A6BgUGVDyl38v-yYt9x6EPDKw9u4KB7aUYOegkuZWHJsCJ93lX51-4-YQZffNk04Boou15RkP9jr6au2Hqdz1rL8prTeT8bJjCjsZZY-_EiB9k-yFqoZxChmD7jpcuAVnjiklxLJywprhQOcP3Jnf52EAB73ANCzC8eAxzK7fLojNqchBbYI0ZK_zqpzWMowMm2AbsrWWqYjUpuz_iunHQ&h=PfU5r7ruau31Zex6SJuKNNzvxUY9V9gmBDOHfgqePOQ response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bed908e5-2879-49bf-951b-97eb2a5a9f83\",\r\n - \ \"name\": \"bed908e5-2879-49bf-951b-97eb2a5a9f83\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d38ffba3-9200-4433-92f7-bb0758c23b5c\",\r\n + \ \"name\": \"d38ffba3-9200-4433-92f7-bb0758c23b5c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -602,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:49 GMT + - Tue, 27 Jun 2023 04:04:48 GMT expires: - '-1' pragma: @@ -635,39 +723,39 @@ interactions: - --name --resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-31-d79da\",\r\n - \ \"duration\": \"PT5.8623782S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-04-17-b095e\",\r\n + \ \"duration\": \"PT4.5782169S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:04:17.3124903Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:17.3124903Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1592' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:49 GMT + - Tue, 27 Jun 2023 04:04:48 GMT expires: - '-1' pragma: @@ -699,39 +787,39 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-31-d79da\",\r\n - \ \"duration\": \"PT5.8623782S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-04-17-b095e\",\r\n + \ \"duration\": \"PT4.5782169S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:04:17.3124903Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:17.3124903Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1592' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:50 GMT + - Tue, 27 Jun 2023 04:04:49 GMT expires: - '-1' pragma: @@ -763,39 +851,39 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-31-d79da\",\r\n - \ \"duration\": \"PT5.8623782S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-04-17-b095e\",\r\n + \ \"duration\": \"PT4.5782169S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:31.729533Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:31.729533Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:04:17.3124903Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:17.3124903Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1592' + - '1663' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:51 GMT + - Tue, 27 Jun 2023 04:04:49 GMT expires: - '-1' pragma: @@ -829,8 +917,7 @@ interactions: ParameterSetName: - --id --resource-group --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -842,7 +929,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:48:51 GMT + - Tue, 27 Jun 2023 04:04:50 GMT expires: - '-1' pragma: @@ -854,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -872,36 +959,33 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks?api-version=2022-08-01-preview response: body: - string: "{\r\n \"value\": []\r\n}" + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '19' + - '12' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:51 GMT + - Tue, 27 Jun 2023 04:04:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - 035e8544-7880-42da-9c74-78511d80b45b status: code: 200 message: OK @@ -923,8 +1007,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -938,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:53 GMT + - Tue, 27 Jun 2023 04:04:51 GMT expires: - '-1' pragma: @@ -966,8 +1049,7 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -983,7 +1065,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:54 GMT + - Tue, 27 Jun 2023 04:04:53 GMT expires: - '-1' pragma: @@ -998,7 +1080,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -1026,42 +1108,42 @@ interactions: Connection: - keep-alive Content-Length: - - '1500' + - '1512' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:48:54.8664181Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:54.8664181Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:04:53.9766336Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:53.9766336Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9bca0555-636a-44b6-9866-f7fd419c8a86?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e166fd71-8104-4452-91e1-107fe3189478?api-version=2022-08-01-preview&t=2023-06-27T04%3a04%3a54&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=kMHmUlYpDqw6wf-KjZSLBMZTBrKJNcXsIBZz-vDSDkYUi1lp7LskfOmDIbHQqmNL-UxJpNJlqcPX8vCxbFXuSk4tIhsvSwwh6qxjUlxtCFra6cbSI1tC1tEiLQlqEmIYbmt09boRS4UKDCSgZVXCgv6aDwnvzyM92q2oheXOAtD2ZW6QieZ6UB6OGbQM23z5bB2surHez8e2-mb28l-KZifvfSwUv9wc16yl5Ut5OZJ1kFoAEIwkHGec8IMXkeQl8bYWKYdiLNwohLLSMKDDP5cH7eVOW_pT6MhWgfUhv4Z8jufkWiXYGAWh4qs83hhuVpMl653HQO55ISFLkY8o8A&h=8BoXayrdKBFi8Jm9ZaAEslAeaahnDetXe6YHjZYMc98 cache-control: - no-cache content-length: - - '1142' + - '1184' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:48:54 GMT + - Tue, 27 Jun 2023 04:04:53 GMT expires: - '-1' pragma: @@ -1091,14 +1173,60 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e166fd71-8104-4452-91e1-107fe3189478?api-version=2022-08-01-preview&t=2023-06-27T04%3A04%3A54&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=kMHmUlYpDqw6wf-KjZSLBMZTBrKJNcXsIBZz-vDSDkYUi1lp7LskfOmDIbHQqmNL-UxJpNJlqcPX8vCxbFXuSk4tIhsvSwwh6qxjUlxtCFra6cbSI1tC1tEiLQlqEmIYbmt09boRS4UKDCSgZVXCgv6aDwnvzyM92q2oheXOAtD2ZW6QieZ6UB6OGbQM23z5bB2surHez8e2-mb28l-KZifvfSwUv9wc16yl5Ut5OZJ1kFoAEIwkHGec8IMXkeQl8bYWKYdiLNwohLLSMKDDP5cH7eVOW_pT6MhWgfUhv4Z8jufkWiXYGAWh4qs83hhuVpMl653HQO55ISFLkY8o8A&h=8BoXayrdKBFi8Jm9ZaAEslAeaahnDetXe6YHjZYMc98 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e166fd71-8104-4452-91e1-107fe3189478\",\r\n + \ \"name\": \"e166fd71-8104-4452-91e1-107fe3189478\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:04:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --deny-settings-mode --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9bca0555-636a-44b6-9866-f7fd419c8a86?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e166fd71-8104-4452-91e1-107fe3189478?api-version=2022-08-01-preview&t=2023-06-27T04%3A04%3A54&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=kMHmUlYpDqw6wf-KjZSLBMZTBrKJNcXsIBZz-vDSDkYUi1lp7LskfOmDIbHQqmNL-UxJpNJlqcPX8vCxbFXuSk4tIhsvSwwh6qxjUlxtCFra6cbSI1tC1tEiLQlqEmIYbmt09boRS4UKDCSgZVXCgv6aDwnvzyM92q2oheXOAtD2ZW6QieZ6UB6OGbQM23z5bB2surHez8e2-mb28l-KZifvfSwUv9wc16yl5Ut5OZJ1kFoAEIwkHGec8IMXkeQl8bYWKYdiLNwohLLSMKDDP5cH7eVOW_pT6MhWgfUhv4Z8jufkWiXYGAWh4qs83hhuVpMl653HQO55ISFLkY8o8A&h=8BoXayrdKBFi8Jm9ZaAEslAeaahnDetXe6YHjZYMc98 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9bca0555-636a-44b6-9866-f7fd419c8a86\",\r\n - \ \"name\": \"9bca0555-636a-44b6-9866-f7fd419c8a86\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e166fd71-8104-4452-91e1-107fe3189478\",\r\n + \ \"name\": \"e166fd71-8104-4452-91e1-107fe3189478\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1107,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:11 GMT + - Tue, 27 Jun 2023 04:05:24 GMT expires: - '-1' pragma: @@ -1139,39 +1267,40 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-54-73ebc\",\r\n - \ \"duration\": \"PT5.7454278S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-04-54-85b2c\",\r\n + \ \"duration\": \"PT4.5271147S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:54.8664181Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:04:53.9766336Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:54.8664181Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:53.9766336Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1997' + - '2039' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:12 GMT + - Tue, 27 Jun 2023 04:05:24 GMT expires: - '-1' pragma: @@ -1203,39 +1332,40 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-48-54-73ebc\",\r\n - \ \"duration\": \"PT5.7454278S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-04-54-85b2c\",\r\n + \ \"duration\": \"PT4.5271147S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:54.8664181Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:04:53.9766336Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:54.8664181Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:53.9766336Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1997' + - '2039' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:13 GMT + - Tue, 27 Jun 2023 04:05:25 GMT expires: - '-1' pragma: @@ -1269,8 +1399,7 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1282,7 +1411,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:49:13 GMT + - Tue, 27 Jun 2023 04:05:26 GMT expires: - '-1' pragma: @@ -1312,8 +1441,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -1346,39 +1474,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -1386,7 +1517,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -1394,25 +1526,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:15 GMT + - Tue, 27 Jun 2023 04:05:28 GMT expires: - '-1' pragma: @@ -1440,8 +1574,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: @@ -1449,9 +1582,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:48:56.4783398Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:04:55.5006984Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:48:56.8846722Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:04:55.8756902Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -1462,7 +1595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:16 GMT + - Tue, 27 Jun 2023 04:05:29 GMT expires: - '-1' pragma: @@ -1494,8 +1627,7 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -1511,7 +1643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:16 GMT + - Tue, 27 Jun 2023 04:05:29 GMT expires: - '-1' pragma: @@ -1526,7 +1658,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, @@ -1554,42 +1686,42 @@ interactions: Connection: - keep-alive Content-Length: - - '1500' + - '1512' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:49:17.1161764Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:49:17.1161764Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:05:30.1469591Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:05:30.1469591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6a9b4b00-b3df-45d0-9a65-8d45f365cdac?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f37fe3d0-de46-4599-816f-b8b126710f7d?api-version=2022-08-01-preview&t=2023-06-27T04%3a05%3a30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=iN5DNK0EbcwsDvC-nFcIfdQXXQ3dMprhuRuqjuLwyy7XXij8GHxMKc8vVNvYMEhIl2PJCdBWd2RtTUXoB-MUk7amVqgMQhB1wUjU7tGtuNUkCGVl7ze1CgeputLC4tt_V48gdoKdqJmyYZo_FLbi8ryoY5y7FxS7oECm7vhT-DfMv01HDEbDQGrhjRnJjX-OBOPD7TlKxeNZ_228G3_EzcgDDbkBFnGRxpKYvU6GKPDX9oSjYj6pX0mE7EuMrKrBH4QilCt-Se6aZcI_P9dPWzwvq1f0Ns-2EmcNeuPlXBw8JQKwz6RVuy8KUYiqhLn4SSCbAqe1IxMoHwbuiDufDw&h=RwPVnGGhB1QDoNxaRATXS4F-Br-fPRDGBeqDX5rdxWI cache-control: - no-cache content-length: - - '1142' + - '1184' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:17 GMT + - Tue, 27 Jun 2023 04:05:30 GMT expires: - '-1' pragma: @@ -1619,14 +1751,60 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f37fe3d0-de46-4599-816f-b8b126710f7d?api-version=2022-08-01-preview&t=2023-06-27T04%3A05%3A30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=iN5DNK0EbcwsDvC-nFcIfdQXXQ3dMprhuRuqjuLwyy7XXij8GHxMKc8vVNvYMEhIl2PJCdBWd2RtTUXoB-MUk7amVqgMQhB1wUjU7tGtuNUkCGVl7ze1CgeputLC4tt_V48gdoKdqJmyYZo_FLbi8ryoY5y7FxS7oECm7vhT-DfMv01HDEbDQGrhjRnJjX-OBOPD7TlKxeNZ_228G3_EzcgDDbkBFnGRxpKYvU6GKPDX9oSjYj6pX0mE7EuMrKrBH4QilCt-Se6aZcI_P9dPWzwvq1f0Ns-2EmcNeuPlXBw8JQKwz6RVuy8KUYiqhLn4SSCbAqe1IxMoHwbuiDufDw&h=RwPVnGGhB1QDoNxaRATXS4F-Br-fPRDGBeqDX5rdxWI + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f37fe3d0-de46-4599-816f-b8b126710f7d\",\r\n + \ \"name\": \"f37fe3d0-de46-4599-816f-b8b126710f7d\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:05:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file --deny-settings-mode --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6a9b4b00-b3df-45d0-9a65-8d45f365cdac?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f37fe3d0-de46-4599-816f-b8b126710f7d?api-version=2022-08-01-preview&t=2023-06-27T04%3A05%3A30&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=iN5DNK0EbcwsDvC-nFcIfdQXXQ3dMprhuRuqjuLwyy7XXij8GHxMKc8vVNvYMEhIl2PJCdBWd2RtTUXoB-MUk7amVqgMQhB1wUjU7tGtuNUkCGVl7ze1CgeputLC4tt_V48gdoKdqJmyYZo_FLbi8ryoY5y7FxS7oECm7vhT-DfMv01HDEbDQGrhjRnJjX-OBOPD7TlKxeNZ_228G3_EzcgDDbkBFnGRxpKYvU6GKPDX9oSjYj6pX0mE7EuMrKrBH4QilCt-Se6aZcI_P9dPWzwvq1f0Ns-2EmcNeuPlXBw8JQKwz6RVuy8KUYiqhLn4SSCbAqe1IxMoHwbuiDufDw&h=RwPVnGGhB1QDoNxaRATXS4F-Br-fPRDGBeqDX5rdxWI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6a9b4b00-b3df-45d0-9a65-8d45f365cdac\",\r\n - \ \"name\": \"6a9b4b00-b3df-45d0-9a65-8d45f365cdac\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f37fe3d0-de46-4599-816f-b8b126710f7d\",\r\n + \ \"name\": \"f37fe3d0-de46-4599-816f-b8b126710f7d\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1635,7 +1813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:34 GMT + - Tue, 27 Jun 2023 04:06:00 GMT expires: - '-1' pragma: @@ -1667,39 +1845,40 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-49-17-ac0c4\",\r\n - \ \"duration\": \"PT10.9769922S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-05-30-73c6b\",\r\n + \ \"duration\": \"PT6.592568S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:49:17.1161764Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:05:30.1469591Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:49:17.1161764Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:05:30.1469591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1998' + - '2038' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:34 GMT + - Tue, 27 Jun 2023 04:06:00 GMT expires: - '-1' pragma: @@ -1731,39 +1910,40 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-49-17-ac0c4\",\r\n - \ \"duration\": \"PT10.9769922S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-05-30-73c6b\",\r\n + \ \"duration\": \"PT6.592568S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:49:17.1161764Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:05:30.1469591Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:49:17.1161764Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:05:30.1469591Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1998' + - '2038' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:35 GMT + - Tue, 27 Jun 2023 04:06:01 GMT expires: - '-1' pragma: @@ -1797,8 +1977,7 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1806,13 +1985,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3a06%3a02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM cache-control: - no-cache content-length: - '0' date: - - Mon, 17 Apr 2023 15:49:35 GMT + - Tue, 27 Jun 2023 04:06:02 GMT expires: - '-1' pragma: @@ -1842,14 +2021,13 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A06%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n - \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n + \ \"name\": \"6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1858,7 +2036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:49:53 GMT + - Tue, 27 Jun 2023 04:06:02 GMT expires: - '-1' pragma: @@ -1890,14 +2068,13 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A06%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n - \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n + \ \"name\": \"6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1906,7 +2083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:50:23 GMT + - Tue, 27 Jun 2023 04:06:33 GMT expires: - '-1' pragma: @@ -1938,14 +2115,13 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A06%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n - \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n + \ \"name\": \"6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1954,7 +2130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:50:53 GMT + - Tue, 27 Jun 2023 04:07:03 GMT expires: - '-1' pragma: @@ -1986,14 +2162,13 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A06%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n - \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n + \ \"name\": \"6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -2002,7 +2177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:51:23 GMT + - Tue, 27 Jun 2023 04:07:33 GMT expires: - '-1' pragma: @@ -2034,23 +2209,22 @@ interactions: ParameterSetName: - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A06%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n - \ \"name\": \"ece8ed22-0e16-40ec-8d9b-c4744c5b5696\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n + \ \"name\": \"6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:51:54 GMT + - Tue, 27 Jun 2023 04:08:03 GMT expires: - '-1' pragma: @@ -2072,49 +2246,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack group delete Connection: - keep-alive + ParameterSetName: + - -g --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A06%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YpGdzPBx5pSw2huFrHakKA7Zllas2un1SS34T7xZQFVim3dJgtJuqlP3DRAOb7iv4gxr0xhr_ISkPk5bVN7zwLb8-sRhWoPlzGbvFF_SE0s_MsSs7xIbE1tnf-GlqfSQoZm2UFqWW_g4jog8CYvyEulk_KPrVRD_g4L1rCBCxsFNB8CggVtFSVbHf-ntfqPDZajN7a-2xMq_aktzQLJFuCfljrJVcFqNC9gzI5YgT-vR-SQdA8AHsNC6gHrEPcQzHqs8HJEbTdt0m6qNXB3lAoDVGUeXwcPm2nFo65St30n8uCDTURjsvxCcMvP4TK4rSAtgfWvYngtrLUjE_brWhQ&h=UTsQdNl1DBwSMVQ_7gCvgb9sWO86jD_I-43V4OadIrM response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory - Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working - Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU - Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage - - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my - key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-17T15:48:56.4177515Z","changedTime":"2023-04-17T15:48:56.6189671Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:48:56.4783398Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:48:56.4783398Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-17T15:48:56.8638112Z","changedTime":"2023-04-17T15:48:56.9940449Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:48:56.8846722Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:48:56.8846722Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNj6M4EP0vOe%2fBkI%2fdHqkPa6A6MImJDWUIN4LTHQihWwnp0BnNf5%2fyKFllpb3twTJ2Vb1675n6Meq2Q7%2bou%2f1p9O3HaFue%2bvPJHX0bbb%2bic5HvWJrBV%2bnqr7B5r7NxX4Wd%2bqTzOffCGa0j7tsg7qYHwSZTqbmLwWmyRrPYoO4lgp9gNF6lrMFWzpaJQNwvZ8t03SRaZHETNgnqVdysHZHiEDrgq%2bZ9ErJCyusHL9wWNhq4xNYTAfCkrS6EyQu262h%2fTw49xQQv6M7uSQaDGPOr7SszTXcAxAlihLmam94wwsCQWYwEQSf4Ptl05h98Sb1KRzSSRRG6ha3vkhcbj7hsikv1AvMsg%2bMDvk998%2b28GErClgxai017vNbGTdwnqr3z0zxlOM6IW9HBmPIi2SjbI5Jp6G6yp%2bGRHyKMta%2bExCGtLHZmwsLuB%2bOV2eAriks8Has93d38sfzJyZwwczn%2brf%2fGHzo5%2fjgp1juW380%2fj75XBkPS0%2b5i8veB%2f2qT60UaWIw7f8HltfhEHIjTg7%2boIMvJo31xfeDvbYhrmbb2nXiaGSWRtDLNrf4yADobII3csB7kHubbwDzW0z0cMXviypdusiePNCcswbExj%2f3J%2f3aq3eLLYt35KwaBylvyqjoW7O24tNru%2frmGl0EU0Zsq4ugZ5niFO9SP9WsGK4ViTjlewSL4rUGTfnRoKe%2b7a%2bA7E8TP8BRtPOpk6lRhPdB8RLvNwbR2PrbOpd5k7X1WLgKXg0r3kyVDJ07BE%2b2lXoDNgcltnm45LY9RjmO%2fBaUv9WvumLBjz6M%2fRuX51B%2fLti7tpP7PMc0ynJa5sL%2fBf46pSESEznq2rEWk8K%2bZaJDGNGgQxUvcvDWq5X68h0Rco4Whp6Wn6JLg7TPLI27tLBGaFdG3EqsDnAtXV2Hz8WfuRX2ZTe03rb8deQWI07erSnG6xNAlK042Z53v%2fp2DwVT51SRGDRR%2fetWsfpXPz6OfP38B"}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n + \ \"name\": \"6d465310-4603-440f-b446-32c5ec3ee2be\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '110707' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:51:57 GMT + - Tue, 27 Jun 2023 04:08:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -2126,7 +2293,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2134,22 +2301,29 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNj6M4EP0vOe/BkI/dHqkPa6A6MImJDWUIN4LTHQihWwnp0BnNf5/yKFllpb3twTJ2Vb1675n6Meq2Q7%2Bou/1p9O3HaFue%2BvPJHX0bbb%2Bic5HvWJrBV%2Bnqr7B5r7NxX4Wd%2BqTzOffCGa0j7tsg7qYHwSZTqbmLwWmyRrPYoO4lgp9gNF6lrMFWzpaJQNwvZ8t03SRaZHETNgnqVdysHZHiEDrgq%2BZ9ErJCyusHL9wWNhq4xNYTAfCkrS6EyQu262h/Tw49xQQv6M7uSQaDGPOr7SszTXcAxAlihLmam94wwsCQWYwEQSf4Ptl05h98Sb1KRzSSRRG6ha3vkhcbj7hsikv1AvMsg%2BMDvk998%2B28GErClgxai017vNbGTdwnqr3z0zxlOM6IW9HBmPIi2SjbI5Jp6G6yp%2BGRHyKMta%2BExCGtLHZmwsLuB%2BOV2eAriks8Has93d38sfzJyZwwczn%2Brf/GHzo5/jgp1juW380/j75XBkPS0%2B5i8veB/2qT60UaWIw7f8HltfhEHIjTg7%2BoIMvJo31xfeDvbYhrmbb2nXiaGSWRtDLNrf4yADobII3csB7kHubbwDzW0z0cMXviypdusiePNCcswbExj/3J/3aq3eLLYt35KwaBylvyqjoW7O24tNru/rmGl0EU0Zsq4ugZ5niFO9SP9WsGK4ViTjlewSL4rUGTfnRoKe%2B7a%2BA7E8TP8BRtPOpk6lRhPdB8RLvNwbR2PrbOpd5k7X1WLgKXg0r3kyVDJ07BE%2B2lXoDNgcltnm45LY9RjmO/BaUv9WvumLBjz6M/RuX51B/Lti7tpP7PMc0ynJa5sL/Bf46pSESEznq2rEWk8K%2BZaJDGNGgQxUvcvDWq5X68h0Rco4Whp6Wn6JLg7TPLI27tLBGaFdG3EqsDnAtXV2Hz8WfuRX2ZTe03rb8deQWI07erSnG6xNAlK042Z53v/p2DwVT51SRGDRR/etWsfpXPz6OfP38B + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' - headers: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2023-05-22T22:02:46.9870949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-20T04:10:15.1676505Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:04:55.4672278Z","changedTime":"2023-06-27T04:04:55.6100316Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:04:55.5006984Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:04:55.5006984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:04:55.8459336Z","changedTime":"2023-06-27T04:04:55.9850581Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:04:55.8756902Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:04:55.8756902Z"}}]}' + headers: cache-control: - no-cache content-length: - - '4342' + - '148843' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:51:58 GMT + - Tue, 27 Jun 2023 04:08:34 GMT expires: - '-1' pragma: @@ -2179,8 +2353,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -2192,11 +2365,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:52:00 GMT + - Tue, 27 Jun 2023 04:08:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2204,7 +2377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -2222,10 +2395,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2235,11 +2407,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:52:15 GMT + - Tue, 27 Jun 2023 04:08:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2263,10 +2435,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2276,11 +2447,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:52:31 GMT + - Tue, 27 Jun 2023 04:08:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2304,10 +2475,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2317,11 +2487,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:52:46 GMT + - Tue, 27 Jun 2023 04:09:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2345,10 +2515,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2358,11 +2527,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:53:01 GMT + - Tue, 27 Jun 2023 04:09:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2386,10 +2555,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2399,7 +2567,47 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:53:16 GMT + - Tue, 27 Jun 2023 04:09:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:09:54 GMT expires: - '-1' pragma: @@ -2429,8 +2637,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -2444,7 +2651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:53:18 GMT + - Tue, 27 Jun 2023 04:09:56 GMT expires: - '-1' pragma: @@ -2472,8 +2679,7 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -2489,7 +2695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:53:19 GMT + - Tue, 27 Jun 2023 04:09:57 GMT expires: - '-1' pragma: @@ -2504,7 +2710,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", @@ -2532,43 +2738,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1564' + - '1576' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:53:20.5386798Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:53:20.5386798Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n },\r\n + \ \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n + \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:09:58.1778359Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:09:58.1778359Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/305068bf-12e3-4060-a6e3-839ce8f51737?api-version=2022-08-01-preview&t=2023-06-27T04%3a09%3a58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HIzZXTvH1JyW-kRY6wtlkfENmBcIy2RL02MiYuOZbGoCMC1DF9FHlhR_VbSor5j51VABAutGg_NV39Ir_yc8GR6EXClzIwVU5jr3OPdbkfn9AOPlftlXOweQ6vpgkq-ch1prHhbjNVdZq0bsXoJrnoez2-faTdr-ZhFpMBiWAk2EsSdswYH5WlweOsmnvhWT8eexgzIURfSSJa8AIq05fyU5lJ2aBGMZqac4w_JadHzjDbz5eSDtzprPx0cSRJ5GzO6Eef4WH_i9DHq8_Hfgk-6mltXwv6a7Lt-bVcRSgqbyO-5iQkyiQdJZWYraNPeKaNobnKg-S4OnYMZ83uek9A&h=wmaUzJcCOa0ACtzuuqJKR6znoZMNJrT-giRKpVHp7bA cache-control: - no-cache content-length: - - '1222' + - '1291' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:53:19 GMT + - Tue, 27 Jun 2023 04:09:57 GMT expires: - '-1' pragma: @@ -2598,23 +2805,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/305068bf-12e3-4060-a6e3-839ce8f51737?api-version=2022-08-01-preview&t=2023-06-27T04%3A09%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HIzZXTvH1JyW-kRY6wtlkfENmBcIy2RL02MiYuOZbGoCMC1DF9FHlhR_VbSor5j51VABAutGg_NV39Ir_yc8GR6EXClzIwVU5jr3OPdbkfn9AOPlftlXOweQ6vpgkq-ch1prHhbjNVdZq0bsXoJrnoez2-faTdr-ZhFpMBiWAk2EsSdswYH5WlweOsmnvhWT8eexgzIURfSSJa8AIq05fyU5lJ2aBGMZqac4w_JadHzjDbz5eSDtzprPx0cSRJ5GzO6Eef4WH_i9DHq8_Hfgk-6mltXwv6a7Lt-bVcRSgqbyO-5iQkyiQdJZWYraNPeKaNobnKg-S4OnYMZ83uek9A&h=wmaUzJcCOa0ACtzuuqJKR6znoZMNJrT-giRKpVHp7bA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n - \ \"name\": \"924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/305068bf-12e3-4060-a6e3-839ce8f51737\",\r\n + \ \"name\": \"305068bf-12e3-4060-a6e3-839ce8f51737\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:53:37 GMT + - Tue, 27 Jun 2023 04:09:58 GMT expires: - '-1' pragma: @@ -2646,14 +2852,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/305068bf-12e3-4060-a6e3-839ce8f51737?api-version=2022-08-01-preview&t=2023-06-27T04%3A09%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HIzZXTvH1JyW-kRY6wtlkfENmBcIy2RL02MiYuOZbGoCMC1DF9FHlhR_VbSor5j51VABAutGg_NV39Ir_yc8GR6EXClzIwVU5jr3OPdbkfn9AOPlftlXOweQ6vpgkq-ch1prHhbjNVdZq0bsXoJrnoez2-faTdr-ZhFpMBiWAk2EsSdswYH5WlweOsmnvhWT8eexgzIURfSSJa8AIq05fyU5lJ2aBGMZqac4w_JadHzjDbz5eSDtzprPx0cSRJ5GzO6Eef4WH_i9DHq8_Hfgk-6mltXwv6a7Lt-bVcRSgqbyO-5iQkyiQdJZWYraNPeKaNobnKg-S4OnYMZ83uek9A&h=wmaUzJcCOa0ACtzuuqJKR6znoZMNJrT-giRKpVHp7bA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n - \ \"name\": \"924ac237-cf78-432d-9904-e0fe36fc7c8f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/305068bf-12e3-4060-a6e3-839ce8f51737\",\r\n + \ \"name\": \"305068bf-12e3-4060-a6e3-839ce8f51737\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2662,7 +2867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:08 GMT + - Tue, 27 Jun 2023 04:10:28 GMT expires: - '-1' pragma: @@ -2694,40 +2899,41 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-53-20-d491d\",\r\n - \ \"duration\": \"PT21.0956709S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-09-58-98848\",\r\n + \ \"duration\": \"PT29.6377697S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:53:20.5386798Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:09:58.1778359Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:53:20.5386798Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:09:58.1778359Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1977' + - '2046' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:08 GMT + - Tue, 27 Jun 2023 04:10:28 GMT expires: - '-1' pragma: @@ -2759,8 +2965,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -2774,7 +2979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:09 GMT + - Tue, 27 Jun 2023 04:10:29 GMT expires: - '-1' pragma: @@ -2802,65 +3007,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-17T15:53:22.6900586Z","changedTime":"2023-04-17T15:53:22.9653121Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-17T15:53:22.7153242Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-17T15:53:22.7153242Z"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000006%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX%2fnlZqJkWq9rYHlb66X7%2f3pP4x6rZDvzh0x8vo84%2fRtrr014s%2f%2bjza3tKrKfek0OxW%2beqWNM8HPe7rpJOvuL%2bWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ%2fYdzs%2f5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW%2f3E5lqz8wN%2bhHXL7dwMFWILwlqHjXO2VtbP%2fRnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2bOPzpZImYpxr%2f1v%2fNnnRi%2fXCTpPcfv3b8Q1ysLCepp9xn6%2b8B%2ftSnVoogdxgd%2fTsXdvAIMyOnBX5BMl%2bjR0dwf%2bIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2bRI8URSxOobGP9dH%2fNlC%2buTmsD%2f6SsFiWLXpVnw3ZnZdO24d%2fvqVVnKb4phI5hpZ4ofGHw2M%2b%2fqeVBD7HmNCQlP3WoFA%2feDhk%2bM237BvhyM%2fSAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC%2fqpPD4GL2W%2fZ3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2bj9bVWsIqpK7r%2fCfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu%2fpwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2bOjlOblH7Sor3Tg1ji%2beuLOWFbs7rKAYAmJ%2f25jvy73f8dAHMionmSgGGLMvity%2bC6%2bfBn9%2fPkL"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:10:00.4334635Z","changedTime":"2023-06-27T04:10:00.5368688Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:10:00.4587294Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:10:00.4587294Z"}}]}' headers: cache-control: - no-cache content-length: - - '2017' + - '670' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX/nlZqJkWq9rYHlb66X7/3pP4x6rZDvzh0x8vo84/Rtrr014s/%2Bjza3tKrKfek0OxW%2BeqWNM8HPe7rpJOvuL%2BWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ/Ydzs/5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW/3E5lqz8wN%2BhHXL7dwMFWILwlqHjXO2VtbP/RnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2BOPzpZImYpxr/1v/NnnRi/XCTpPcfv3b8Q1ysLCepp9xn6%2B8B/tSnVoogdxgd/TsXdvAIMyOnBX5BMl%2BjR0dwf%2BIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2BRI8URSxOobGP9dH/NlC%2BuTmsD/6SsFiWLXpVnw3ZnZdO24d/vqVVnKb4phI5hpZ4ofGHw2M%2B/qeVBD7HmNCQlP3WoFA/eDhk%2BM237BvhyM/SAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC/qpPD4GL2W/Z3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2Bj9bVWsIqpK7r/CfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu/pwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2BOjlOblH7Sor3Tg1ji%2BeuLOWFbs7rKAYAmJ/25jvy73f8dAHMionmSgGGLMvity%2BC6%2BfBn9/PkL - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 17 Apr 2023 15:54:11 GMT + - Tue, 27 Jun 2023 04:10:29 GMT expires: - '-1' pragma: @@ -2888,8 +3049,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -2903,7 +3063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:11 GMT + - Tue, 27 Jun 2023 04:10:29 GMT expires: - '-1' pragma: @@ -2931,40 +3091,41 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-53-20-d491d\",\r\n - \ \"duration\": \"PT21.0956709S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-09-58-98848\",\r\n + \ \"duration\": \"PT29.6377697S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:53:20.5386798Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:09:58.1778359Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:53:20.5386798Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:09:58.1778359Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1977' + - '2046' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:12 GMT + - Tue, 27 Jun 2023 04:10:30 GMT expires: - '-1' pragma: @@ -2998,8 +3159,7 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: @@ -3007,13 +3167,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3a10%3a31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM cache-control: - no-cache content-length: - '0' date: - - Mon, 17 Apr 2023 15:54:13 GMT + - Tue, 27 Jun 2023 04:10:31 GMT expires: - '-1' pragma: @@ -3025,7 +3185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3043,14 +3203,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -3059,7 +3218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:54:30 GMT + - Tue, 27 Jun 2023 04:10:31 GMT expires: - '-1' pragma: @@ -3091,14 +3250,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -3107,7 +3265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:55:00 GMT + - Tue, 27 Jun 2023 04:11:01 GMT expires: - '-1' pragma: @@ -3139,14 +3297,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -3155,7 +3312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:55:30 GMT + - Tue, 27 Jun 2023 04:11:31 GMT expires: - '-1' pragma: @@ -3187,14 +3344,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -3203,7 +3359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:56:00 GMT + - Tue, 27 Jun 2023 04:12:01 GMT expires: - '-1' pragma: @@ -3235,14 +3391,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -3251,7 +3406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:56:30 GMT + - Tue, 27 Jun 2023 04:12:33 GMT expires: - '-1' pragma: @@ -3283,14 +3438,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -3299,7 +3453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:00 GMT + - Tue, 27 Jun 2023 04:13:03 GMT expires: - '-1' pragma: @@ -3331,23 +3485,22 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n - \ \"name\": \"5fbc0b1e-b29c-44aa-8d83-15f7e2fae200\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '259' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:31 GMT + - Tue, 27 Jun 2023 04:13:33 GMT expires: - '-1' pragma: @@ -3369,38 +3522,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack group delete Connection: - keep-alive ParameterSetName: - - -g + - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A10%3A31&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=SH5AHPnn2j9eHRVnDSeoW_weOssOCwGT4qqQ3rVM93FPff3UVFFHKK7BR5FYwKT2Y4bHYW768sRmalUn9loufaCcO7wl1DVnu64Bsdgda-gVUn9OS7gOtvbBb1o8b9HXsIiZpLz0g3Rot2_oEji-eWitJP37b_uHSh6coajIgXN_W4Q9vGhZv6t-aVsDSmBwsbbCS19ar1WhDJJNaRVl03ly4CW2cVu0gr8PFZL48LX8GvaIOnJwog_Sy3MdFzqu9hGlc_oi4Y1SmzYYsySQEOkOL88_vt51fuX75I708MxaIiv-fvhJR68PYWinAfcf7OhXQsm8hsx2qRVKKrbiuw&h=eYBEY8wd0o1uH5J0VL_cIeaWkkLE5Rn3pD9oGvb1jqM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/340176d2-92a7-481d-8910-a1a095b54603\",\r\n + \ \"name\": \"340176d2-92a7-481d-8910-a1a095b54603\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '260' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:32 GMT + - Tue, 27 Jun 2023 04:14:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -3422,22 +3579,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000006%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX%2fnlZqJkWq9rYHlb66X7%2f3pP4x6rZDvzh0x8vo84%2fRtrr014s%2f%2bjza3tKrKfek0OxW%2beqWNM8HPe7rpJOvuL%2bWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ%2fYdzs%2f5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW%2f3E5lqz8wN%2bhHXL7dwMFWILwlqHjXO2VtbP%2fRnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2bOPzpZImYpxr%2f1v%2fNnnRi%2fXCTpPcfv3b8Q1ysLCepp9xn6%2b8B%2ftSnVoogdxgd%2fTsXdvAIMyOnBX5BMl%2bjR0dwf%2bIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2bRI8URSxOobGP9dH%2fNlC%2buTmsD%2f6SsFiWLXpVnw3ZnZdO24d%2fvqVVnKb4phI5hpZ4ofGHw2M%2b%2fqeVBD7HmNCQlP3WoFA%2feDhk%2bM237BvhyM%2fSAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC%2fqpPD4GL2W%2fZ3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2bj9bVWsIqpK7r%2fCfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu%2fpwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2bOjlOblH7Sor3Tg1ji%2beuLOWFbs7rKAYAmJ%2f25jvy73f8dAHMionmSgGGLMvity%2bC6%2bfBn9%2fPkL"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1359' + - '288' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:34 GMT + - Tue, 27 Jun 2023 04:14:04 GMT expires: - '-1' pragma: @@ -3455,7 +3611,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3465,10 +3621,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVNNk9o4EP0vnHOQDWaXVOUQ2dZgB2QkuyWjm7EIYIxnCsyMIZX/nlZqJkWq9rYHlb66X7/3pP4x6rZDvzh0x8vo84/Rtrr014s/%2Bjza3tKrKfek0OxW%2BeqWNM8HPe7rpJOvuL%2BWYTLFcYZjG2ddcOJkEghFfYgvkzXYxQZUL4BFOaTjVUEaaMV0mXOA43K6LNZNrrjOmqTJQa2yZu3xAobEY5FsnicJMULcX6jxW7ZRjApoQx4zmrf1G2JSQ/Ydzs/5qcc7Tg2euTnXbOBjend1hVZ4xhhyYhmwuZzb3hLEgIQ4jByYyuF5sunsH3yBtSqPN4KkKfjG5Xf5k7tPqWjMW/3E5lqz8wN%2BhHXL7dwMFWILwlqHjXO2VtbP/RnmfvBTtCAw1sjNdGyMcalopKuRiiLxN3o2PPIDYGMVSS5gKGqHrW1i3HyyYaWHSOK9gMu5PuLZuz%2BOPzpZImYpxr/1v/NnnRi/XCTpPcfv3b8Q1ysLCepp9xn6%2B8B/tSnVoogdxgd/TsXdvAIMyOnBX5BMl%2BjR0dwf%2BIcb5FoVrXsnWmgrBaBWoqjTX8UM95ahRmpJz8SRzbexfczHc3YGPaMyEn5%2BRI8URSxOobGP9dH/NlC%2BuTmsD/6SsFiWLXpVnw3ZnZdO24d/vqVVnKb4phI5hpZ4ofGHw2M%2B/qeVBD7HmNCQlP3WoFA/eDhk%2BM237BvhyM/SAtx92qG2ThRkhj1xKcP0ttZBZ9TbIeuwZ07ey6bFNY5lpKIlQJBFnPHiOOC/qpPD4GL2W/Z3jCjamN93gQSFfefNyjydjT6NquulP1ftoXLd%2Bj9bVWsIqpK7r/CfrcpznoK3ni4PPJXw75Q3gK0aNwD8KWt2jWxplB1Zzu/pwuLz4nN0ebx71WVKnaUVsGaFNixQWn1iV%2BOjlOblH7Sor3Tg1ji%2BeuLOWFbs7rKAYAmJ/25jvy73f8dAHMionmSgGGLMvity%2BC6%2BfBn9/PkL + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: string: '{"value":[]}' @@ -3480,7 +3635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:36 GMT + - Tue, 27 Jun 2023 04:14:04 GMT expires: - '-1' pragma: @@ -3506,23 +3661,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:48:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_delete_deployment_stack_resource_group","date":"2023-06-27T04:03:37Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '55598' + - '81290' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:36 GMT + - Tue, 27 Jun 2023 04:14:04 GMT expires: - '-1' pragma: @@ -3552,8 +3706,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -3565,11 +3718,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:57:38 GMT + - Tue, 27 Jun 2023 04:14:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -3595,10 +3748,49 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:14:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3608,7 +3800,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 15:57:53 GMT + - Tue, 27 Jun 2023 04:14:23 GMT expires: - '-1' pragma: @@ -3638,8 +3830,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -3653,7 +3844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:55 GMT + - Tue, 27 Jun 2023 04:14:24 GMT expires: - '-1' pragma: @@ -3681,8 +3872,7 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: @@ -3698,7 +3888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:56 GMT + - Tue, 27 Jun 2023 04:14:25 GMT expires: - '-1' pragma: @@ -3713,7 +3903,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/deployments", @@ -3738,42 +3928,42 @@ interactions: Connection: - keep-alive Content-Length: - - '1330' + - '1342' Content-Type: - application/json ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n - \ \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n - \ \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-17T15:57:56.8202112Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:57:56.8202112Z\"\r\n + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:14:26.3900616Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:14:26.3900616Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9c4dcf2-f239-4c39-a1f1-d8c4233eb932?api-version=2022-08-01-preview&t=2023-06-27T04%3a14%3a26&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=X5ht1bjcTlkAfvQiSSU-Fe1HRVbpg4VFRojEXypfvxV3wg631H3dML3wHkBqpiJ9d-zknPqIcqXvhKlTZVghh14UkPmCuJd1tlXkGc16hwEguvkOzpzz8gdyhKFyvoQK-kdxSdaq_sWGXXck7_2jRbLH1ZEdrS-a6NauzxkofM1wdq2Lya2D4eIvLlG_mUSHMXypvqDLBD81b1itHrK2G-4jIUjkFRw5JOSZdaTguXiMp4CpJsi58-O49UmNnOg8nUGbRY2zjXPLZm-s-lSqdWK8Drzms4bDtlZCcRezJygUHpPHXAfc4zkntgzMbqwEH8Z8t7UkAbkTF9YZgAcIpQ&h=mr43VzfWI8eT15Y59daEJ32zjJp4rE--RUloAmd_rzM cache-control: - no-cache content-length: - - '1144' + - '1186' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:57:56 GMT + - Tue, 27 Jun 2023 04:14:25 GMT expires: - '-1' pragma: @@ -3785,7 +3975,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -3803,23 +3993,22 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9c4dcf2-f239-4c39-a1f1-d8c4233eb932?api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A26&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=X5ht1bjcTlkAfvQiSSU-Fe1HRVbpg4VFRojEXypfvxV3wg631H3dML3wHkBqpiJ9d-zknPqIcqXvhKlTZVghh14UkPmCuJd1tlXkGc16hwEguvkOzpzz8gdyhKFyvoQK-kdxSdaq_sWGXXck7_2jRbLH1ZEdrS-a6NauzxkofM1wdq2Lya2D4eIvLlG_mUSHMXypvqDLBD81b1itHrK2G-4jIUjkFRw5JOSZdaTguXiMp4CpJsi58-O49UmNnOg8nUGbRY2zjXPLZm-s-lSqdWK8Drzms4bDtlZCcRezJygUHpPHXAfc4zkntgzMbqwEH8Z8t7UkAbkTF9YZgAcIpQ&h=mr43VzfWI8eT15Y59daEJ32zjJp4rE--RUloAmd_rzM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n - \ \"name\": \"3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9c4dcf2-f239-4c39-a1f1-d8c4233eb932\",\r\n + \ \"name\": \"c9c4dcf2-f239-4c39-a1f1-d8c4233eb932\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:58:13 GMT + - Tue, 27 Jun 2023 04:14:26 GMT expires: - '-1' pragma: @@ -3851,14 +4040,13 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9c4dcf2-f239-4c39-a1f1-d8c4233eb932?api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A26&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=X5ht1bjcTlkAfvQiSSU-Fe1HRVbpg4VFRojEXypfvxV3wg631H3dML3wHkBqpiJ9d-zknPqIcqXvhKlTZVghh14UkPmCuJd1tlXkGc16hwEguvkOzpzz8gdyhKFyvoQK-kdxSdaq_sWGXXck7_2jRbLH1ZEdrS-a6NauzxkofM1wdq2Lya2D4eIvLlG_mUSHMXypvqDLBD81b1itHrK2G-4jIUjkFRw5JOSZdaTguXiMp4CpJsi58-O49UmNnOg8nUGbRY2zjXPLZm-s-lSqdWK8Drzms4bDtlZCcRezJygUHpPHXAfc4zkntgzMbqwEH8Z8t7UkAbkTF9YZgAcIpQ&h=mr43VzfWI8eT15Y59daEJ32zjJp4rE--RUloAmd_rzM response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n - \ \"name\": \"3782c9d7-c95e-4413-9aac-96e715d8970f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9c4dcf2-f239-4c39-a1f1-d8c4233eb932\",\r\n + \ \"name\": \"c9c4dcf2-f239-4c39-a1f1-d8c4233eb932\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3867,7 +4055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:58:43 GMT + - Tue, 27 Jun 2023 04:14:57 GMT expires: - '-1' pragma: @@ -3899,37 +4087,38 @@ interactions: ParameterSetName: - --name -g --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-57-56-ce69a\",\r\n - \ \"duration\": \"PT20.3221336S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-14-26-012d5\",\r\n + \ \"duration\": \"PT19.2396389S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:57:56.8202112Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:14:26.3900616Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:57:56.8202112Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:14:26.3900616Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1616' + - '1658' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:58:43 GMT + - Tue, 27 Jun 2023 04:14:57 GMT expires: - '-1' pragma: @@ -3961,8 +4150,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: @@ -3976,7 +4164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:58:45 GMT + - Tue, 27 Jun 2023 04:14:58 GMT expires: - '-1' pragma: @@ -4004,37 +4192,38 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": - \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": - \"detach\"\r\n },\r\n \"deploymentId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-04-17-15-57-56-ce69a\",\r\n - \ \"duration\": \"PT20.3221336S\",\r\n \"denySettings\": {\r\n \"mode\": + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-resou-2023-06-27-04-14-26-012d5\",\r\n + \ \"duration\": \"PT19.2396389S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-17T15:57:56.8202112Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:14:26.3900616Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-17T15:57:56.8202112Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:14:26.3900616Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1616' + - '1658' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:58:45 GMT + - Tue, 27 Jun 2023 04:14:58 GMT expires: - '-1' pragma: @@ -4068,8 +4257,7 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-resource-group000002?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: @@ -4077,13 +4265,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3a14%3a59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE cache-control: - no-cache content-length: - '0' date: - - Mon, 17 Apr 2023 15:58:45 GMT + - Tue, 27 Jun 2023 04:14:58 GMT expires: - '-1' pragma: @@ -4113,14 +4301,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n - \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710\",\r\n + \ \"name\": \"284b72d2-0422-4694-a816-5c45a651b710\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4129,7 +4316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:59:02 GMT + - Tue, 27 Jun 2023 04:14:58 GMT expires: - '-1' pragma: @@ -4161,14 +4348,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n - \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710\",\r\n + \ \"name\": \"284b72d2-0422-4694-a816-5c45a651b710\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4177,7 +4363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 15:59:34 GMT + - Tue, 27 Jun 2023 04:15:29 GMT expires: - '-1' pragma: @@ -4209,14 +4395,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n - \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710\",\r\n + \ \"name\": \"284b72d2-0422-4694-a816-5c45a651b710\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4225,7 +4410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 16:00:04 GMT + - Tue, 27 Jun 2023 04:15:59 GMT expires: - '-1' pragma: @@ -4257,14 +4442,13 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n - \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710\",\r\n + \ \"name\": \"284b72d2-0422-4694-a816-5c45a651b710\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4273,7 +4457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 16:00:34 GMT + - Tue, 27 Jun 2023 04:16:30 GMT expires: - '-1' pragma: @@ -4305,14 +4489,60 @@ interactions: ParameterSetName: - --name -g --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n - \ \"name\": \"85eb343f-1f5c-4ad0-ab10-7016a7f60387\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710\",\r\n + \ \"name\": \"284b72d2-0422-4694-a816-5c45a651b710\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:17:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name -g --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A14%3A59&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vv6cqhTr5nKXery_6nEONEYjYIX0HFPmpYaJlUSpevq8kJVguuZV0h0Wx_OSAuTia5iedjYlfeso7QbnI35o9hs2v_Wv2U2wQPclvETgsZGUaZkB4vNfCtSYg-ga-4yKOAbqozNmnrTDVitAAe_M6pRWgzhwHUfYhxu4PvgUftiUk_lN6iEERx7yRjVMCmC16_nTswZTXssMLZoHmux2zZc5zPVaoaIxO-OtJrv2p3h-6T1VaIt_DmUQQh6ZV6bbtqPM2eR7ZhPeemyzsjwVmz9HTB4bLcfysYwxQVWY57cU1sOP4WWHceXOEAVflhcnTMvLw16FNVHzAW_JFRwU8A&h=2EfjSNfKxy9yGZL2TXshOLmbchKYMjdwI57UXn79rXE + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/284b72d2-0422-4694-a816-5c45a651b710\",\r\n + \ \"name\": \"284b72d2-0422-4694-a816-5c45a651b710\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4321,7 +4551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 16:01:04 GMT + - Tue, 27 Jun 2023 04:17:31 GMT expires: - '-1' pragma: @@ -4351,23 +4581,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-17T15:48:12Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_delete_deployment_stack_resource_group","date":"2023-06-27T04:03:37Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '55598' + - '81290' content-type: - application/json; charset=utf-8 date: - - Mon, 17 Apr 2023 16:01:04 GMT + - Tue, 27 Jun 2023 04:17:31 GMT expires: - '-1' pragma: @@ -4397,8 +4626,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -4410,11 +4638,11 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 16:01:07 GMT + - Tue, 27 Jun 2023 04:17:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4440,10 +4668,209 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:17:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:17:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:18:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:18:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:18:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDExOTM2MEU4NDAzMDUxLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxBMzBCREFBMTAxRkMxMDA2LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4453,7 +4880,7 @@ interactions: content-length: - '0' date: - - Mon, 17 Apr 2023 16:01:22 GMT + - Tue, 27 Jun 2023 04:18:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml index 645af223737..82427c9df82 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_deployment_stack_subscription.yaml @@ -13,8 +13,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -29,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:17 GMT + - Tue, 27 Jun 2023 04:37:56 GMT expires: - '-1' pragma: @@ -70,8 +69,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -82,26 +80,27 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T17:10:18.3216951Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:37:57.4498402Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:37:57.4498402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69f689b8-4b48-4645-bcfe-d384e09f7ac0?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/090f6cd2-d99c-4681-b19e-c5286a254512?api-version=2022-08-01-preview&t=2023-06-27T04%3a37%3a57&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=I9Gc4y1923TuQB5OMJ97NIO0hVrMwN6dgjh0f4vGFEe-uPdHuuKitiK_3o8LcR4L9fjJEWTbUna-z7YNUAlBV0vM7dk9fVHAMgm2IWw5S-_9Xf6Ia69mEwZMfDd440Kju5An2rMr9q1TCcKQ-qNuw_7h1n5SHu6S8NXkLPm8sQHKJ8zOhUvvEyV9-X-x3KJDt6D5-ReHCrJFWzaoyNWrtE0bo02NsOl0R6bOypTo3oHbyJEfPnVtTKuao0RGLjcC97n7Rm-DoM5gfOBCe2R67EqDPGHAVvgLH4HX0KiLG5WlOJlq8EKe6jpVY4vaLfCsTDwck8PEF4qzJDr1Gspu3g&h=jL_8uoweufA5U7ZHe0Q7GSWZfRhjsdpRpy6LUduxJs4 cache-control: - no-cache content-length: - - '1222' + - '1276' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:18 GMT + - Tue, 27 Jun 2023 04:37:57 GMT expires: - '-1' pragma: @@ -131,14 +130,60 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/090f6cd2-d99c-4681-b19e-c5286a254512?api-version=2022-08-01-preview&t=2023-06-27T04%3A37%3A57&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=I9Gc4y1923TuQB5OMJ97NIO0hVrMwN6dgjh0f4vGFEe-uPdHuuKitiK_3o8LcR4L9fjJEWTbUna-z7YNUAlBV0vM7dk9fVHAMgm2IWw5S-_9Xf6Ia69mEwZMfDd440Kju5An2rMr9q1TCcKQ-qNuw_7h1n5SHu6S8NXkLPm8sQHKJ8zOhUvvEyV9-X-x3KJDt6D5-ReHCrJFWzaoyNWrtE0bo02NsOl0R6bOypTo3oHbyJEfPnVtTKuao0RGLjcC97n7Rm-DoM5gfOBCe2R67EqDPGHAVvgLH4HX0KiLG5WlOJlq8EKe6jpVY4vaLfCsTDwck8PEF4qzJDr1Gspu3g&h=jL_8uoweufA5U7ZHe0Q7GSWZfRhjsdpRpy6LUduxJs4 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/090f6cd2-d99c-4681-b19e-c5286a254512\",\r\n + \ \"name\": \"090f6cd2-d99c-4681-b19e-c5286a254512\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:37:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69f689b8-4b48-4645-bcfe-d384e09f7ac0?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/090f6cd2-d99c-4681-b19e-c5286a254512?api-version=2022-08-01-preview&t=2023-06-27T04%3A37%3A57&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=I9Gc4y1923TuQB5OMJ97NIO0hVrMwN6dgjh0f4vGFEe-uPdHuuKitiK_3o8LcR4L9fjJEWTbUna-z7YNUAlBV0vM7dk9fVHAMgm2IWw5S-_9Xf6Ia69mEwZMfDd440Kju5An2rMr9q1TCcKQ-qNuw_7h1n5SHu6S8NXkLPm8sQHKJ8zOhUvvEyV9-X-x3KJDt6D5-ReHCrJFWzaoyNWrtE0bo02NsOl0R6bOypTo3oHbyJEfPnVtTKuao0RGLjcC97n7Rm-DoM5gfOBCe2R67EqDPGHAVvgLH4HX0KiLG5WlOJlq8EKe6jpVY4vaLfCsTDwck8PEF4qzJDr1Gspu3g&h=jL_8uoweufA5U7ZHe0Q7GSWZfRhjsdpRpy6LUduxJs4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/69f689b8-4b48-4645-bcfe-d384e09f7ac0\",\r\n - \ \"name\": \"69f689b8-4b48-4645-bcfe-d384e09f7ac0\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/090f6cd2-d99c-4681-b19e-c5286a254512\",\r\n + \ \"name\": \"090f6cd2-d99c-4681-b19e-c5286a254512\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -147,7 +192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:35 GMT + - Tue, 27 Jun 2023 04:38:28 GMT expires: - '-1' pragma: @@ -179,8 +224,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -188,32 +232,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-18-fa61f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-37-57-72a46\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.086159S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7119671S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:18.3216951Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:37:57.4498402Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:37:57.4498402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1668' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:35 GMT + - Tue, 27 Jun 2023 04:38:28 GMT expires: - '-1' pragma: @@ -245,8 +289,7 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -254,32 +297,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-18-fa61f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-37-57-72a46\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.086159S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7119671S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:18.3216951Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:37:57.4498402Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:37:57.4498402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1668' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:37 GMT + - Tue, 27 Jun 2023 04:38:29 GMT expires: - '-1' pragma: @@ -311,8 +354,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -320,32 +362,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-18-fa61f\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-37-57-72a46\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.086159S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7119671S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:18.3216951Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:18.3216951Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:37:57.4498402Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:37:57.4498402Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1613' + - '1668' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:37 GMT + - Tue, 27 Jun 2023 04:38:30 GMT expires: - '-1' pragma: @@ -379,8 +421,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -392,7 +433,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:10:37 GMT + - Tue, 27 Jun 2023 04:38:31 GMT expires: - '-1' pragma: @@ -422,8 +463,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -438,7 +478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:38 GMT + - Tue, 27 Jun 2023 04:38:31 GMT expires: - '-1' pragma: @@ -479,8 +519,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -491,26 +530,27 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"foo\": {\r\n \"value\": - \"abc\"\r\n },\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-04-14T17:10:39.2113839Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:39.2113839Z\"\r\n + \"abc\",\r\n \"type\": \"string\"\r\n },\r\n \"bar\": {\r\n + \ \"value\": \"xyz\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:38:31.8812469Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:38:31.8812469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30ca88f7-c256-4574-af7a-98be5e8d54a1?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f8f3438-f009-4640-bea5-edc58505b2a7?api-version=2022-08-01-preview&t=2023-06-27T04%3a38%3a32&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qxXxrRuliCIPyXpgCYbbwAmfvqwhI7eWQrLRxifHT3aqW2ZXSf8iBtm7S3Fbc9WCDNSDF8CCVdbJOVnvpF6XnSXEgSfn2p5ltPrw4e9T3uHmnRX95vxWHm_mONUkDkzsNmoLkj3lHfIxnznc54Cr3snZh43j7b-WzssSxucqxkdkNrmvTshoABT6xhPJiMu3koOLlnW7R2pQglqhvWrkUauYDIqTONYvf5G7w6nurWnhBJgZ6BTCKUoaD-74t-7UwdBq2VK2lC7SKc63bJ4X1wdq8WkmhZSNaJDPt46-XzD0Ezg8lp2mIj7ErtVYJVxnQ1tMZtDtyzKYLx9M7hHs3Q&h=zZiM8aGJWQSEucLccq--G3GcHoJ5dLIaeQmPG0sQ1kY cache-control: - no-cache content-length: - - '1222' + - '1276' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:39 GMT + - Tue, 27 Jun 2023 04:38:31 GMT expires: - '-1' pragma: @@ -540,14 +580,60 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f8f3438-f009-4640-bea5-edc58505b2a7?api-version=2022-08-01-preview&t=2023-06-27T04%3A38%3A32&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qxXxrRuliCIPyXpgCYbbwAmfvqwhI7eWQrLRxifHT3aqW2ZXSf8iBtm7S3Fbc9WCDNSDF8CCVdbJOVnvpF6XnSXEgSfn2p5ltPrw4e9T3uHmnRX95vxWHm_mONUkDkzsNmoLkj3lHfIxnznc54Cr3snZh43j7b-WzssSxucqxkdkNrmvTshoABT6xhPJiMu3koOLlnW7R2pQglqhvWrkUauYDIqTONYvf5G7w6nurWnhBJgZ6BTCKUoaD-74t-7UwdBq2VK2lC7SKc63bJ4X1wdq8WkmhZSNaJDPt46-XzD0Ezg8lp2mIj7ErtVYJVxnQ1tMZtDtyzKYLx9M7hHs3Q&h=zZiM8aGJWQSEucLccq--G3GcHoJ5dLIaeQmPG0sQ1kY + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f8f3438-f009-4640-bea5-edc58505b2a7\",\r\n + \ \"name\": \"0f8f3438-f009-4640-bea5-edc58505b2a7\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:38:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30ca88f7-c256-4574-af7a-98be5e8d54a1?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f8f3438-f009-4640-bea5-edc58505b2a7?api-version=2022-08-01-preview&t=2023-06-27T04%3A38%3A32&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=qxXxrRuliCIPyXpgCYbbwAmfvqwhI7eWQrLRxifHT3aqW2ZXSf8iBtm7S3Fbc9WCDNSDF8CCVdbJOVnvpF6XnSXEgSfn2p5ltPrw4e9T3uHmnRX95vxWHm_mONUkDkzsNmoLkj3lHfIxnznc54Cr3snZh43j7b-WzssSxucqxkdkNrmvTshoABT6xhPJiMu3koOLlnW7R2pQglqhvWrkUauYDIqTONYvf5G7w6nurWnhBJgZ6BTCKUoaD-74t-7UwdBq2VK2lC7SKc63bJ4X1wdq8WkmhZSNaJDPt46-XzD0Ezg8lp2mIj7ErtVYJVxnQ1tMZtDtyzKYLx9M7hHs3Q&h=zZiM8aGJWQSEucLccq--G3GcHoJ5dLIaeQmPG0sQ1kY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/30ca88f7-c256-4574-af7a-98be5e8d54a1\",\r\n - \ \"name\": \"30ca88f7-c256-4574-af7a-98be5e8d54a1\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/0f8f3438-f009-4640-bea5-edc58505b2a7\",\r\n + \ \"name\": \"0f8f3438-f009-4640-bea5-edc58505b2a7\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -556,7 +642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:57 GMT + - Tue, 27 Jun 2023 04:39:02 GMT expires: - '-1' pragma: @@ -588,8 +674,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -597,32 +682,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-39-90065\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-38-32-a9efd\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.7940454S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7861442S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:39.2113839Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:39.2113839Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:38:31.8812469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:38:31.8812469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1614' + - '1668' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:57 GMT + - Tue, 27 Jun 2023 04:39:03 GMT expires: - '-1' pragma: @@ -654,8 +739,7 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -663,32 +747,32 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-10-39-90065\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-38-32-a9efd\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.7940454S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.7861442S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \ \"value\": \"xyz\"\r\n }\r\n },\r\n \"parameters\": {\r\n - \ \"foo\": {\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": - {\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:10:39.2113839Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:10:39.2113839Z\"\r\n + \ \"foo\": {\r\n \"value\": \"abc\",\r\n \"type\": \"string\"\r\n + \ },\r\n \"bar\": {\r\n \"value\": \"xyz\",\r\n \"type\": + \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T04:38:31.8812469Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:38:31.8812469Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1614' + - '1668' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:10:58 GMT + - Tue, 27 Jun 2023 04:39:03 GMT expires: - '-1' pragma: @@ -722,8 +806,7 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -735,7 +818,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:10:59 GMT + - Tue, 27 Jun 2023 04:39:04 GMT expires: - '-1' pragma: @@ -769,8 +852,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -784,7 +866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:00 GMT + - Tue, 27 Jun 2023 04:39:05 GMT expires: - '-1' pragma: @@ -813,8 +895,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -829,7 +910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:00 GMT + - Tue, 27 Jun 2023 04:39:05 GMT expires: - '-1' pragma: @@ -881,8 +962,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -893,26 +973,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000002\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:01.2071485Z\",\r\n + \"cli-test-resource-one000002\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:07.2183139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:01.2071485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:07.2183139Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9cec6c88-54d9-4a65-9e06-fa86b0e20f21?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9be81fce-6e44-42d9-9be3-245e9265d439?api-version=2022-08-01-preview&t=2023-06-27T04%3a39%3a07&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rJINpUbT6z_4KlJ1BHtR0z1vN_wJ955GWl4XHrUoVUK8LAL9tF-hksSXadt-Na3hEyd5WVLGeB5AJbkBoSgqQeLyFwdtWwJJuwfodp8SSyDYxnB06ip9DOiAMN86AHs1AhHlIpuhG_ZJW8v0tv90wkG7sFa783ygt1b0s_BEMEQigD7ujM-76_rgOiYvdNQam9XBNByZuOMkmXbqNDFX37gHx2gnVwk06V5fQVdjo7D9unP12IR2KkpZwUjaGpToy0WU7B6wIX2U-jcZYJkcSh4K6YIkn5r_65YZakQYuh39Nw3BNtV1PnRRU-t96Mzq-2dOLdH6kEfAfzC5GqIs_g&h=664cyaZsffTqRqLXKLCoOMz-_MWFEY-JlsCn9t96azA cache-control: - no-cache content-length: - - '1258' + - '1285' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:01 GMT + - Tue, 27 Jun 2023 04:39:06 GMT expires: - '-1' pragma: @@ -924,7 +1004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -943,14 +1023,61 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9be81fce-6e44-42d9-9be3-245e9265d439?api-version=2022-08-01-preview&t=2023-06-27T04%3A39%3A07&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rJINpUbT6z_4KlJ1BHtR0z1vN_wJ955GWl4XHrUoVUK8LAL9tF-hksSXadt-Na3hEyd5WVLGeB5AJbkBoSgqQeLyFwdtWwJJuwfodp8SSyDYxnB06ip9DOiAMN86AHs1AhHlIpuhG_ZJW8v0tv90wkG7sFa783ygt1b0s_BEMEQigD7ujM-76_rgOiYvdNQam9XBNByZuOMkmXbqNDFX37gHx2gnVwk06V5fQVdjo7D9unP12IR2KkpZwUjaGpToy0WU7B6wIX2U-jcZYJkcSh4K6YIkn5r_65YZakQYuh39Nw3BNtV1PnRRU-t96Mzq-2dOLdH6kEfAfzC5GqIs_g&h=664cyaZsffTqRqLXKLCoOMz-_MWFEY-JlsCn9t96azA + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9be81fce-6e44-42d9-9be3-245e9265d439\",\r\n + \ \"name\": \"9be81fce-6e44-42d9-9be3-245e9265d439\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:39:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9cec6c88-54d9-4a65-9e06-fa86b0e20f21?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9be81fce-6e44-42d9-9be3-245e9265d439?api-version=2022-08-01-preview&t=2023-06-27T04%3A39%3A07&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rJINpUbT6z_4KlJ1BHtR0z1vN_wJ955GWl4XHrUoVUK8LAL9tF-hksSXadt-Na3hEyd5WVLGeB5AJbkBoSgqQeLyFwdtWwJJuwfodp8SSyDYxnB06ip9DOiAMN86AHs1AhHlIpuhG_ZJW8v0tv90wkG7sFa783ygt1b0s_BEMEQigD7ujM-76_rgOiYvdNQam9XBNByZuOMkmXbqNDFX37gHx2gnVwk06V5fQVdjo7D9unP12IR2KkpZwUjaGpToy0WU7B6wIX2U-jcZYJkcSh4K6YIkn5r_65YZakQYuh39Nw3BNtV1PnRRU-t96Mzq-2dOLdH6kEfAfzC5GqIs_g&h=664cyaZsffTqRqLXKLCoOMz-_MWFEY-JlsCn9t96azA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9cec6c88-54d9-4a65-9e06-fa86b0e20f21\",\r\n - \ \"name\": \"9cec6c88-54d9-4a65-9e06-fa86b0e20f21\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9be81fce-6e44-42d9-9be3-245e9265d439\",\r\n + \ \"name\": \"9be81fce-6e44-42d9-9be3-245e9265d439\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -959,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:19 GMT + - Tue, 27 Jun 2023 04:39:38 GMT expires: - '-1' pragma: @@ -992,8 +1119,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1001,32 +1127,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-01-7fce7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-39-07-9115e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT7.6602064S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.1284892S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:01.2071485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:07.2183139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:01.2071485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:07.2183139Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2113' + - '2140' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:19 GMT + - Tue, 27 Jun 2023 04:39:38 GMT expires: - '-1' pragma: @@ -1058,8 +1185,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1067,32 +1193,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-01-7fce7\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-39-07-9115e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT7.6602064S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.1284892S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:01.2071485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:07.2183139Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:01.2071485Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:07.2183139Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2113' + - '2140' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:20 GMT + - Tue, 27 Jun 2023 04:39:38 GMT expires: - '-1' pragma: @@ -1126,8 +1253,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1139,7 +1265,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:11:20 GMT + - Tue, 27 Jun 2023 04:39:39 GMT expires: - '-1' pragma: @@ -1169,8 +1295,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -1203,39 +1328,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -1243,7 +1371,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -1251,25 +1380,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:21 GMT + - Tue, 27 Jun 2023 04:39:41 GMT expires: - '-1' pragma: @@ -1297,8 +1428,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002?api-version=2022-02-01 response: @@ -1306,9 +1436,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:05.7081394Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:09.6863523Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:06.1299946Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:09.9988533Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000002\"\r\n}" headers: @@ -1319,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:22 GMT + - Tue, 27 Jun 2023 04:39:42 GMT expires: - '-1' pragma: @@ -1352,8 +1482,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1368,7 +1497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:23 GMT + - Tue, 27 Jun 2023 04:39:42 GMT expires: - '-1' pragma: @@ -1420,8 +1549,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1432,26 +1560,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000003\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:23.6905985Z\",\r\n + \"cli-test-resource-two000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:43.1648099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:23.6905985Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:43.1648099Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f97b9480-7239-43eb-b6f3-794661222017?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c7e5ab4a-5e6e-4616-bf5d-adf89593b638?api-version=2022-08-01-preview&t=2023-06-27T04%3a39%3a43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XP0oQk2sO1qqTvhDKTQsiGjF_MRqfbj99z0oBaaMLPOzmQtpR9HhxuVhDXX5cqxq1ghEAuRtypn9QT2ZFv2w_yAJSXMJyvlER_DgMbdy2vLiTz-2cfH9K4adzNyM6j8BT55rj8sAm9JjwV52EISz_Q0USYOsn2bnYhJVCmECMwAmMWqxJYzddl0LkgIvBAIhPL4ApckBmNsj66bXNUrUU_EVzUL2sbH8YHpS-RH0iiZEyPF1O--TC0F9oZqg2m4JsCsFm4SIw1vLdrOk1IdJgCGUm1Ho3a9xZAwaw6DGATYvTo53sM_Pc64PklK3K6GtVqKxNfNg279ewcUORNjv4A&h=6qRIGcdQk4BNYrDVnPVtYxvbXcGUazUYFl7ALfjjpgo cache-control: - no-cache content-length: - - '1258' + - '1285' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:24 GMT + - Tue, 27 Jun 2023 04:39:42 GMT expires: - '-1' pragma: @@ -1463,7 +1591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1482,14 +1610,61 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c7e5ab4a-5e6e-4616-bf5d-adf89593b638?api-version=2022-08-01-preview&t=2023-06-27T04%3A39%3A43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XP0oQk2sO1qqTvhDKTQsiGjF_MRqfbj99z0oBaaMLPOzmQtpR9HhxuVhDXX5cqxq1ghEAuRtypn9QT2ZFv2w_yAJSXMJyvlER_DgMbdy2vLiTz-2cfH9K4adzNyM6j8BT55rj8sAm9JjwV52EISz_Q0USYOsn2bnYhJVCmECMwAmMWqxJYzddl0LkgIvBAIhPL4ApckBmNsj66bXNUrUU_EVzUL2sbH8YHpS-RH0iiZEyPF1O--TC0F9oZqg2m4JsCsFm4SIw1vLdrOk1IdJgCGUm1Ho3a9xZAwaw6DGATYvTo53sM_Pc64PklK3K6GtVqKxNfNg279ewcUORNjv4A&h=6qRIGcdQk4BNYrDVnPVtYxvbXcGUazUYFl7ALfjjpgo + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c7e5ab4a-5e6e-4616-bf5d-adf89593b638\",\r\n + \ \"name\": \"c7e5ab4a-5e6e-4616-bf5d-adf89593b638\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:39:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f97b9480-7239-43eb-b6f3-794661222017?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c7e5ab4a-5e6e-4616-bf5d-adf89593b638?api-version=2022-08-01-preview&t=2023-06-27T04%3A39%3A43&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XP0oQk2sO1qqTvhDKTQsiGjF_MRqfbj99z0oBaaMLPOzmQtpR9HhxuVhDXX5cqxq1ghEAuRtypn9QT2ZFv2w_yAJSXMJyvlER_DgMbdy2vLiTz-2cfH9K4adzNyM6j8BT55rj8sAm9JjwV52EISz_Q0USYOsn2bnYhJVCmECMwAmMWqxJYzddl0LkgIvBAIhPL4ApckBmNsj66bXNUrUU_EVzUL2sbH8YHpS-RH0iiZEyPF1O--TC0F9oZqg2m4JsCsFm4SIw1vLdrOk1IdJgCGUm1Ho3a9xZAwaw6DGATYvTo53sM_Pc64PklK3K6GtVqKxNfNg279ewcUORNjv4A&h=6qRIGcdQk4BNYrDVnPVtYxvbXcGUazUYFl7ALfjjpgo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f97b9480-7239-43eb-b6f3-794661222017\",\r\n - \ \"name\": \"f97b9480-7239-43eb-b6f3-794661222017\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c7e5ab4a-5e6e-4616-bf5d-adf89593b638\",\r\n + \ \"name\": \"c7e5ab4a-5e6e-4616-bf5d-adf89593b638\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1498,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:41 GMT + - Tue, 27 Jun 2023 04:40:14 GMT expires: - '-1' pragma: @@ -1531,8 +1706,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1540,32 +1714,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-24-95777\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-39-43-57130\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT7.5166516S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT11.3461648S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:23.6905985Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:43.1648099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:23.6905985Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:43.1648099Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2113' + - '2141' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:41 GMT + - Tue, 27 Jun 2023 04:40:14 GMT expires: - '-1' pragma: @@ -1597,8 +1772,7 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -1606,32 +1780,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-11-24-95777\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-39-43-57130\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT7.5166516S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT11.3461648S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003\"\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000003/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:11:23.6905985Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:39:43.1648099Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:11:23.6905985Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:39:43.1648099Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2113' + - '2141' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:11:42 GMT + - Tue, 27 Jun 2023 04:40:14 GMT expires: - '-1' pragma: @@ -1665,8 +1840,7 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -1674,13 +1848,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3a40%3a15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Apr 2023 17:11:43 GMT + - Tue, 27 Jun 2023 04:40:15 GMT expires: - '-1' pragma: @@ -1710,14 +1884,13 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A40%3A15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n - \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n + \ \"name\": \"762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1726,7 +1899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:12:00 GMT + - Tue, 27 Jun 2023 04:40:15 GMT expires: - '-1' pragma: @@ -1758,14 +1931,13 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A40%3A15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n - \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n + \ \"name\": \"762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1774,7 +1946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:12:30 GMT + - Tue, 27 Jun 2023 04:40:46 GMT expires: - '-1' pragma: @@ -1806,14 +1978,13 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A40%3A15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n - \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n + \ \"name\": \"762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1822,7 +1993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:13:01 GMT + - Tue, 27 Jun 2023 04:41:16 GMT expires: - '-1' pragma: @@ -1854,14 +2025,13 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A40%3A15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n - \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n + \ \"name\": \"762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -1870,7 +2040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:13:31 GMT + - Tue, 27 Jun 2023 04:41:47 GMT expires: - '-1' pragma: @@ -1902,23 +2072,22 @@ interactions: ParameterSetName: - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A40%3A15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n - \ \"name\": \"bdac8743-b1f5-45f1-ae88-c45ba4f866fb\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n + \ \"name\": \"762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '259' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:14:01 GMT + - Tue, 27 Jun 2023 04:42:16 GMT expires: - '-1' pragma: @@ -1940,49 +2109,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack sub delete Connection: - keep-alive + ParameterSetName: + - --name --delete-resources --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview&t=2023-06-27T04%3A40%3A15&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cshjVbmOduAez9UkoHP9GaNgEbCCDTyQAiGU4chWcuyTYyIDG4k8k2tJIPeIX7LBc1qtWsK60xHLxoh-CMBQnW_JcmNCb9IrRk70fgMGIgUpBLrd_sCvxawxbEZzNZEzt4I3IRooPYnGNGS12JMdR57eR0QWG41lDxsRAc61gyZ3qrh77kiIqR3ZfRyGF-fcC0hNV6j0OC-LZsvtH9yGjOG1xri85ca6L4fiZCtSzEKi_zKUWCZVIMiIkxxN2PYYa89sfyhIvf05hdxC-uwdRBx87YEVjjjxmwB0Dq0DjXmN9w2h7h1rvnu9mcMowu-YaMK8xP1rG5bO0kZnYW6XFg&h=is2FqOMb0BQQXjMWdfSZiV9mR5tA0PoRZxjRCZ6B-rY response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage7","name":"simpleblogstorage7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-04T16:52:32.3027817Z","changedTime":"2022-11-04T17:02:52.0913402Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuVM1-nsg","name":"ubuntuVM1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:52:57.5150775Z","changedTime":"2022-11-04T18:04:59.7715334Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuVM1-VirtualNetwork","name":"ubuntuVM1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:52:58.8573098Z","changedTime":"2022-11-04T18:05:00.8394975Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuVM1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevmstorage","name":"ubuntusimplevmstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:54:52.9461025Z","changedTime":"2022-11-04T18:05:13.2355499Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimpleVM-PublicIP","name":"ubuntuSimpleVM-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:54:52.959098Z","changedTime":"2022-11-04T18:06:55.0607243Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimpleVM-nsg","name":"ubuntuSimpleVM-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:54:52.9733573Z","changedTime":"2022-11-04T18:06:53.8358784Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimpleVM-VirtualNetwork","name":"ubuntuSimpleVM-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:54:54.3554834Z","changedTime":"2022-11-04T18:06:56.4209483Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimpleVM-NetworkInterface","name":"ubuntuSimpleVM-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:54:58.3210431Z","changedTime":"2022-11-04T18:04:59.7199275Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimpleVM-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2022-11-04T17:58:34.9761196Z","changedTime":"2022-11-04T18:10:35.8325502Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/ubuntusimplevm1storage","name":"ubuntusimplevm1storage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-04T17:58:34.9576549Z","changedTime":"2022-11-04T18:08:55.4601682Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1 - Storage Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2022-11-04T17:58:35.0206931Z","changedTime":"2022-11-04T18:10:37.9854087Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus","createdTime":"2022-11-04T17:58:36.4916904Z","changedTime":"2022-11-04T18:10:38.4763634Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus","createdTime":"2022-11-04T17:58:39.4602886Z","changedTime":"2022-11-04T18:08:39.6398429Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage8","name":"simpleblogstorage8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:40:19.1687958Z","changedTime":"2022-11-08T01:50:41.3933569Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage9","name":"simpleblogstorage9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-08T01:54:29.4470013Z","changedTime":"2022-11-08T02:04:49.5835876Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/apstorageeastus","name":"apstorageeastus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-04-06T15:28:25.8884884Z","changedTime":"2023-04-06T15:38:47.9534878Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetestb","name":"deploymentscopetestb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.682506Z","changedTime":"2022-06-15T17:36:11.0776125Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks/providers/Microsoft.Storage/storageAccounts/deploymentscopetesta","name":"deploymentscopetesta","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-14T22:54:44.688699Z","changedTime":"2022-06-15T17:36:11.9339893Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/Memory - Working Set Percentage - k8s-provider-demo-cluster","name":"Memory Working - Set Percentage - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4065742Z","changedTime":"2023-03-14T18:53:26.5369315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/microsoft.insights/metricalerts/CPU - Usage Percentage - k8s-provider-demo-cluster","name":"CPU Usage Percentage - - k8s-provider-demo-cluster","type":"microsoft.insights/metricalerts","location":"global","createdTime":"2023-03-14T18:43:25.4088138Z","changedTime":"2023-03-14T18:53:26.6012155Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2022-06-23T17:21:31.5554668Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-03T18:12:46.932936Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my - key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-04-13T18:22:09.3509436Z","changedTime":"2023-04-14T14:09:30.8559693Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T17:11:05.6826955Z","changedTime":"2023-04-14T17:11:05.8331293Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T17:11:05.7081394Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T17:11:05.7081394Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T17:11:06.0999133Z","changedTime":"2023-04-14T17:11:06.2393765Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T17:11:06.1299946Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T17:11:06.1299946Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVRNc6M4EP0vPu%2bBDzu7mao5rADFMEFEQi1hbmA5sUEmqdixsafmv2%2fL48x6qva2B0qA1K9fv9fq75NhNe4fN0O%2fm3z5Plk1u%2f3HLph8maxO2UddrT2p6akJ1CntXjc63C%2fTQRzw%2b6OK0jt83qG3STHMtsybzrgiASS76QLMYwtqz4HGJWThk%2fQ6sPwuLxlAn9%2flctGViumiS7sS1FPRLXwmYUx9GovudZp6NefnN1IHlraKEg42YgklZbQ7IiapvfWA62u53eMeIzX%2bc2up6chCcnZ5uVb4j1LkRAugczE3e%2bMhBqSewyiBqhJep%2b1gfuFzzNX4rONelkFQu%2fihfHD7GeFdfVw%2b0LnW9P0GP8a81Wpejw1ic49ah41rsVAmKIN7jP3kp4j0INTIrR5oiOcy3gmXI%2bMyDVp9P97yA6ChigXjMMqlw9Ymrd26NVGjx1jgPofd%2b7LHf1d9HH9UskLMioeX%2bq%2f86cDDt53w9r7jd9UvwvcnAynWY9cF6nvD%2f6mtVFGe17%2fzn9tC9pa0IRMX3p%2f8YRybhJ5v%2bEdYZw29qrH%2bGdd7PC8SfnJ%2b2eRbYDYlCOTv6lfVytVwrU8EqLd3PDmevLKOI2pgBdZNSk%2b5b8SlRCT0AKDIolfr23j5YGLo2YC%2bd7iP%2bTNX85lXFx8HiRoJj35bQhK2vkUtEudnxrfrDPVN5E8uA54h6EHC4S3mKg3lT18%2f%2fc1WykiZ%2bP%2fqIzNSJioqMU5jzwDqiTHOZ2JCdhAPamg9FXOfRrU20QVvay77Upus1GvCMHcuBRGVyS49d9HAoHYq4%2f56aLvFbf%2fnyHeKsQRb%2fcAVxmFO96APqQCBd8TMas95dfELv11PmEgFZhDYlyIRO8TIkSM1XjYvLYvqzuX7dX8OHF5OXN8LiXUpQP80S7iyTLg7sXX%2bWKLBxxj0skd89K%2fURuU9O0Bo0Lv8HfFqLv1luhlxfmTrdmusmx8r%2f7hptf2cJUcG%2bShkP8098AtJI2aPm0fqztDpdd5cz1hSAA%2bL2FKhjpvnyjfp4H2d%2fDFpPnb798ZuGjfJ%2fucY0xpmTcVcy%2f3nGGMly8Bf3OUblgn46451gGMswbZjD0X30glL4qKnJTtnj8Zz0tuhTF4Ouspca5EGaPeE9F2Jyy39qAO1TLu3P6so2zd65t7x%2bdvnZ0oL%2bXIWEmY5pAFKsXNnFtX69zOQzES8nBagKO7fPytv88y%2ffp38%2bPEP"}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n + \ \"name\": \"762f7965-b5a0-4634-a177-aad0c77ada1f\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '110961' + - '260' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:14:03 GMT + - Tue, 27 Jun 2023 04:42:47 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1994,7 +2156,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2002,22 +2164,29 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVRNc6M4EP0vPu%2BBDzu7mao5rADFMEFEQi1hbmA5sUEmqdixsafmv2/L48x6qva2B0qA1K9fv9fq75NhNe4fN0O/m3z5Plk1u/3HLph8maxO2UddrT2p6akJ1CntXjc63C/TQRzw%2B6OK0jt83qG3STHMtsybzrgiASS76QLMYwtqz4HGJWThk/Q6sPwuLxlAn9/lctGViumiS7sS1FPRLXwmYUx9GovudZp6NefnN1IHlraKEg42YgklZbQ7IiapvfWA62u53eMeIzX%2Bc2up6chCcnZ5uVb4j1LkRAugczE3e%2BMhBqSewyiBqhJep%2B1gfuFzzNX4rONelkFQu/ihfHD7GeFdfVw%2B0LnW9P0GP8a81Wpejw1ic49ah41rsVAmKIN7jP3kp4j0INTIrR5oiOcy3gmXI%2BMyDVp9P97yA6ChigXjMMqlw9Ymrd26NVGjx1jgPofd%2B7LHf1d9HH9UskLMioeX%2Bq/86cDDt53w9r7jd9UvwvcnAynWY9cF6nvD/6mtVFGe17/zn9tC9pa0IRMX3p/8YRybhJ5v%2BEdYZw29qrH%2BGdd7PC8SfnJ%2B2eRbYDYlCOTv6lfVytVwrU8EqLd3PDmevLKOI2pgBdZNSk%2B5b8SlRCT0AKDIolfr23j5YGLo2YC%2Bd7iP%2BTNX85lXFx8HiRoJj35bQhK2vkUtEudnxrfrDPVN5E8uA54h6EHC4S3mKg3lT18/c1WykiZ%2BP/qIzNSJioqMU5jzwDqiTHOZ2JCdhAPamg9FXOfRrU20QVvay77Upus1GvCMHcuBRGVyS49d9HAoHYq4/56aLvFbf/nyHeKsQRb/cAVxmFO96APqQCBd8TMas95dfELv11PmEgFZhDYlyIRO8TIkSM1XjYvLYvqzuX7dX8OHF5OXN8LiXUpQP80S7iyTLg7sXX%2BWKLBxxj0skd89K/URuU9O0Bo0Lv8HfFqLv1luhlxfmTrdmusmx8r/7hptf2cJUcG%2BShkP8098AtJI2aPm0fqztDpdd5cz1hSAA%2BL2FKhjpvnyjfp4H2d/DFpPnb798ZuGjfJ/ucY0xpmTcVcy/3nGGMly8Bf3OUblgn46451gGMswbZjD0X30glL4qKnJTtnj8Zz0tuhTF4Ouspca5EGaPeE9F2Jyy39qAO1TLu3P6so2zd65t7x%2BdvnZ0oL%2BXIWEmY5pAFKsXNnFtX69zOQzES8nBagKO7fPytv88y/fp38%2BPEP + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2023-05-22T22:02:46.9870949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-20T04:10:15.1676505Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:39:09.6675357Z","changedTime":"2023-06-27T04:39:09.7957283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:39:09.6863523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:39:09.6863523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000002/versions/v1","name":"cli-test-resource-one000002/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:39:09.9792166Z","changedTime":"2023-06-27T04:39:10.1550982Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:39:09.9988533Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:39:09.9988533Z"}}]}' headers: cache-control: - no-cache content-length: - - '4342' + - '148843' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:14:03 GMT + - Tue, 27 Jun 2023 04:42:47 GMT expires: - '-1' pragma: @@ -2047,8 +2216,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -2060,11 +2228,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:14:05 GMT + - Tue, 27 Jun 2023 04:42:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2090,10 +2258,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2103,11 +2270,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:14:20 GMT + - Tue, 27 Jun 2023 04:42:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2131,10 +2298,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2144,11 +2310,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:14:35 GMT + - Tue, 27 Jun 2023 04:43:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2172,10 +2338,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2185,11 +2350,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:14:51 GMT + - Tue, 27 Jun 2023 04:43:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2213,10 +2378,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2226,11 +2390,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:15:06 GMT + - Tue, 27 Jun 2023 04:43:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2254,10 +2418,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -2267,9 +2430,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:15:21 GMT + - Tue, 27 Jun 2023 04:43:50 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -2277,55 +2442,214 @@ interactions: x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '' headers: cache-control: - no-cache content-length: - - '199' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 17:15:22 GMT + - Tue, 27 Jun 2023 04:44:07 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway status: - code: 404 - message: Not Found + code: 202 + message: Accepted - request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:44:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:44:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:44:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", @@ -2350,8 +2674,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -2362,26 +2685,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000002\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:22.8226744Z\",\r\n + \"cli-test-resource-one000002\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:44:54.6056062Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:22.8226744Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:44:54.6056062Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc05dd99-06ca-4cd9-9c24-8752efc8405a?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9695d176-71c8-4a85-8fde-e89a2b15eb13?api-version=2022-08-01-preview&t=2023-06-27T04%3a44%3a55&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LtRvaasuOS9goNJiR2nHFLXqX7UBH52SskJNNWPd0J5ai27dyigxdzJlXQFHVQG4wihmzb4orv7UTeuSNc0VF6S_n46dCm7HhAfg13cG2IvpSoqnCBizBT5J7r2vTqQRAYn0566uigd2VoGHxiJl4XTcOGZmCdayQfwkYm4zrYxQDdHwM-GRDOUXLqbMs5FqujohqAbgYZ5QJ-khURs3B0LDJbQxJAwE0xWQaNmQ7oWaji2EDQArnvAMecbplN4feCd976VZVCvyMOhD_7TT1nZ7rZXc9xb1UhIEiJzHBqDHZn-00nOnldClLE8_AMTDf4aWQ4Eoek7nZ8pQKfE1Rg&h=AXJr4AkCaUnahuCn_28Gve2M7CjMIHd0d35ES_vs2xU cache-control: - no-cache content-length: - - '1197' + - '1224' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:22 GMT + - Tue, 27 Jun 2023 04:44:54 GMT expires: - '-1' pragma: @@ -2411,14 +2734,60 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9695d176-71c8-4a85-8fde-e89a2b15eb13?api-version=2022-08-01-preview&t=2023-06-27T04%3A44%3A55&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LtRvaasuOS9goNJiR2nHFLXqX7UBH52SskJNNWPd0J5ai27dyigxdzJlXQFHVQG4wihmzb4orv7UTeuSNc0VF6S_n46dCm7HhAfg13cG2IvpSoqnCBizBT5J7r2vTqQRAYn0566uigd2VoGHxiJl4XTcOGZmCdayQfwkYm4zrYxQDdHwM-GRDOUXLqbMs5FqujohqAbgYZ5QJ-khURs3B0LDJbQxJAwE0xWQaNmQ7oWaji2EDQArnvAMecbplN4feCd976VZVCvyMOhD_7TT1nZ7rZXc9xb1UhIEiJzHBqDHZn-00nOnldClLE8_AMTDf4aWQ4Eoek7nZ8pQKfE1Rg&h=AXJr4AkCaUnahuCn_28Gve2M7CjMIHd0d35ES_vs2xU + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9695d176-71c8-4a85-8fde-e89a2b15eb13\",\r\n + \ \"name\": \"9695d176-71c8-4a85-8fde-e89a2b15eb13\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:44:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc05dd99-06ca-4cd9-9c24-8752efc8405a?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9695d176-71c8-4a85-8fde-e89a2b15eb13?api-version=2022-08-01-preview&t=2023-06-27T04%3A44%3A55&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=LtRvaasuOS9goNJiR2nHFLXqX7UBH52SskJNNWPd0J5ai27dyigxdzJlXQFHVQG4wihmzb4orv7UTeuSNc0VF6S_n46dCm7HhAfg13cG2IvpSoqnCBizBT5J7r2vTqQRAYn0566uigd2VoGHxiJl4XTcOGZmCdayQfwkYm4zrYxQDdHwM-GRDOUXLqbMs5FqujohqAbgYZ5QJ-khURs3B0LDJbQxJAwE0xWQaNmQ7oWaji2EDQArnvAMecbplN4feCd976VZVCvyMOhD_7TT1nZ7rZXc9xb1UhIEiJzHBqDHZn-00nOnldClLE8_AMTDf4aWQ4Eoek7nZ8pQKfE1Rg&h=AXJr4AkCaUnahuCn_28Gve2M7CjMIHd0d35ES_vs2xU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/bc05dd99-06ca-4cd9-9c24-8752efc8405a\",\r\n - \ \"name\": \"bc05dd99-06ca-4cd9-9c24-8752efc8405a\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9695d176-71c8-4a85-8fde-e89a2b15eb13\",\r\n + \ \"name\": \"9695d176-71c8-4a85-8fde-e89a2b15eb13\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2427,7 +2796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:40 GMT + - Tue, 27 Jun 2023 04:45:25 GMT expires: - '-1' pragma: @@ -2459,8 +2828,7 @@ interactions: ParameterSetName: - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -2468,30 +2836,31 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-23-1bf4a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-44-55-fcef6\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.087176S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8771418S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:22.8226744Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:44:54.6056062Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:22.8226744Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:44:54.6056062Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1626' + - '1654' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:40 GMT + - Tue, 27 Jun 2023 04:45:25 GMT expires: - '-1' pragma: @@ -2523,8 +2892,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -2532,30 +2900,31 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-23-1bf4a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-44-55-fcef6\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.087176S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.8771418S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000002\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:22.8226744Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:44:54.6056062Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:22.8226744Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:44:54.6056062Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1626' + - '1654' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:40 GMT + - Tue, 27 Jun 2023 04:45:26 GMT expires: - '-1' pragma: @@ -2589,8 +2958,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: @@ -2602,7 +2970,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:15:41 GMT + - Tue, 27 Jun 2023 04:45:27 GMT expires: - '-1' pragma: @@ -2632,8 +3000,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: @@ -2647,7 +3014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:41 GMT + - Tue, 27 Jun 2023 04:45:27 GMT expires: - '-1' pragma: @@ -2676,8 +3043,7 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -2692,7 +3058,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:42 GMT + - Tue, 27 Jun 2023 04:45:28 GMT expires: - '-1' pragma: @@ -2734,8 +3100,7 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -2746,26 +3111,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000003\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:42.9654346Z\",\r\n + \"cli-test-resource-two000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:45:29.1362436Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:42.9654346Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:45:29.1362436Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3d0ad204-18f2-4025-a34d-7562b1e88bee?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b05a2f0-c028-4380-bb61-0944f44533ee?api-version=2022-08-01-preview&t=2023-06-27T04%3a45%3a29&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KNnYVIRehYBzXAhTbaEJOXRtyJEFQQZ1c9Yyqo3c058DApuElqc1C4q50W7j4HnZg4RQye4dJBwi52oH8hon4v1mmrS0L-IaSPM3zyRMs7TRCLnSfzztzXBz5W_n6PTaddSzg0W4zRbWUcnXOxyQ4fE_XDvrJJNg44g_Od7U5EMmmL--H9Pxd2YjkLWOMlsMmUM7U1pxwJa8jxDax-ZKgvqIdpkagrDAs08aqAW1reKPRZv2G7SGmervtRf1Pn1FbcLEhiQsXZnnAxtZzRfZNl9rUsGmXrNEDq86ATRz6m2M9qoFIHCLNkfhaA5Aoz1yV2iv22oQSYS1MasxSRBHHQ&h=p3WY0Y3z8ayvxOC9XorzuUiVladVjbNE5wPDCzDKShI cache-control: - no-cache content-length: - - '1197' + - '1224' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:15:43 GMT + - Tue, 27 Jun 2023 04:45:29 GMT expires: - '-1' pragma: @@ -2796,14 +3161,61 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b05a2f0-c028-4380-bb61-0944f44533ee?api-version=2022-08-01-preview&t=2023-06-27T04%3A45%3A29&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KNnYVIRehYBzXAhTbaEJOXRtyJEFQQZ1c9Yyqo3c058DApuElqc1C4q50W7j4HnZg4RQye4dJBwi52oH8hon4v1mmrS0L-IaSPM3zyRMs7TRCLnSfzztzXBz5W_n6PTaddSzg0W4zRbWUcnXOxyQ4fE_XDvrJJNg44g_Od7U5EMmmL--H9Pxd2YjkLWOMlsMmUM7U1pxwJa8jxDax-ZKgvqIdpkagrDAs08aqAW1reKPRZv2G7SGmervtRf1Pn1FbcLEhiQsXZnnAxtZzRfZNl9rUsGmXrNEDq86ATRz6m2M9qoFIHCLNkfhaA5Aoz1yV2iv22oQSYS1MasxSRBHHQ&h=p3WY0Y3z8ayvxOC9XorzuUiVladVjbNE5wPDCzDKShI + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b05a2f0-c028-4380-bb61-0944f44533ee\",\r\n + \ \"name\": \"1b05a2f0-c028-4380-bb61-0944f44533ee\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3d0ad204-18f2-4025-a34d-7562b1e88bee?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b05a2f0-c028-4380-bb61-0944f44533ee?api-version=2022-08-01-preview&t=2023-06-27T04%3A45%3A29&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KNnYVIRehYBzXAhTbaEJOXRtyJEFQQZ1c9Yyqo3c058DApuElqc1C4q50W7j4HnZg4RQye4dJBwi52oH8hon4v1mmrS0L-IaSPM3zyRMs7TRCLnSfzztzXBz5W_n6PTaddSzg0W4zRbWUcnXOxyQ4fE_XDvrJJNg44g_Od7U5EMmmL--H9Pxd2YjkLWOMlsMmUM7U1pxwJa8jxDax-ZKgvqIdpkagrDAs08aqAW1reKPRZv2G7SGmervtRf1Pn1FbcLEhiQsXZnnAxtZzRfZNl9rUsGmXrNEDq86ATRz6m2M9qoFIHCLNkfhaA5Aoz1yV2iv22oQSYS1MasxSRBHHQ&h=p3WY0Y3z8ayvxOC9XorzuUiVladVjbNE5wPDCzDKShI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3d0ad204-18f2-4025-a34d-7562b1e88bee\",\r\n - \ \"name\": \"3d0ad204-18f2-4025-a34d-7562b1e88bee\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/1b05a2f0-c028-4380-bb61-0944f44533ee\",\r\n + \ \"name\": \"1b05a2f0-c028-4380-bb61-0944f44533ee\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2812,7 +3224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:16:00 GMT + - Tue, 27 Jun 2023 04:46:00 GMT expires: - '-1' pragma: @@ -2845,8 +3257,7 @@ interactions: - --name --location --template-file --parameters --deny-settings-mode --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -2854,30 +3265,329 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-43-865d1\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-45-29-eb46a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.3044966S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.9004729S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:42.9654346Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:45:29.1362436Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:42.9654346Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:45:29.1362436Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '1627' + - '1654' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:46:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-45-29-eb46a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT5.9004729S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:45:29.1362436Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:45:29.1362436Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1654' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:46:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3a46%3a02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A46%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n + \ \"name\": \"e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A46%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n + \ \"name\": \"e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A46%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n + \ \"name\": \"e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 04:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --delete-resources --delete-resource-groups --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A46%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n + \ \"name\": \"e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n \"status\": \"deleting\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '259' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:16:00 GMT + - Tue, 27 Jun 2023 04:47:33 GMT expires: - '-1' pragma: @@ -2899,7 +3609,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2909,39 +3619,22 @@ interactions: ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A46%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-15-43-865d1\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.3044966S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000003\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000003\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:15:42.9654346Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:15:42.9654346Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n + \ \"name\": \"e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '1627' + - '259' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:16:01 GMT + - Tue, 27 Jun 2023 04:48:04 GMT expires: - '-1' pragma: @@ -2963,34 +3656,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - stack sub delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A46%3A02&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=YxVHMlmBG8mwLtcYEJMwqLqdLa6Naom3PPOy_CX2XjnKjSA9CMnzcv6GIkkyc9AnYKWNvGPUmN145EswWDpnqiIMr7iZIICjy1bh7rnyZwskpj_f4OsCmuOGLKUZgYA65-L4sFSul9pzFiXcZdLss-3h5_vt692ZK0ebRO-CTzCKfGA8RdUrcfHTtPR34OcABfTie3PaevyB_dMxzKoclXPTeCowJfv0MAuk-deciX6OaNZ5HfLCjrGn2alGmJPtsdtAPQk7fQzS6qFjljjxsee9w501QE0SG0zSfZZAWS4drizCWnl6EDpc171f2ZEymeMG2y872i0sga-D3eE5NQ&h=Fenz57NVr-3wZjLRwgLKkhF4XHjUvu0okByBBHmRsI8 response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n + \ \"name\": \"e47df5b2-82e0-4ed3-9b5d-c3d2424afdc4\",\r\n \"status\": \"succeeded\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview cache-control: - no-cache content-length: - - '0' + - '260' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:16:01 GMT + - Tue, 27 Jun 2023 04:48:34 GMT expires: - '-1' pragma: @@ -2999,54 +3690,50 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - group show Connection: - keep-alive ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes + - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n - \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '259' + - '252' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:16:19 GMT + - Tue, 27 Jun 2023 04:48:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -3058,43 +3745,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - group list Connection: - keep-alive - ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n - \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '259' + - '81475' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:16:49 GMT + - Tue, 27 Jun 2023 04:48:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -3106,50 +3786,46 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n - \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '259' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 17:17:19 GMT + - Tue, 27 Jun 2023 04:48:39 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3158,46 +3834,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - group delete Connection: - keep-alive ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n - \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"deleting\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '259' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 17:17:49 GMT + - Tue, 27 Jun 2023 04:48:39 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3206,151 +3874,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - group delete Connection: - keep-alive ParameterSetName: - - --name --delete-resources --delete-resource-groups --yes + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n - \ \"name\": \"c58fb22b-98d1-4562-b383-12e2bbc3c76d\",\r\n \"status\": \"succeeded\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '260' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 17:18:19 GMT + - Tue, 27 Jun 2023 04:48:54 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group show + - group delete Connection: - keep-alive ParameterSetName: - - -n + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '' headers: cache-control: - no-cache content-length: - - '252' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 17:18:20 GMT + - Tue, 27 Jun 2023 04:49:09 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group list + - group delete Connection: - keep-alive + ParameterSetName: + - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002","name":"cli-test-resource-one000002","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '55218' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Apr 2023 17:18:21 GMT + - Tue, 27 Jun 2023 04:49:24 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - group delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3360,19 +4012,17 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:18:23 GMT + - Tue, 27 Jun 2023 04:49:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVTM0hXWU5YWEdVWExTQlVXUURCS3w2QjVGMThGOTBFQkYzMEMyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: code: 202 message: Accepted @@ -3390,10 +4040,9 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkVTM0hXWU5YWEdVWExTQlVXUURCS3w2QjVGMThGOTBFQkYzMEMyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEUkVTT1VSQ0U6MkRPTkU1T1ZGSk9IRERGSTVXU0hQRDVQSnw5QTE0NzU4RDI1QjhDMDkwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -3403,7 +4052,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:18:38 GMT + - Tue, 27 Jun 2023 04:49:55 GMT expires: - '-1' pragma: @@ -3433,8 +4082,7 @@ interactions: ParameterSetName: - --location --name User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -3448,7 +4096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:18:39 GMT + - Tue, 27 Jun 2023 04:49:57 GMT expires: - '-1' pragma: @@ -3477,34 +4125,32 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: body: - string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n - \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001' - could not be found.\"\r\n }\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-delete-deployment-stack-subscription000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '283' + - '199' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:18:40 GMT + - Tue, 27 Jun 2023 04:49:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway status: code: 404 message: Not Found @@ -3545,8 +4191,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -3557,27 +4202,28 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": - \"cli-test-resource-one000002\"\r\n },\r\n \"tsname\": {\r\n \"value\": - \"cli-test-template-spec000005\"\r\n }\r\n },\r\n \"resources\": - [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + \"cli-test-resource-one000002\",\r\n \"type\": \"string\"\r\n },\r\n + \ \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n + \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:41.0345956Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:49:57.945298Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:18:41.0345956Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:49:57.945298Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f?api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ed37d8d-412b-4fb5-9ef0-18354f974fbf?api-version=2022-08-01-preview&t=2023-06-27T04%3a49%3a58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=U9mJ_YjihgGF2uVpBshw1fYph1gH2QHQ_Ok1VYn61aeH-LEBwp9_7B-169fxp4F1yaN5SRuOjUZKVjHP8-X3QR7i5J4ypvw03moTiPVeB-KKikFqYMgpfP7ruzSejih_rfAv33Vy4YiRXnTNzXjZiqoChI1ka0EI6adNN0Hy7_W_lALNLTltksyrP7otjTVxD2FNWj92R6WDsHrZKadFoxd1BcU5_OBRCSbgl4mSvfVnrtP_7-BOFevJmAK7PG52y-hAqzHzv1CNl3okwYzquxvbVwX1Q32VPwBsRVvHtdEIbp8ocTvjvK-V-Lk-bC_8DCWvYlDvMI8_OTXkpE6i8A&h=IxWPi603dqrS01PkkWUEHBGLr7AZltVpsXqC0i_OmAI cache-control: - no-cache content-length: - - '1338' + - '1390' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:18:40 GMT + - Tue, 27 Jun 2023 04:49:57 GMT expires: - '-1' pragma: @@ -3608,23 +4254,22 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ed37d8d-412b-4fb5-9ef0-18354f974fbf?api-version=2022-08-01-preview&t=2023-06-27T04%3A49%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=U9mJ_YjihgGF2uVpBshw1fYph1gH2QHQ_Ok1VYn61aeH-LEBwp9_7B-169fxp4F1yaN5SRuOjUZKVjHP8-X3QR7i5J4ypvw03moTiPVeB-KKikFqYMgpfP7ruzSejih_rfAv33Vy4YiRXnTNzXjZiqoChI1ka0EI6adNN0Hy7_W_lALNLTltksyrP7otjTVxD2FNWj92R6WDsHrZKadFoxd1BcU5_OBRCSbgl4mSvfVnrtP_7-BOFevJmAK7PG52y-hAqzHzv1CNl3okwYzquxvbVwX1Q32VPwBsRVvHtdEIbp8ocTvjvK-V-Lk-bC_8DCWvYlDvMI8_OTXkpE6i8A&h=IxWPi603dqrS01PkkWUEHBGLr7AZltVpsXqC0i_OmAI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n - \ \"name\": \"b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ed37d8d-412b-4fb5-9ef0-18354f974fbf\",\r\n + \ \"name\": \"5ed37d8d-412b-4fb5-9ef0-18354f974fbf\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '263' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:18:57 GMT + - Tue, 27 Jun 2023 04:49:58 GMT expires: - '-1' pragma: @@ -3657,14 +4302,13 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ed37d8d-412b-4fb5-9ef0-18354f974fbf?api-version=2022-08-01-preview&t=2023-06-27T04%3A49%3A58&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=U9mJ_YjihgGF2uVpBshw1fYph1gH2QHQ_Ok1VYn61aeH-LEBwp9_7B-169fxp4F1yaN5SRuOjUZKVjHP8-X3QR7i5J4ypvw03moTiPVeB-KKikFqYMgpfP7ruzSejih_rfAv33Vy4YiRXnTNzXjZiqoChI1ka0EI6adNN0Hy7_W_lALNLTltksyrP7otjTVxD2FNWj92R6WDsHrZKadFoxd1BcU5_OBRCSbgl4mSvfVnrtP_7-BOFevJmAK7PG52y-hAqzHzv1CNl3okwYzquxvbVwX1Q32VPwBsRVvHtdEIbp8ocTvjvK-V-Lk-bC_8DCWvYlDvMI8_OTXkpE6i8A&h=IxWPi603dqrS01PkkWUEHBGLr7AZltVpsXqC0i_OmAI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n - \ \"name\": \"b5cbc681-7810-4a4c-bae6-e9ffbe5f005f\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5ed37d8d-412b-4fb5-9ef0-18354f974fbf\",\r\n + \ \"name\": \"5ed37d8d-412b-4fb5-9ef0-18354f974fbf\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3673,7 +4317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:27 GMT + - Tue, 27 Jun 2023 04:50:29 GMT expires: - '-1' pragma: @@ -3706,8 +4350,7 @@ interactions: - --name --location --deployment-resource-group --template-file --deny-settings-mode --parameters --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -3715,33 +4358,34 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-18-41-7953d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-49-58-f57c8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT30.2933345S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT20.6569582S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:41.0345956Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:49:57.945298Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:18:41.0345956Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:49:57.945298Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2093' + - '2145' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:28 GMT + - Tue, 27 Jun 2023 04:50:29 GMT expires: - '-1' pragma: @@ -3773,8 +4417,7 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: @@ -3807,39 +4450,42 @@ interactions: North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Germany West Central","East US 2","East US","Central US","North Central US","France Central","UK South","UK West","Central India","West India","Jio India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Qatar Central","Sweden Central","UAE - North","West Central US","West Europe","West US 2","West US","West US 3","South - Central US","South Africa North","Central US EUAP","East US 2 EUAP","Poland - Central"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -3847,7 +4493,8 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central US","East Asia","Southeast Asia","East US","East US 2","West US","West US 2","North Central US","South Central US","West Central US","North Europe","West Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia @@ -3855,25 +4502,27 @@ interactions: East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Malaysia South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland North","Central US EUAP","Germany West Central","East US 2","East US","Central US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Japan East","Japan West","Korea - Central","Korea South","North Europe","Norway East","Poland Central","Qatar - Central","Sweden Central","UAE North","West Central US","West Europe","West - US 2","West US","West US 3","South Central US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '20450' + - '21180' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:29 GMT + - Tue, 27 Jun 2023 04:50:31 GMT expires: - '-1' pragma: @@ -3901,17 +4550,16 @@ interactions: ParameterSetName: - -n -g --resource-type User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005?api-version=2022-02-01 response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:44.5906037Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T04:50:00.8716681Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-04-14T17:18:44.5906037Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T04:50:00.8716681Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000005\"\r\n}" headers: @@ -3922,7 +4570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:30 GMT + - Tue, 27 Jun 2023 04:50:32 GMT expires: - '-1' pragma: @@ -3954,8 +4602,7 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000002?api-version=2022-09-01 response: @@ -3969,7 +4616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:30 GMT + - Tue, 27 Jun 2023 04:50:32 GMT expires: - '-1' pragma: @@ -3997,8 +4644,7 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?api-version=2022-08-01-preview response: @@ -4006,33 +4652,34 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-04-14-17-18-41-7953d\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/deployments/cli-test-delete-deployment-stack-subsc-2023-06-27-04-49-58-f57c8\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006\",\r\n - \ \"duration\": \"PT30.2933345S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT20.6569582S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\"\r\n - \ },\r\n \"tsname\": {\r\n \"value\": \"cli-test-template-spec000005\"\r\n - \ }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": - \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\"\r\n + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000002\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000002\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-04-14T17:18:41.0345956Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:49:57.945298Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-04-14T17:18:41.0345956Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:49:57.945298Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-delete-deployment-stack-subscription000001\"\r\n}" headers: cache-control: - no-cache content-length: - - '2093' + - '2145' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:32 GMT + - Tue, 27 Jun 2023 04:50:32 GMT expires: - '-1' pragma: @@ -4066,8 +4713,7 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-delete-deployment-stack-subscription000001?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview response: @@ -4075,13 +4721,13 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3a50%3a34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Apr 2023 17:19:32 GMT + - Tue, 27 Jun 2023 04:50:33 GMT expires: - '-1' pragma: @@ -4111,14 +4757,13 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4127,7 +4772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:19:49 GMT + - Tue, 27 Jun 2023 04:50:33 GMT expires: - '-1' pragma: @@ -4159,14 +4804,13 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4175,7 +4819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:20:19 GMT + - Tue, 27 Jun 2023 04:51:04 GMT expires: - '-1' pragma: @@ -4207,14 +4851,13 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4223,7 +4866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:20:49 GMT + - Tue, 27 Jun 2023 04:51:34 GMT expires: - '-1' pragma: @@ -4255,14 +4898,13 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4271,7 +4913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:21:19 GMT + - Tue, 27 Jun 2023 04:52:05 GMT expires: - '-1' pragma: @@ -4303,14 +4945,13 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4319,7 +4960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:21:50 GMT + - Tue, 27 Jun 2023 04:52:35 GMT expires: - '-1' pragma: @@ -4351,14 +4992,13 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"deleting\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache @@ -4367,7 +5007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:22:20 GMT + - Tue, 27 Jun 2023 04:53:06 GMT expires: - '-1' pragma: @@ -4399,23 +5039,22 @@ interactions: ParameterSetName: - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n - \ \"name\": \"5d4e540f-8fb9-472b-96c8-5199e5223bbf\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"deleting\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '259' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:22:50 GMT + - Tue, 27 Jun 2023 04:53:36 GMT expires: - '-1' pragma: @@ -4437,38 +5076,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack sub delete Connection: - keep-alive ParameterSetName: - - -g + - --name --delete-all --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427?unmanageAction.Resources=delete&unmanageAction.ResourceGroups=delete&api-version=2022-08-01-preview&t=2023-06-27T04%3A50%3A34&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Y3IZHeDQN9vUACAh2YZ556LWsXxqwW7u5Pi2ozY2M070I3zjBsgnYgF48DYSu6XkMiZCquun-qMWHPQLbyBlnbGyFBuRdZ5c3CyM87psP0QoiSvR7J5NILYgRSCWzEPlBWf_AiTheROXPVxSwYixOVzil0EAaOJviywXXgpK0F5WFkEI1ZH109Fm3ITHUt4P7rmis8nk0JMp9nTXXbHUoXX-lZ0mEII_qXQe6nAcuUWjy-vRdMwpwW6f-eKoSsmuUAGCq6Kh_83cBq-QAmCi3wXD_cN1NNmTYQSk-Kv9K9rsdxHIP6Tv8Kd2eV4VdD4NNMJ2P9KdAhrVP8t1Z8ewZw&h=Fk-Ic7AifY3dxONWc1T3BTTyFZ2qEmeXv5kw3KtFv4k response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n + \ \"name\": \"a96cbe96-8f07-47f3-9be4-e1a8c8880427\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '260' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:22:52 GMT + - Tue, 27 Jun 2023 04:54:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -4490,22 +5133,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli-test-cli_test_deployment_stacks-two000006%27&%24expand=createdTime%2cchangedTime%2cprovisioningState&api-version=2022-09-01&%24skiptoken=pVRNc%2bI4EP0vnPfgD5xdpmoO6w8Fa2I5%2bmjJ%2bGYQE7CNkwqEGKbmv2%2bLIbOkam97UMmy1K9fv9fSj8mwHg8P26HbT778mKyb%2feFtH0y%2bTNYn%2blZXG08ZcmoCfcrb560JD6t8EEdcv1VJfofjFbo%2bK4dox7xpxHUcQLafLsA%2bLEEfOJBUAg0flddCz%2b8KyQC64q5Qi1ZqZso2byXox7Jd%2bEzBmPskFe3zNPdqzs8vcR30ZKlJzKFPWEZimezfETOuvc2A87PcHXCPxTX%2bc7M0ZGRhfHZ5udH4jxDkREogczG3B%2bshBuSew5BAtITn6XKwv%2fE55mp81nKPUghqFz%2fIe7dPY97W76t7MjeGvN7gp5i3Ws%2frsUFs7pHeYeNcLrQNZDDD2A9%2bOlYehAa51QMJ8RzlrXA5KFd5sDSz8ZYfAAl1KhiHUa0ctrF57eadTRozpgL3OexfVx3%2bu%2brj%2bKOSFWJWPLzUf%2bVPBh6%2b7IV38B2%2fq34Jfj9ayLGeflOivjf8H5eVLuV585n%2fvC9V18fLkIkL7w%2f%2bMI5NRs43%2fBOss4ZO11h%2fxM0Bz4uMn5xfffYtsFsJAvm7%2bnW1djVc6xMB6u29nxxPXvWOI2rQC6w7lp52a8QlscjIEUDHi05vbuPVvU2hYwP63uI%2b5qeu5jOvLj4OCjUSHvm2gixc%2bj1qkTk%2fKd9tKOqbqV9cBjwTowcZh5eU6zxUv3z98JeutVUq8%2f%2fVR9FYZjqRGGewZwD1xBjnc2xDdhT3elh6OuU%2bSWpjkwvezl72lbFUmk3MMHehRCwqSy89d9HAonaacn8zLNvFbf8XyHeKsTG2%2bpFrjMOcbqAPuQCBd8RGtee8uviFa9cTNtGBHQT2pcjEHjEK5EisR%2beyZ0nduny%2f78%2fI4enEzUworEsD%2bmdYxnXPhLsTO%2bdPHxvwMQa97BAf%2fZPG6qJjRwgtele8Il4t5noA5c3wzdhXCT0tTDTU%2bn1bDvim7PyXZY%2ffOIpUpwVAVKaMMNWNeO9W%2bXZ0ZzZr8vkMV33Gzk%2bRAI3vkj%2brJJ1N%2fpg0b%2fvDa9NvG%2fea%2fc%2bnzBiImoq5tvvPp4xJRsFf3BVbRgX8dcdawKcsw9Zj92X71Io%2bTsuOSHamD9Zz8veDzJ6OpqKuveIGSPuIMjxgaasdeasDLKV9%2bRMlOjQmct84%2fvb5mZBSPZ2FgqiAPLjKeFhUm89nIItEupqWoAlizL5rb%2fudf%2f06%2bfnzHw%3d%3d"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1635' + - '288' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:22:53 GMT + - Tue, 27 Jun 2023 04:54:07 GMT expires: - '-1' pragma: @@ -4523,7 +5165,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -4533,10 +5175,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01&$skiptoken=pVRNc%2BI4EP0vnPfgD5xdpmoO6w8Fa2I5%2BmjJ%2BGYQE7CNkwqEGKbmv2%2BLIbOkam97UMmy1K9fv9fSj8mwHg8P26HbT778mKyb/eFtH0y%2BTNYn%2BlZXG08ZcmoCfcrb560JD6t8EEdcv1VJfofjFbo%2BK4dox7xpxHUcQLafLsA%2BLEEfOJBUAg0flddCz%2B8KyQC64q5Qi1ZqZso2byXox7Jd%2BEzBmPskFe3zNPdqzs8vcR30ZKlJzKFPWEZimezfETOuvc2A87PcHXCPxTX%2Bc7M0ZGRhfHZ5udH4jxDkREogczG3B%2BshBuSew5BAtITn6XKwv/E55mp81nKPUghqFz/Ie7dPY97W76t7MjeGvN7gp5i3Ws/rsUFs7pHeYeNcLrQNZDDD2A9%2BOlYehAa51QMJ8RzlrXA5KFd5sDSz8ZYfAAl1KhiHUa0ctrF57eadTRozpgL3OexfVx3%2Bu%2Brj%2BKOSFWJWPLzUf%2BVPBh6%2B7IV38B2/q34Jfj9ayLGeflOivjf8H5eVLuV585n/vC9V18fLkIkL7w/%2BMI5NRs43/BOss4ZO11h/xM0Bz4uMn5xfffYtsFsJAvm7%2BnW1djVc6xMB6u29nxxPXvWOI2rQC6w7lp52a8QlscjIEUDHi05vbuPVvU2hYwP63uI%2B5qeu5jOvLj4OCjUSHvm2gixc%2Bj1qkTk/Kd9tKOqbqV9cBjwTowcZh5eU6zxUv3z98JeutVUq8/VR9FYZjqRGGewZwD1xBjnc2xDdhT3elh6OuU%2BSWpjkwvezl72lbFUmk3MMHehRCwqSy89d9HAonaacn8zLNvFbf8XyHeKsTG2%2BpFrjMOcbqAPuQCBd8RGtee8uviFa9cTNtGBHQT2pcjEHjEK5EisR%2BeyZ0nduny/78/I4enEzUworEsD%2BmdYxnXPhLsTO%2BdPHxvwMQa97BAf/ZPG6qJjRwgtele8Il4t5noA5c3wzdhXCT0tTDTU%2Bn1bDvim7PyXZY/fOIpUpwVAVKaMMNWNeO9W%2BXZ0ZzZr8vkMV33Gzk%2BRAI3vkj%2BrJJ1N/pg0b/vDa9NvG/ea/c%2BnzBiImoq5tvvPp4xJRsFf3BVbRgX8dcdawKcsw9Zj92X71Io%2BTsuOSHamD9Zz8veDzJ6OpqKuveIGSPuIMjxgaasdeasDLKV9%2BRMlOjQmct84/vb5mZBSPZ2FgqiAPLjKeFhUm89nIItEupqWoAlizL5rb/udf/06%2BfnzHw%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000006%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: string: '{"value":[]}' @@ -4548,7 +5189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:22:53 GMT + - Tue, 27 Jun 2023 04:54:07 GMT expires: - '-1' pragma: @@ -4574,23 +5215,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"displayname":"resource-group"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000006","name":"cli-test-cli_test_deployment_stacks-two000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '55254' + - '81511' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Apr 2023 17:22:53 GMT + - Tue, 27 Jun 2023 04:54:07 GMT expires: - '-1' pragma: @@ -4620,8 +5260,7 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000006?api-version=2022-09-01 response: @@ -4633,11 +5272,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:22:55 GMT + - Tue, 27 Jun 2023 04:54:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4663,10 +5302,49 @@ interactions: ParameterSetName: - --name --yes User-Agent: - - AZURECLI/2.47.0 (PIP) azsdk-python-azure-mgmt-resource/0.1.0 Python/3.9.13 - (Windows-10-10.0.19044-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 04:54:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw0QzUwQThCRkNFMTUzRTIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxGQzMwNEIyNzFFNkQxMjgyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4676,7 +5354,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Apr 2023 17:23:11 GMT + - Tue, 27 Jun 2023 04:54:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 5a6c4ffad32..ddd85ee549a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2202,7 +2202,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('stack sub delete --name {name} --yes') # create new resource group - test delete flag --delete-resources - self.cmd('az group create --location {location} --name {resource-group-two}') + self.cmd('group create --location {location} --name {resource-group-two}') # create stack with resource1 self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --deny-settings-mode "none" --template-file "{template-file-spec}" --parameters "name={resource-one}" --yes', checks=self.check('provisioningState', 'succeeded')) @@ -2229,7 +2229,7 @@ def test_create_deployment_stack_subscription(self, resource_group): self.cmd('resource list -g {resource-group-two}', checks=self.check("length([?name=='{resource-two}'])", 0)) # delete resource group two - self.cmd('az group delete --name {resource-group-two} --yes') + self.cmd('group delete --name {resource-group-two} --yes') # cleanup self.cmd('stack sub delete --name {name} --yes') @@ -2415,7 +2415,7 @@ def test_delete_deployment_stack_subscription(self): self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) # cleanup - delete resource group two - self.cmd('az group delete --name {resource-group-two} --yes') + self.cmd('group delete --name {resource-group-two} --yes') # test delete flag --delete-resource-groups - create stack with resource1 self.cmd('stack sub create --name {name} --location {location} --template-file "{template-file-rg}" --parameters "name={resource-one}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) @@ -2552,7 +2552,7 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') # test flag: delete--resources, create deployment stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes --delete-resource-groups', checks=self.check('provisioningState', 'succeeded')) + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes --delete-resources --delete-resource-groups', checks=self.check('provisioningState', 'succeeded')) # update stack, default actionOnUnmanage settings should be detached self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-two}" --yes', checks=self.check('provisioningState', 'succeeded')) @@ -2702,7 +2702,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): }) # create stack - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file}" --deny-settings-mode "none" --parameters "{parameter-file}" --delete-resources --delete-resource-groups --yes', checks=self.check('provisioningState', 'succeeded')).get_output_in_json() self.cmd('stack group show --name {name} --resource-group {resource-group}', checks=self.check('name', '{name}')) @@ -2748,7 +2748,7 @@ def test_delete_deployment_stack_resource_group(self, resource_group): self.cmd('resource list', checks=self.check("length([?name=='{resource-two}'])", 0)) # cleanup - delete resource group two - self.cmd('az group delete --name {resource-group-two} --yes') + self.cmd('group delete --name {resource-group-two} --yes') # create new resource group - testing delete-all flag self.cmd('group create --location {location} --name {resource-group-two}') From 4065524a951bd91948241ea7f92ec509ace0a132 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 01:41:37 -0400 Subject: [PATCH 133/139] uprade bicep cli change --- src/azure-cli/azure/cli/command_modules/resource/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 6e48bf06e27..850a9c96f28 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1177,7 +1177,7 @@ def _prepare_stacks_templates_and_parameters(cmd, rcf, deployment_stack_model, t minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): raise ArgumentUsageError( - f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please upgrade Bicep CLI to {minimum_supported_version} or later.") + f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please use az bicep upgrade to upgrade Bicep CLI.") if len(parameters) > 1: raise ArgumentUsageError( "Can not use --parameters argument more than once when using a .bicepparam file") From 02cbdef7fed175f037f49c2ce2302b90733544f4 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 02:45:47 -0400 Subject: [PATCH 134/139] Removed f string --- src/azure-cli/azure/cli/command_modules/resource/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/custom.py b/src/azure-cli/azure/cli/command_modules/resource/custom.py index 850a9c96f28..5c6504299fb 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/custom.py +++ b/src/azure-cli/azure/cli/command_modules/resource/custom.py @@ -1177,7 +1177,7 @@ def _prepare_stacks_templates_and_parameters(cmd, rcf, deployment_stack_model, t minimum_supported_version = "0.14.85" if not bicep_version_greater_than_or_equal_to(minimum_supported_version): raise ArgumentUsageError( - f"Unable to compile .bicepparam file with the current version of Bicep CLI. Please use az bicep upgrade to upgrade Bicep CLI.") + "Unable to compile .bicepparam file with the current version of Bicep CLI. Please use az bicep upgrade to upgrade Bicep CLI.") if len(parameters) > 1: raise ArgumentUsageError( "Can not use --parameters argument more than once when using a .bicepparam file") From 4bb4da9bb5d0f7eb15610aa2b55ed97c7c5e6916 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 04:21:18 -0400 Subject: [PATCH 135/139] Added new bicep test functions --- ...reate_deployment_stack_resource_group.yaml | 1979 ++----- ...yment_stack_resource_group_with_bicep.yaml | 767 +++ ..._create_deployment_stack_subscription.yaml | 5093 +++++++---------- ...loyment_stack_subscription_with_bicep.yaml | 934 +++ .../resource/tests/latest/test_resource.py | 82 +- 5 files changed, 4095 insertions(+), 4760 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group_with_bicep.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription_with_bicep.yaml diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml index c161e195e1b..75b87bcd55b 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:58:54 GMT + - Tue, 27 Jun 2023 07:53:43 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:58:55 GMT + - Tue, 27 Jun 2023 07:53:44 GMT expires: - '-1' pragma: @@ -112,20 +112,20 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:58:57.2862607Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:53:45.930386Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:58:57.2862607Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:53:45.930386Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '632' + - '630' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:58:57 GMT + - Tue, 27 Jun 2023 07:53:45 GMT expires: - '-1' pragma: @@ -137,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:58:59.3644888Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:53:47.2429086Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:58:59.3644888Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:53:47.2429086Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:58:59 GMT + - Tue, 27 Jun 2023 07:53:47 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -245,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:00 GMT + - Tue, 27 Jun 2023 07:53:47 GMT expires: - '-1' pragma: @@ -306,14 +306,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:01.0743903Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:53:48.2944316Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:01.0743903Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:53:48.2944316Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84?api-version=2022-08-01-preview&t=2023-06-27T04%3a59%3a01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=a7IrWszPqfHw33QKs0hGQfUpycIGQ6wrMDg4yvm8Jni5O7zQhaF8qj004vMLzQ6ZA_jx_71A7XWic_5lWUl1CNAxbH_fwoIrWjZH8kS2EOoMtICXnCNyYmiXsptNX2QL8Y8C3oRbtNaY00xHVLztuYChF4Enw5aCkdINlp9nfx-XkI1fi86IG59CwTu31yg-6W9ZlT-rOtrUBoFpQyr0_fFk9C3eVRspTz5ynS_Oqw92-gzQtnIIUC_hHPvUbjeEBIMnXMLP3yRoKnfjmPlFPe94GB8XXpzXtt1tT9NxfBYdYNZ0hXfRY01AYKc2KNL9OVRzp4amxSGNEKF6YHpSYA&h=W5cH_mw2Tv7Ifh-jkLLrvLaeUovDJjktxaGI_S7hY20 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e289527f-ed70-4fc1-babc-e5773e8f6881?api-version=2022-08-01-preview&t=2023-06-27T07%3a53%3a48&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=V5AA8a1o3lBG-4Ck5ByrwcTwfeG4fXmzgzU4g_Qd611xwtAOYxN_iJt4OJ6aS8fsMft9uOxS67Tr0M6GBOC_9_56S8vtXCZBlWVkyQlRJdnbYtKIR1SYtx-_YEk1uSJwi0FaREdNhwUqDu6mgdY_pz4w0lYYhmtxy-aSaebpa2NOqi2d83sxr-DOeobkBg9Vvz-092IsUWdTZkRc7LcJrc_VURkCC9s5XcH8JPMUXWHSA00HTsG8p2it764zCMivVK9LjCG31QfwZaHk0GbXTsXVnnjx9--P01AlQnwo3LMYylS1uSL7h9nm5bnKeUsr5UdYg-yQnc7-40mlkzjckw&h=g6g8bjjSkrGGlgEHDNreeLPzsazWKqt-qRU9R55N1S0 cache-control: - no-cache content-length: @@ -321,7 +321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:01 GMT + - Tue, 27 Jun 2023 07:53:48 GMT expires: - '-1' pragma: @@ -355,11 +355,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=a7IrWszPqfHw33QKs0hGQfUpycIGQ6wrMDg4yvm8Jni5O7zQhaF8qj004vMLzQ6ZA_jx_71A7XWic_5lWUl1CNAxbH_fwoIrWjZH8kS2EOoMtICXnCNyYmiXsptNX2QL8Y8C3oRbtNaY00xHVLztuYChF4Enw5aCkdINlp9nfx-XkI1fi86IG59CwTu31yg-6W9ZlT-rOtrUBoFpQyr0_fFk9C3eVRspTz5ynS_Oqw92-gzQtnIIUC_hHPvUbjeEBIMnXMLP3yRoKnfjmPlFPe94GB8XXpzXtt1tT9NxfBYdYNZ0hXfRY01AYKc2KNL9OVRzp4amxSGNEKF6YHpSYA&h=W5cH_mw2Tv7Ifh-jkLLrvLaeUovDJjktxaGI_S7hY20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e289527f-ed70-4fc1-babc-e5773e8f6881?api-version=2022-08-01-preview&t=2023-06-27T07%3A53%3A48&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=V5AA8a1o3lBG-4Ck5ByrwcTwfeG4fXmzgzU4g_Qd611xwtAOYxN_iJt4OJ6aS8fsMft9uOxS67Tr0M6GBOC_9_56S8vtXCZBlWVkyQlRJdnbYtKIR1SYtx-_YEk1uSJwi0FaREdNhwUqDu6mgdY_pz4w0lYYhmtxy-aSaebpa2NOqi2d83sxr-DOeobkBg9Vvz-092IsUWdTZkRc7LcJrc_VURkCC9s5XcH8JPMUXWHSA00HTsG8p2it764zCMivVK9LjCG31QfwZaHk0GbXTsXVnnjx9--P01AlQnwo3LMYylS1uSL7h9nm5bnKeUsr5UdYg-yQnc7-40mlkzjckw&h=g6g8bjjSkrGGlgEHDNreeLPzsazWKqt-qRU9R55N1S0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n - \ \"name\": \"a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e289527f-ed70-4fc1-babc-e5773e8f6881\",\r\n + \ \"name\": \"e289527f-ed70-4fc1-babc-e5773e8f6881\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -368,7 +368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:01 GMT + - Tue, 27 Jun 2023 07:53:48 GMT expires: - '-1' pragma: @@ -404,11 +404,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A01&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=a7IrWszPqfHw33QKs0hGQfUpycIGQ6wrMDg4yvm8Jni5O7zQhaF8qj004vMLzQ6ZA_jx_71A7XWic_5lWUl1CNAxbH_fwoIrWjZH8kS2EOoMtICXnCNyYmiXsptNX2QL8Y8C3oRbtNaY00xHVLztuYChF4Enw5aCkdINlp9nfx-XkI1fi86IG59CwTu31yg-6W9ZlT-rOtrUBoFpQyr0_fFk9C3eVRspTz5ynS_Oqw92-gzQtnIIUC_hHPvUbjeEBIMnXMLP3yRoKnfjmPlFPe94GB8XXpzXtt1tT9NxfBYdYNZ0hXfRY01AYKc2KNL9OVRzp4amxSGNEKF6YHpSYA&h=W5cH_mw2Tv7Ifh-jkLLrvLaeUovDJjktxaGI_S7hY20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e289527f-ed70-4fc1-babc-e5773e8f6881?api-version=2022-08-01-preview&t=2023-06-27T07%3A53%3A48&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=V5AA8a1o3lBG-4Ck5ByrwcTwfeG4fXmzgzU4g_Qd611xwtAOYxN_iJt4OJ6aS8fsMft9uOxS67Tr0M6GBOC_9_56S8vtXCZBlWVkyQlRJdnbYtKIR1SYtx-_YEk1uSJwi0FaREdNhwUqDu6mgdY_pz4w0lYYhmtxy-aSaebpa2NOqi2d83sxr-DOeobkBg9Vvz-092IsUWdTZkRc7LcJrc_VURkCC9s5XcH8JPMUXWHSA00HTsG8p2it764zCMivVK9LjCG31QfwZaHk0GbXTsXVnnjx9--P01AlQnwo3LMYylS1uSL7h9nm5bnKeUsr5UdYg-yQnc7-40mlkzjckw&h=g6g8bjjSkrGGlgEHDNreeLPzsazWKqt-qRU9R55N1S0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n - \ \"name\": \"a8f8019f-d12f-46ac-9037-e9100098ee84\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e289527f-ed70-4fc1-babc-e5773e8f6881\",\r\n + \ \"name\": \"e289527f-ed70-4fc1-babc-e5773e8f6881\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -417,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:31 GMT + - Tue, 27 Jun 2023 07:54:19 GMT expires: - '-1' pragma: @@ -459,8 +459,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-01-d35c4\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.1608455S\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-53-48-20cb3\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.3809804S\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n @@ -473,9 +473,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:01.0743903Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:53:48.2944316Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:01.0743903Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:53:48.2944316Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -486,7 +486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:31 GMT + - Tue, 27 Jun 2023 07:54:19 GMT expires: - '-1' pragma: @@ -526,8 +526,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-01-d35c4\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.1608455S\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-53-48-20cb3\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.3809804S\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n @@ -540,9 +540,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:01.0743903Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:53:48.2944316Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:01.0743903Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:53:48.2944316Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:32 GMT + - Tue, 27 Jun 2023 07:54:20 GMT expires: - '-1' pragma: @@ -599,7 +599,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:59:32 GMT + - Tue, 27 Jun 2023 07:54:20 GMT expires: - '-1' pragma: @@ -646,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:33 GMT + - Tue, 27 Jun 2023 07:54:20 GMT expires: - '-1' pragma: @@ -693,9 +693,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:58:59.3644888Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:53:47.2429086Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:58:59.3644888Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:53:47.2429086Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -707,7 +707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:34 GMT + - Tue, 27 Jun 2023 07:54:21 GMT expires: - '-1' pragma: @@ -761,22 +761,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:35.477424Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:21.7594351Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:35.477424Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:21.7594351Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c?api-version=2022-08-01-preview&t=2023-06-27T04%3a59%3a35&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=VG7yjYamc8Q4mVe2LuFmH_ZxH5FyuKGpFe_r8h9iH1y108O-5na4JoaJ-h27gOfJFPCf8x7PIl-KVhXNlQ-AzK7i_WQPM_-X5dr5Tk_7FNhB27lumFEwsyoW7hnI8InmHEQ5PvEFQhAon1MZyj5bKhAudSO06-pP5akjgJpfcaaVq9JTwn0CsGy2r-DocEyKoV7_PBUwS05DsFSIh0H7n0-vyo2sxe4KlWzMhXX8ZpCbit6JWdYP5-7F9RTGgn6Yfqkk5Ig6IpkisRZRGWZs2fADryEsvfUb2a5v9Ujbkrk6BPpEcDYBc97XjWoBVr3WlVISdEPGiJpC0GT9rcOMBw&h=1i6HTjjCPjtAtZxs3Mv9xccXjZLPvikhcOk2dQs0pY0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c56f3469-a1cd-4022-98e4-2ae917683974?api-version=2022-08-01-preview&t=2023-06-27T07%3a54%3a21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=ugUHI24D_rFqQhMgUNU85S2GnsD7qr9bx3syiGElllxPpsHinb1Ru0P6GnaSSIlJ19L4S96Kf_4yGRMNHWa2VAWLlOzY7hFtV8UHeYvLN6RZ3ZFxlKNwBaBBA4m2QDSqRsmSh28SLZossS3tttYadmFPDhDLvVXuPXJnNY-hDh2u0wB-cEtZDUGWfRIqklbzWTpm45Y_E2yRuYTx27-T8Ra3delle5IQSWUCmqoFDhkm83GnnjzcFZ5WSVApnsJTP8rWED-535hmGtT2Qpb2hvghj9JTlbu90V0cKG-ORJi2t8mkwmMl0tUQovjfC6pvskgffhY08pPcX-q-Pxy6WQ&h=1CKCmMurQjb9S9gIFKpRN7jjktB_r17qGqReVVJah00 cache-control: - no-cache content-length: - - '1334' + - '1336' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:35 GMT + - Tue, 27 Jun 2023 07:54:21 GMT expires: - '-1' pragma: @@ -809,11 +809,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A35&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=VG7yjYamc8Q4mVe2LuFmH_ZxH5FyuKGpFe_r8h9iH1y108O-5na4JoaJ-h27gOfJFPCf8x7PIl-KVhXNlQ-AzK7i_WQPM_-X5dr5Tk_7FNhB27lumFEwsyoW7hnI8InmHEQ5PvEFQhAon1MZyj5bKhAudSO06-pP5akjgJpfcaaVq9JTwn0CsGy2r-DocEyKoV7_PBUwS05DsFSIh0H7n0-vyo2sxe4KlWzMhXX8ZpCbit6JWdYP5-7F9RTGgn6Yfqkk5Ig6IpkisRZRGWZs2fADryEsvfUb2a5v9Ujbkrk6BPpEcDYBc97XjWoBVr3WlVISdEPGiJpC0GT9rcOMBw&h=1i6HTjjCPjtAtZxs3Mv9xccXjZLPvikhcOk2dQs0pY0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c56f3469-a1cd-4022-98e4-2ae917683974?api-version=2022-08-01-preview&t=2023-06-27T07%3A54%3A21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=ugUHI24D_rFqQhMgUNU85S2GnsD7qr9bx3syiGElllxPpsHinb1Ru0P6GnaSSIlJ19L4S96Kf_4yGRMNHWa2VAWLlOzY7hFtV8UHeYvLN6RZ3ZFxlKNwBaBBA4m2QDSqRsmSh28SLZossS3tttYadmFPDhDLvVXuPXJnNY-hDh2u0wB-cEtZDUGWfRIqklbzWTpm45Y_E2yRuYTx27-T8Ra3delle5IQSWUCmqoFDhkm83GnnjzcFZ5WSVApnsJTP8rWED-535hmGtT2Qpb2hvghj9JTlbu90V0cKG-ORJi2t8mkwmMl0tUQovjfC6pvskgffhY08pPcX-q-Pxy6WQ&h=1CKCmMurQjb9S9gIFKpRN7jjktB_r17qGqReVVJah00 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n - \ \"name\": \"b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c56f3469-a1cd-4022-98e4-2ae917683974\",\r\n + \ \"name\": \"c56f3469-a1cd-4022-98e4-2ae917683974\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -822,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:59:35 GMT + - Tue, 27 Jun 2023 07:54:22 GMT expires: - '-1' pragma: @@ -857,11 +857,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c?api-version=2022-08-01-preview&t=2023-06-27T04%3A59%3A35&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=VG7yjYamc8Q4mVe2LuFmH_ZxH5FyuKGpFe_r8h9iH1y108O-5na4JoaJ-h27gOfJFPCf8x7PIl-KVhXNlQ-AzK7i_WQPM_-X5dr5Tk_7FNhB27lumFEwsyoW7hnI8InmHEQ5PvEFQhAon1MZyj5bKhAudSO06-pP5akjgJpfcaaVq9JTwn0CsGy2r-DocEyKoV7_PBUwS05DsFSIh0H7n0-vyo2sxe4KlWzMhXX8ZpCbit6JWdYP5-7F9RTGgn6Yfqkk5Ig6IpkisRZRGWZs2fADryEsvfUb2a5v9Ujbkrk6BPpEcDYBc97XjWoBVr3WlVISdEPGiJpC0GT9rcOMBw&h=1i6HTjjCPjtAtZxs3Mv9xccXjZLPvikhcOk2dQs0pY0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c56f3469-a1cd-4022-98e4-2ae917683974?api-version=2022-08-01-preview&t=2023-06-27T07%3A54%3A21&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=ugUHI24D_rFqQhMgUNU85S2GnsD7qr9bx3syiGElllxPpsHinb1Ru0P6GnaSSIlJ19L4S96Kf_4yGRMNHWa2VAWLlOzY7hFtV8UHeYvLN6RZ3ZFxlKNwBaBBA4m2QDSqRsmSh28SLZossS3tttYadmFPDhDLvVXuPXJnNY-hDh2u0wB-cEtZDUGWfRIqklbzWTpm45Y_E2yRuYTx27-T8Ra3delle5IQSWUCmqoFDhkm83GnnjzcFZ5WSVApnsJTP8rWED-535hmGtT2Qpb2hvghj9JTlbu90V0cKG-ORJi2t8mkwmMl0tUQovjfC6pvskgffhY08pPcX-q-Pxy6WQ&h=1CKCmMurQjb9S9gIFKpRN7jjktB_r17qGqReVVJah00 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n - \ \"name\": \"b47be969-feb1-4a71-89bf-a215efd7536c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c56f3469-a1cd-4022-98e4-2ae917683974\",\r\n + \ \"name\": \"c56f3469-a1cd-4022-98e4-2ae917683974\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -870,7 +870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:06 GMT + - Tue, 27 Jun 2023 07:54:51 GMT expires: - '-1' pragma: @@ -911,8 +911,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-35-f96a5\",\r\n - \ \"duration\": \"PT7.904289S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-54-21-39a8f\",\r\n + \ \"duration\": \"PT7.3978097S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -924,20 +924,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:35.477424Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:21.7594351Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:35.477424Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:21.7594351Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1891' + - '1894' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:06 GMT + - Tue, 27 Jun 2023 07:54:51 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-04-59-35-f96a5\",\r\n - \ \"duration\": \"PT7.904289S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-54-21-39a8f\",\r\n + \ \"duration\": \"PT7.3978097S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -990,20 +990,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:59:35.477424Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:21.7594351Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:59:35.477424Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:21.7594351Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1891' + - '1894' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:07 GMT + - Tue, 27 Jun 2023 07:54:53 GMT expires: - '-1' pragma: @@ -1049,7 +1049,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:00:08 GMT + - Tue, 27 Jun 2023 07:54:53 GMT expires: - '-1' pragma: @@ -1077,7 +1077,8 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1095,7 +1096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:08 GMT + - Tue, 27 Jun 2023 07:54:53 GMT expires: - '-1' pragma: @@ -1112,15 +1113,22 @@ interactions: - request: body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.17.1.54307", "templateHash": "991381235984945273"}}, "parameters": {"location": - {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": - "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": - 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": - "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], - "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}}, "parameters": {}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": - false}}}' + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "delete"}, "denySettings": + {"applyToChildScopes": false}}}' headers: Accept: - application/json @@ -1131,11 +1139,12 @@ interactions: Connection: - keep-alive Content-Length: - - '919' + - '1512' Content-Type: - application/json ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -1143,28 +1152,30 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T05:00:13.8123443Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:13.8123443Z\"\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:54.9793814Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7?api-version=2022-08-01-preview&t=2023-06-27T05%3a00%3a14&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vkJfT3FRaHsMA8b3o3T1X574qIuIspryj3Pm-fFC_zIgws5jEzR7SuRK9reLDKAIJznTEcXFBjGWxhn2e2sDF2c8O9WEGELTqScf6vejK8Rts_1Js8EJeD7fZFyAqnA4JVMiEnpsC55u00M9bVCzdz6DB_3v_c7eytJDZKX1oC2QANTI28TSDStydOHUzxLpiInK9Yamcqjb0nmmdKnZT1IXkfCeK8SHbMkM_v1yOp3605Y4qyUqHGPbK72iuJ9RzFOu-Qizh5JZNdXluJThdONRB-AK41OCMBd6w5Sod3PJ0PwttGVafOgzH1YqNDv2rs8zVMAw8tKWcs2_yoX5aQ&h=xbBitzAzQjYU79GhtyL0rR0ooTSccYfFhekjQDA0uA0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d52f3f33-b6e1-4ed6-96b7-aab30697ef82?api-version=2022-08-01-preview&t=2023-06-27T07%3a54%3a55&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=M-_2saLV9ZXboetpOQ0rhmY-9VJ7nky4BdJw0_4rFbQFFBskrqOPTY1cc5CClet3VhwOea1q7uxBnFl00JA5RdKQJZwWVmk53EGM1dH2Hn8kcoT1Uj7zdHIOMq2Gr7-Cwn8h14gh7raH3zYgdNzZ2MmtWLS9-o2kt1Votod39cA3R4FS--Pu5i1jP3Zy6unKVR6f2ZII6Mxa0vB-iLrRrEoZalSw8JpwAhOaSX8ux1unL2_vAsnvkGWWaa_9ATeZgxK4TAr41UmjKzhKq0eLoQhcMCBJD6tPrpYnCuC-rSMGsAdQWoN4hTE4GfC_bQLL4e5XAIRI09wYsjkyWxFCIQ&h=AzhkwwLxe2N6vPWvgEXjALTVLu-totiXWQIAc3bsE_Q cache-control: - no-cache content-length: - - '1064' + - '1171' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:13 GMT + - Tue, 27 Jun 2023 07:54:54 GMT expires: - '-1' pragma: @@ -1192,15 +1203,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A14&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vkJfT3FRaHsMA8b3o3T1X574qIuIspryj3Pm-fFC_zIgws5jEzR7SuRK9reLDKAIJznTEcXFBjGWxhn2e2sDF2c8O9WEGELTqScf6vejK8Rts_1Js8EJeD7fZFyAqnA4JVMiEnpsC55u00M9bVCzdz6DB_3v_c7eytJDZKX1oC2QANTI28TSDStydOHUzxLpiInK9Yamcqjb0nmmdKnZT1IXkfCeK8SHbMkM_v1yOp3605Y4qyUqHGPbK72iuJ9RzFOu-Qizh5JZNdXluJThdONRB-AK41OCMBd6w5Sod3PJ0PwttGVafOgzH1YqNDv2rs8zVMAw8tKWcs2_yoX5aQ&h=xbBitzAzQjYU79GhtyL0rR0ooTSccYfFhekjQDA0uA0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d52f3f33-b6e1-4ed6-96b7-aab30697ef82?api-version=2022-08-01-preview&t=2023-06-27T07%3A54%3A55&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=M-_2saLV9ZXboetpOQ0rhmY-9VJ7nky4BdJw0_4rFbQFFBskrqOPTY1cc5CClet3VhwOea1q7uxBnFl00JA5RdKQJZwWVmk53EGM1dH2Hn8kcoT1Uj7zdHIOMq2Gr7-Cwn8h14gh7raH3zYgdNzZ2MmtWLS9-o2kt1Votod39cA3R4FS--Pu5i1jP3Zy6unKVR6f2ZII6Mxa0vB-iLrRrEoZalSw8JpwAhOaSX8ux1unL2_vAsnvkGWWaa_9ATeZgxK4TAr41UmjKzhKq0eLoQhcMCBJD6tPrpYnCuC-rSMGsAdQWoN4hTE4GfC_bQLL4e5XAIRI09wYsjkyWxFCIQ&h=AzhkwwLxe2N6vPWvgEXjALTVLu-totiXWQIAc3bsE_Q response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7\",\r\n - \ \"name\": \"91242e57-57c9-4567-850e-980da38802b7\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d52f3f33-b6e1-4ed6-96b7-aab30697ef82\",\r\n + \ \"name\": \"d52f3f33-b6e1-4ed6-96b7-aab30697ef82\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1209,7 +1221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:13 GMT + - Tue, 27 Jun 2023 07:54:54 GMT expires: - '-1' pragma: @@ -1239,15 +1251,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A14&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=vkJfT3FRaHsMA8b3o3T1X574qIuIspryj3Pm-fFC_zIgws5jEzR7SuRK9reLDKAIJznTEcXFBjGWxhn2e2sDF2c8O9WEGELTqScf6vejK8Rts_1Js8EJeD7fZFyAqnA4JVMiEnpsC55u00M9bVCzdz6DB_3v_c7eytJDZKX1oC2QANTI28TSDStydOHUzxLpiInK9Yamcqjb0nmmdKnZT1IXkfCeK8SHbMkM_v1yOp3605Y4qyUqHGPbK72iuJ9RzFOu-Qizh5JZNdXluJThdONRB-AK41OCMBd6w5Sod3PJ0PwttGVafOgzH1YqNDv2rs8zVMAw8tKWcs2_yoX5aQ&h=xbBitzAzQjYU79GhtyL0rR0ooTSccYfFhekjQDA0uA0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d52f3f33-b6e1-4ed6-96b7-aab30697ef82?api-version=2022-08-01-preview&t=2023-06-27T07%3A54%3A55&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=M-_2saLV9ZXboetpOQ0rhmY-9VJ7nky4BdJw0_4rFbQFFBskrqOPTY1cc5CClet3VhwOea1q7uxBnFl00JA5RdKQJZwWVmk53EGM1dH2Hn8kcoT1Uj7zdHIOMq2Gr7-Cwn8h14gh7raH3zYgdNzZ2MmtWLS9-o2kt1Votod39cA3R4FS--Pu5i1jP3Zy6unKVR6f2ZII6Mxa0vB-iLrRrEoZalSw8JpwAhOaSX8ux1unL2_vAsnvkGWWaa_9ATeZgxK4TAr41UmjKzhKq0eLoQhcMCBJD6tPrpYnCuC-rSMGsAdQWoN4hTE4GfC_bQLL4e5XAIRI09wYsjkyWxFCIQ&h=AzhkwwLxe2N6vPWvgEXjALTVLu-totiXWQIAc3bsE_Q response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/91242e57-57c9-4567-850e-980da38802b7\",\r\n - \ \"name\": \"91242e57-57c9-4567-850e-980da38802b7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d52f3f33-b6e1-4ed6-96b7-aab30697ef82\",\r\n + \ \"name\": \"d52f3f33-b6e1-4ed6-96b7-aab30697ef82\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1256,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:44 GMT + - Tue, 27 Jun 2023 07:55:25 GMT expires: - '-1' pragma: @@ -1286,7 +1299,8 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes --delete-resources --delete-resource-groups User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1294,33 +1308,34 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-13-96dda\",\r\n - \ \"duration\": \"PT7.9858688S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n - \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-54-55-d56a4\",\r\n + \ \"duration\": \"PT4.9228881S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:13.8123443Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:13.8123443Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:54.9793814Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1851' + - '1987' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:44 GMT + - Tue, 27 Jun 2023 07:55:25 GMT expires: - '-1' pragma: @@ -1346,11 +1361,12 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack group delete + - stack group create Connection: - keep-alive ParameterSetName: - - --name --resource-group --yes + - --name --resource-group --template-file --deny-settings-mode --parameters + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1358,33 +1374,34 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-13-96dda\",\r\n - \ \"duration\": \"PT7.9858688S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n - \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-54-55-d56a4\",\r\n + \ \"duration\": \"PT4.9228881S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:13.8123443Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:13.8123443Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:54.9793814Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1851' + - '1987' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:45 GMT + - Tue, 27 Jun 2023 07:55:26 GMT expires: - '-1' pragma: @@ -1402,95 +1419,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --resource-group --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:00:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --delete-resources --delete-resource-groups - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n - \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' - could not be found.\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '333' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:00:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 404 - message: Not Found - request: body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": @@ -1507,8 +1435,8 @@ interactions: "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', - parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, - "actionOnUnmanage": {"resources": "delete", "resourceGroups": "delete"}, "denySettings": + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": false}}}' headers: Accept: @@ -1525,7 +1453,7 @@ interactions: - application/json ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --delete-resources --delete-resource-groups + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -1533,22 +1461,22 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:46.9082968Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:55:27.0462604Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403?api-version=2022-08-01-preview&t=2023-06-27T05%3a00%3a47&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=h307gXVumxxCciF9cku-Quxxlv5C-P8F3vMs3-qNIVtJo9fWFQIqRETUkfg-P97M1FqSZplPJ0-Gud_M7gYXZIw795crZxCOysLBZK4iCqqGuBhEc7M1krQv15Dcr5sIrSMiScGoMzuPlTtz1OF2hMAa5dqPRGX5_Hrbq2ijUWLU0GcP02o5DDe2LWjfINxiELHetrwO7NO7vLIAZ_ufl_MBSIn4Wi9mlvWEeWsfcpY9mkoIxkKoQmpv1eQ-TD1nuhPZ32zFdrxnWrHQhWl3hR7pnAPgwHvGrS0yJODv59MbxLeITKQqLL20PUju3RCFG68WpjBOTx61ZTmjQyOaxQ&h=nzxPObN9hFNWrjiBdZMzf31NDqNlbL5bazwXcmOInGA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577e65af-2de6-4c55-b95a-400a0794eaac?api-version=2022-08-01-preview&t=2023-06-27T07%3a55%3a27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=c1j8xjDEI2L2JSaRjfPXNSPhtvhL44U5XA-CHmHTxZ0qLNDC_mlca9cShS030tdTCsLmshJE2v66Td5CurY38fx5zG49LseDA_SuiS04dhzeAGRLJSqvFjwIQChiXXrbvn9A9HbNw10wa4eOQhXu-m0xDhqlS5pSW2CJaoQTMCbusYrAjf0d4nKzK1oNJ6_COG6OzUkNd6BpMq4vOOk3QUu_zxkqQGMlpmHwNF5y7aB5VcnwUTBcQgZERY9OBZ6k4jBwNypqkSljpi3FcX6w7pWBTuPxqh4guEKA3PglSnGx284E9YbZGotpT6nciwDMQRPd9utBuVgkxEHt5f0xGg&h=HNsTKNvuOkGbGWK4gJCdwskgsU2uo0skBvH5vsvyLdI cache-control: - no-cache content-length: @@ -1556,7 +1484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:46 GMT + - Tue, 27 Jun 2023 07:55:26 GMT expires: - '-1' pragma: @@ -1565,13 +1493,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1585,15 +1517,15 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --delete-resources --delete-resource-groups + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A47&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=h307gXVumxxCciF9cku-Quxxlv5C-P8F3vMs3-qNIVtJo9fWFQIqRETUkfg-P97M1FqSZplPJ0-Gud_M7gYXZIw795crZxCOysLBZK4iCqqGuBhEc7M1krQv15Dcr5sIrSMiScGoMzuPlTtz1OF2hMAa5dqPRGX5_Hrbq2ijUWLU0GcP02o5DDe2LWjfINxiELHetrwO7NO7vLIAZ_ufl_MBSIn4Wi9mlvWEeWsfcpY9mkoIxkKoQmpv1eQ-TD1nuhPZ32zFdrxnWrHQhWl3hR7pnAPgwHvGrS0yJODv59MbxLeITKQqLL20PUju3RCFG68WpjBOTx61ZTmjQyOaxQ&h=nzxPObN9hFNWrjiBdZMzf31NDqNlbL5bazwXcmOInGA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577e65af-2de6-4c55-b95a-400a0794eaac?api-version=2022-08-01-preview&t=2023-06-27T07%3A55%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=c1j8xjDEI2L2JSaRjfPXNSPhtvhL44U5XA-CHmHTxZ0qLNDC_mlca9cShS030tdTCsLmshJE2v66Td5CurY38fx5zG49LseDA_SuiS04dhzeAGRLJSqvFjwIQChiXXrbvn9A9HbNw10wa4eOQhXu-m0xDhqlS5pSW2CJaoQTMCbusYrAjf0d4nKzK1oNJ6_COG6OzUkNd6BpMq4vOOk3QUu_zxkqQGMlpmHwNF5y7aB5VcnwUTBcQgZERY9OBZ6k4jBwNypqkSljpi3FcX6w7pWBTuPxqh4guEKA3PglSnGx284E9YbZGotpT6nciwDMQRPd9utBuVgkxEHt5f0xGg&h=HNsTKNvuOkGbGWK4gJCdwskgsU2uo0skBvH5vsvyLdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n - \ \"name\": \"8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577e65af-2de6-4c55-b95a-400a0794eaac\",\r\n + \ \"name\": \"577e65af-2de6-4c55-b95a-400a0794eaac\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1602,7 +1534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:00:47 GMT + - Tue, 27 Jun 2023 07:55:26 GMT expires: - '-1' pragma: @@ -1633,15 +1565,15 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --delete-resources --delete-resource-groups + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403?api-version=2022-08-01-preview&t=2023-06-27T05%3A00%3A47&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=h307gXVumxxCciF9cku-Quxxlv5C-P8F3vMs3-qNIVtJo9fWFQIqRETUkfg-P97M1FqSZplPJ0-Gud_M7gYXZIw795crZxCOysLBZK4iCqqGuBhEc7M1krQv15Dcr5sIrSMiScGoMzuPlTtz1OF2hMAa5dqPRGX5_Hrbq2ijUWLU0GcP02o5DDe2LWjfINxiELHetrwO7NO7vLIAZ_ufl_MBSIn4Wi9mlvWEeWsfcpY9mkoIxkKoQmpv1eQ-TD1nuhPZ32zFdrxnWrHQhWl3hR7pnAPgwHvGrS0yJODv59MbxLeITKQqLL20PUju3RCFG68WpjBOTx61ZTmjQyOaxQ&h=nzxPObN9hFNWrjiBdZMzf31NDqNlbL5bazwXcmOInGA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577e65af-2de6-4c55-b95a-400a0794eaac?api-version=2022-08-01-preview&t=2023-06-27T07%3A55%3A27&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=c1j8xjDEI2L2JSaRjfPXNSPhtvhL44U5XA-CHmHTxZ0qLNDC_mlca9cShS030tdTCsLmshJE2v66Td5CurY38fx5zG49LseDA_SuiS04dhzeAGRLJSqvFjwIQChiXXrbvn9A9HbNw10wa4eOQhXu-m0xDhqlS5pSW2CJaoQTMCbusYrAjf0d4nKzK1oNJ6_COG6OzUkNd6BpMq4vOOk3QUu_zxkqQGMlpmHwNF5y7aB5VcnwUTBcQgZERY9OBZ6k4jBwNypqkSljpi3FcX6w7pWBTuPxqh4guEKA3PglSnGx284E9YbZGotpT6nciwDMQRPd9utBuVgkxEHt5f0xGg&h=HNsTKNvuOkGbGWK4gJCdwskgsU2uo0skBvH5vsvyLdI response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n - \ \"name\": \"8b61be9d-5f4e-433a-b451-9dd754ce9403\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/577e65af-2de6-4c55-b95a-400a0794eaac\",\r\n + \ \"name\": \"577e65af-2de6-4c55-b95a-400a0794eaac\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1650,7 +1582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:17 GMT + - Tue, 27 Jun 2023 07:55:56 GMT expires: - '-1' pragma: @@ -1681,7 +1613,7 @@ interactions: - keep-alive ParameterSetName: - --name --resource-group --template-file --deny-settings-mode --parameters - --yes --delete-resources --delete-resource-groups + --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1689,34 +1621,36 @@ interactions: response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-46-34303\",\r\n - \ \"duration\": \"PT9.7597434S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-55-27-66629\",\r\n + \ \"duration\": \"PT5.3894057S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:46.9082968Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:55:27.0462604Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1987' + - '2420' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:17 GMT + - Tue, 27 Jun 2023 07:55:56 GMT expires: - '-1' pragma: @@ -1742,330 +1676,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack group create + - resource show Connection: - keep-alive ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --parameters - --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-00-46-34303\",\r\n - \ \"duration\": \"PT9.7597434S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:46.9082968Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1987' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:01:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": - {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, - "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, - "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", - "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", - "properties": {"displayName": "DanteTemplateSpec", "description": "Template - Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", - "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), - parameters(''specVersionName''))]", "location": "[parameters(''location'')]", - "properties": {"description": "generated version number for testing stacks", - "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": - {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', - parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "denySettings": - {"applyToChildScopes": false}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - Content-Length: - - '1512' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --parameters - --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:19.2932618Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65?api-version=2022-08-01-preview&t=2023-06-27T05%3a01%3a19&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Q-JWaaQ6dFyXF7gTEE7C649_l4e6Xv889uHsfPGhisVvDIayghsBTUdZa0Rgn65a1VhGU9GhJv0ADuO-TIE1G2tpEqXyMSqC0ZnWxG7WcOL0hDbwg6j52dDx0Oac8PM8QS8v51VHedoc6y250GjmiqAxTgrlc6GQgL0zIAL2U33GSE1MTKOTIJo4kdJlsYPt0Wn6xJm4_lEN_kUUlWX212CRgSTNuA_xGgDLUjOE4Ktf7PGI31533eyi0C0DmCT3vk0VfIuedfUfqowEHvWPke15QhrB93MlagzB5X3oCwBTCtPSjZiUTrNVSRkFXK2PzgOqpySr_7Usct4ZccK8SQ&h=6XQ_kGGtE3t99-CXe7saU5-KM-9SAfQMGn7EvpDADXA - cache-control: - - no-cache - content-length: - - '1171' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:01:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --parameters - --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A19&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Q-JWaaQ6dFyXF7gTEE7C649_l4e6Xv889uHsfPGhisVvDIayghsBTUdZa0Rgn65a1VhGU9GhJv0ADuO-TIE1G2tpEqXyMSqC0ZnWxG7WcOL0hDbwg6j52dDx0Oac8PM8QS8v51VHedoc6y250GjmiqAxTgrlc6GQgL0zIAL2U33GSE1MTKOTIJo4kdJlsYPt0Wn6xJm4_lEN_kUUlWX212CRgSTNuA_xGgDLUjOE4Ktf7PGI31533eyi0C0DmCT3vk0VfIuedfUfqowEHvWPke15QhrB93MlagzB5X3oCwBTCtPSjZiUTrNVSRkFXK2PzgOqpySr_7Usct4ZccK8SQ&h=6XQ_kGGtE3t99-CXe7saU5-KM-9SAfQMGn7EvpDADXA - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n - \ \"name\": \"356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n \"status\": \"initializing\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '263' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:01:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --parameters - --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A19&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Q-JWaaQ6dFyXF7gTEE7C649_l4e6Xv889uHsfPGhisVvDIayghsBTUdZa0Rgn65a1VhGU9GhJv0ADuO-TIE1G2tpEqXyMSqC0ZnWxG7WcOL0hDbwg6j52dDx0Oac8PM8QS8v51VHedoc6y250GjmiqAxTgrlc6GQgL0zIAL2U33GSE1MTKOTIJo4kdJlsYPt0Wn6xJm4_lEN_kUUlWX212CRgSTNuA_xGgDLUjOE4Ktf7PGI31533eyi0C0DmCT3vk0VfIuedfUfqowEHvWPke15QhrB93MlagzB5X3oCwBTCtPSjZiUTrNVSRkFXK2PzgOqpySr_7Usct4ZccK8SQ&h=6XQ_kGGtE3t99-CXe7saU5-KM-9SAfQMGn7EvpDADXA - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n - \ \"name\": \"356a2ecb-873d-4397-9771-588aeb7cec65\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --template-file --deny-settings-mode --parameters - --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-19-fb379\",\r\n - \ \"duration\": \"PT9.301829S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:19.2932618Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2419' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East @@ -2168,7 +1787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:51 GMT + - Tue, 27 Jun 2023 07:55:59 GMT expires: - '-1' pragma: @@ -2204,9 +1823,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:51.0195219Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:56.7795468Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:00:52.5039674Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:54:57.1701903Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2217,7 +1836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:52 GMT + - Tue, 27 Jun 2023 07:55:59 GMT expires: - '-1' pragma: @@ -2354,7 +1973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:53 GMT + - Tue, 27 Jun 2023 07:56:01 GMT expires: - '-1' pragma: @@ -2390,20 +2009,20 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:01:23.8089703Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:55:29.3997869Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:25.1840392Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:55:29.790469Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" headers: cache-control: - no-cache content-length: - - '716' + - '715' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:54 GMT + - Tue, 27 Jun 2023 07:56:02 GMT expires: - '-1' pragma: @@ -2444,8 +2063,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-19-fb379\",\r\n - \ \"duration\": \"PT9.301829S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-55-27-66629\",\r\n + \ \"duration\": \"PT5.3894057S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2458,20 +2077,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:19.2932618Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:55:27.0462604Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2419' + - '2420' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:55 GMT + - Tue, 27 Jun 2023 07:56:02 GMT expires: - '-1' pragma: @@ -2539,14 +2158,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:55.8014434Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:56:03.3101175Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3a01%3a56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3a56%3a03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw cache-control: - no-cache content-length: @@ -2554,7 +2173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:56 GMT + - Tue, 27 Jun 2023 07:56:03 GMT expires: - '-1' pragma: @@ -2591,11 +2210,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3A56%3A03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n - \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n + \ \"name\": \"b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2604,7 +2223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:01:56 GMT + - Tue, 27 Jun 2023 07:56:03 GMT expires: - '-1' pragma: @@ -2639,11 +2258,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3A56%3A03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n - \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n + \ \"name\": \"b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2652,7 +2271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:02:26 GMT + - Tue, 27 Jun 2023 07:56:33 GMT expires: - '-1' pragma: @@ -2687,11 +2306,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3A56%3A03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n - \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n + \ \"name\": \"b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2700,7 +2319,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:02:56 GMT + - Tue, 27 Jun 2023 07:57:04 GMT expires: - '-1' pragma: @@ -2735,11 +2354,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3A56%3A03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n - \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n + \ \"name\": \"b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2748,7 +2367,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:03:27 GMT + - Tue, 27 Jun 2023 07:57:34 GMT expires: - '-1' pragma: @@ -2783,11 +2402,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3A56%3A03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n - \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n + \ \"name\": \"b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -2796,7 +2415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:03:57 GMT + - Tue, 27 Jun 2023 07:58:04 GMT expires: - '-1' pragma: @@ -2831,11 +2450,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227?api-version=2022-08-01-preview&t=2023-06-27T05%3A01%3A56&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=snAzct6mmR0oOa8LqBzwSq-IioX8LpyvuUbdzWxRIBzq-oV3Myz5hNcH-UvguVVOYzwXv9XRLM_crkGvm0SVbmCbX87x0YnpF6o8159w5NZddGBY3_8cYtoss6nMR_1Onk_qUHgG3-ufrrB8-oxqpOgjMFR2WGCxLsURajiqqcSDqX654R1tiItk6DKcuL9YVhOFHn55P6WdIEZr3Vi-tQ7sh42yGibocDs6F6P9vFAcZ6-ZbLXChPXf0AouAPY6ZjTyy1-XypOoy1D8EGbM9iEz_E-Dt3hV7u9PKUHKpsioPSNcBEifL83hgc5sZdl0lUQFZqnMGehuoMJ4E5InAQ&h=kJx6a2FRONk0Z6Zhhex3714gUyPKE_VmowLhuE4PRdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae?api-version=2022-08-01-preview&t=2023-06-27T07%3A56%3A03&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=DDyUzi8goBLiJlNpzlneZxi1akrb1ICYMo3M_PTOeLbNzEic7aiUgU_zIXf1X8GlOJjQWbErizW8lu0ArN8pQIYMMUIvigHwShxXplSzGoFXYz7QRjwfM5hz1lnruPc_QXUdnobGHD0Bvacis_O8CHWL67rulK83kfcLLcmijlOv3Cs0e-LObsAyGx_S3-BVeT9XnyQulpvzovJpQbgkNyuiSEuzummjIsYvbe7_Hi_NOanIP666XREOOe-y_sb1zUg8kv_LciduNBVDrPFJYGvqmbWrx73oDsEedcw6uiS5-cmuenUSoOxO4vJbLQAO7P0wlbNJTJbyukacf5xuYg&h=3qDuYZfuGSrryIRD15F5oybHPfCp6hQNmj5fdMoo_Kw response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n - \ \"name\": \"f8e06197-50a8-4bf6-82ef-6a2c3d703227\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n + \ \"name\": \"b8e0c881-73aa-4621-8069-76c4524427ae\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -2844,7 +2463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:27 GMT + - Tue, 27 Jun 2023 07:58:35 GMT expires: - '-1' pragma: @@ -2885,8 +2504,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-55-36fde\",\r\n - \ \"duration\": \"PT2M15.790663S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-56-03-f1e4e\",\r\n + \ \"duration\": \"PT2M16.1115769S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -2899,20 +2518,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T05:01:55.8014434Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T07:56:03.3101175Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2428' + - '2429' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:27 GMT + - Tue, 27 Jun 2023 07:58:35 GMT expires: - '-1' pragma: @@ -3049,7 +2668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:29 GMT + - Tue, 27 Jun 2023 07:58:37 GMT expires: - '-1' pragma: @@ -3085,9 +2704,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:01:58.2983916Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:56:05.6651765Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:01:58.6577085Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:56:06.0246016Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: @@ -3098,7 +2717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:31 GMT + - Tue, 27 Jun 2023 07:58:37 GMT expires: - '-1' pragma: @@ -3138,8 +2757,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-01-55-36fde\",\r\n - \ \"duration\": \"PT2M15.790663S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-56-03-f1e4e\",\r\n + \ \"duration\": \"PT2M16.1115769S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -3152,20 +2771,20 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T05:00:46.9082968Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T07:54:54.9793814Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T05:01:55.8014434Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T07:56:03.3101175Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2428' + - '2429' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:32 GMT + - Tue, 27 Jun 2023 07:58:38 GMT expires: - '-1' pragma: @@ -3211,7 +2830,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:04:32 GMT + - Tue, 27 Jun 2023 07:58:38 GMT expires: - '-1' pragma: @@ -3259,7 +2878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:33 GMT + - Tue, 27 Jun 2023 07:58:39 GMT expires: - '-1' pragma: @@ -3303,7 +2922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:35 GMT + - Tue, 27 Jun 2023 07:58:41 GMT expires: - '-1' pragma: @@ -3368,14 +2987,14 @@ interactions: \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:58:41.2631745Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:04:36.0233556Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:58:41.2631745Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3a04%3a36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1?api-version=2022-08-01-preview&t=2023-06-27T07%3a58%3a41&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=TcvNNbCoAHlx3eOrFA-rugDkWH_1g0q5QioTkarCuAs_bg6LLgadwjjrp7hJD92nayGkkRHp_6-OXaYgp2diOEkgMuzC8hFXwkJhGUgVnWb_-amsDTc0M0P7hNP8zdqMWD-PQYEeGiAu1YnZ0jqgAZ8DAZXQFNux-TMCmGEe6KK9l28ViJfN3SOt5kFDhs8EsxTU1aa7uwLASkoIvSbFZJBe_1MNNmX--BcW3sz_TevZ6CdosHon4A0n7Qyz6GL2U6VUAczcP_OWaPI88uQ2EHFmse1vo3KMBg7HBw4AlN6J-HhGNsj7ShfNC2rs0FUruE61jtP-ern3uIyTuY9SCw&h=B4yAbNX2CgWih3SNKGk-sRC4gaWX5GZMrnKKCeYgBI4 cache-control: - no-cache content-length: @@ -3383,7 +3002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:36 GMT + - Tue, 27 Jun 2023 07:58:41 GMT expires: - '-1' pragma: @@ -3415,11 +3034,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3A04%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1?api-version=2022-08-01-preview&t=2023-06-27T07%3A58%3A41&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=TcvNNbCoAHlx3eOrFA-rugDkWH_1g0q5QioTkarCuAs_bg6LLgadwjjrp7hJD92nayGkkRHp_6-OXaYgp2diOEkgMuzC8hFXwkJhGUgVnWb_-amsDTc0M0P7hNP8zdqMWD-PQYEeGiAu1YnZ0jqgAZ8DAZXQFNux-TMCmGEe6KK9l28ViJfN3SOt5kFDhs8EsxTU1aa7uwLASkoIvSbFZJBe_1MNNmX--BcW3sz_TevZ6CdosHon4A0n7Qyz6GL2U6VUAczcP_OWaPI88uQ2EHFmse1vo3KMBg7HBw4AlN6J-HhGNsj7ShfNC2rs0FUruE61jtP-ern3uIyTuY9SCw&h=B4yAbNX2CgWih3SNKGk-sRC4gaWX5GZMrnKKCeYgBI4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n - \ \"name\": \"9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1\",\r\n + \ \"name\": \"94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3428,7 +3047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:04:36 GMT + - Tue, 27 Jun 2023 07:58:41 GMT expires: - '-1' pragma: @@ -3462,11 +3081,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3A04%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1?api-version=2022-08-01-preview&t=2023-06-27T07%3A58%3A41&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=TcvNNbCoAHlx3eOrFA-rugDkWH_1g0q5QioTkarCuAs_bg6LLgadwjjrp7hJD92nayGkkRHp_6-OXaYgp2diOEkgMuzC8hFXwkJhGUgVnWb_-amsDTc0M0P7hNP8zdqMWD-PQYEeGiAu1YnZ0jqgAZ8DAZXQFNux-TMCmGEe6KK9l28ViJfN3SOt5kFDhs8EsxTU1aa7uwLASkoIvSbFZJBe_1MNNmX--BcW3sz_TevZ6CdosHon4A0n7Qyz6GL2U6VUAczcP_OWaPI88uQ2EHFmse1vo3KMBg7HBw4AlN6J-HhGNsj7ShfNC2rs0FUruE61jtP-ern3uIyTuY9SCw&h=B4yAbNX2CgWih3SNKGk-sRC4gaWX5GZMrnKKCeYgBI4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n - \ \"name\": \"9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n \"status\": \"deploying\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1\",\r\n + \ \"name\": \"94bc7aed-b686-4fb7-ad6e-5bd0d6e29dc1\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -3475,7 +3094,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:06 GMT + - Tue, 27 Jun 2023 07:59:11 GMT expires: - '-1' pragma: @@ -3509,61 +3128,14 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a?api-version=2022-08-01-preview&t=2023-06-27T05%3A04%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=g7d688NyOvXeQbF0UMkOEjOHEdIFWhFEf62HrFCawMwaShun_AlpjaJXi8V3K82xmw_g_3Woz4zdldW5k-TwyUNbxMwlwJKqI8MBsEWEF2wydzn-rUidndJUasuUrFwrmK0D5G_zuNXR-VC1qwKUjhRaGFc4Q8u8iJRAHhVKZeKGs524KikY0P7Ii9ImPiGdOV3iHRE8ukk0ICJEfxQykl3UmFZlnAq3G6PELO8-VTeTeWBZ2C4wFHNhVUH7NGbWCZ7F5w6M4UO1ZJsjwJmTkZFolOlKXKDRE4cHAWreDIBL-lf1-XXisqIEPnB2R9LmsMuP2O-a5X8lJwBlFhwOZA&h=-y6zkzrauqZemuXqyU_bJe-a0imseX5qZ8WQwN2T7go - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n - \ \"name\": \"9696031d-f6c4-480d-9625-c542f1b2c46a\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:05:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file --deny-settings-mode --parameters --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-04-36-3f163\",\r\n - \ \"duration\": \"PT31.1855695S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-58-41-05618\",\r\n + \ \"duration\": \"PT23.1730627S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3575,9 +3147,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:58:41.2631745Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:04:36.0233556Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:58:41.2631745Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3588,7 +3160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:36 GMT + - Tue, 27 Jun 2023 07:59:12 GMT expires: - '-1' pragma: @@ -3634,7 +3206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:37 GMT + - Tue, 27 Jun 2023 07:59:12 GMT expires: - '-1' pragma: @@ -3667,7 +3239,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T05:04:39.6018822Z","changedTime":"2023-06-27T05:04:39.9866717Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T05:04:39.8616697Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T05:04:39.8616697Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T07:58:46.3935889Z","changedTime":"2023-06-27T07:58:46.7689389Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T07:58:46.6595655Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T07:58:46.6595655Z"}}]}' headers: cache-control: - no-cache @@ -3676,7 +3248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:37 GMT + - Tue, 27 Jun 2023 07:59:12 GMT expires: - '-1' pragma: @@ -3713,12 +3285,14 @@ interactions: headers: cache-control: - no-cache + connection: + - close content-length: - '252' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:38 GMT + - Tue, 27 Jun 2023 07:59:12 GMT expires: - '-1' pragma: @@ -3754,8 +3328,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-04-36-3f163\",\r\n - \ \"duration\": \"PT31.1855695S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-58-41-05618\",\r\n + \ \"duration\": \"PT23.1730627S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": @@ -3767,9 +3341,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:58:41.2631745Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:04:36.0233556Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:58:41.2631745Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -3780,7 +3354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:38 GMT + - Tue, 27 Jun 2023 07:59:14 GMT expires: - '-1' pragma: @@ -3836,13 +3410,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T05:04:36.0233556Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:05:39.6946579Z\"\r\n + \"2023-06-27T07:58:41.2631745Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:59:14.3924184Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3a05%3a39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3a59%3a14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE cache-control: - no-cache content-length: @@ -3850,7 +3424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:39 GMT + - Tue, 27 Jun 2023 07:59:14 GMT expires: - '-1' pragma: @@ -3886,11 +3460,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -3899,7 +3473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:05:39 GMT + - Tue, 27 Jun 2023 07:59:14 GMT expires: - '-1' pragma: @@ -3933,11 +3507,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3946,7 +3520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:06:09 GMT + - Tue, 27 Jun 2023 07:59:44 GMT expires: - '-1' pragma: @@ -3980,11 +3554,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -3993,7 +3567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:06:39 GMT + - Tue, 27 Jun 2023 08:00:14 GMT expires: - '-1' pragma: @@ -4027,11 +3601,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4040,7 +3614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:07:10 GMT + - Tue, 27 Jun 2023 08:00:44 GMT expires: - '-1' pragma: @@ -4074,11 +3648,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4087,7 +3661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:07:40 GMT + - Tue, 27 Jun 2023 08:01:14 GMT expires: - '-1' pragma: @@ -4121,11 +3695,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4134,7 +3708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:08:10 GMT + - Tue, 27 Jun 2023 08:01:46 GMT expires: - '-1' pragma: @@ -4168,11 +3742,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -4181,7 +3755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:08:41 GMT + - Tue, 27 Jun 2023 08:02:16 GMT expires: - '-1' pragma: @@ -4215,11 +3789,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60?api-version=2022-08-01-preview&t=2023-06-27T05%3A05%3A39&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=HCQsl87dvGa8IaFirVnazNSq1ImdaMVmrBd5745Aua9T0oY9HuT-BFPGxH3B_phZaybLLcxVIGVQD_-kW5Rrp2gJgtQjvds0xlTJzePMZYlV-mN5Cq8k6kC5vls6hnoPc2dQeHAv9Ffn7MhOZYzYYUrslUYrclwancXBRW9fS33Lvi7q-vPC6UbyLSkzP1J0qIA7WtLHaQu4XKLgtwREjqenAJtimIBWl7yugJZ8URvNDjFkZD37mFEKmgBFgwpqEU92Z_WKkQrtf7StY-s9BIk3le_2rAbjo8m6hNCXpMiFDSYdP5xLlBUdWHthXi1cmrtHBteu2ZA8eF40rVQNPQ&h=Oweh2c-wp5DIipGqMZUF5E0Y6zl3DgOXv8Ea1ZKKyUA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e?api-version=2022-08-01-preview&t=2023-06-27T07%3A59%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KUGJJC3XcRc1wG3aczKEk1yuFlaxWna4khGor74gdxVxhu7N4V6AWeqhcbbxQWNymTebxOjCjOgoQfRb7uwNKAQnfFB6_AGQSPQ5sTFGBw9Fr3AIvtly-xt801EkECjtwLeUoxoUPBZf7oQ8Z2zFCndfNxusyuihJQFCnwS34KUEos_PmrEH3uwdCEkvGGy3UeQW8YuNd7l4h8Ht0VJMTrLDfWp4IFY-lkXf10elSjoulYhnkPerLbsCD3Z1UHIHuBSexyKK0-QppqByrXfMPze98a9pjNXtd1LXPHLMukJ5WwEfrzEFJCMXJoWDMiKIes49mf8JbzJF29Td8EZR3A&h=5tzZUDb5TqOGjO8m8PRNlLP4IYDmwa0Df6vPiGsGYHE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n - \ \"name\": \"c13af91f-9d4b-4781-9e8d-b444393efa60\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n + \ \"name\": \"15f25d2c-0e85-4628-8590-dd291602f14e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -4228,7 +3802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:09:12 GMT + - Tue, 27 Jun 2023 08:02:46 GMT expires: - '-1' pragma: @@ -4268,8 +3842,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-05-39-ecd90\",\r\n - \ \"duration\": \"PT3M19.0464117S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-59-14-dbe6e\",\r\n + \ \"duration\": \"PT3M17.8029034S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4279,9 +3853,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T07:58:41.2631745Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T05:05:39.6946579Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T07:59:14.3924184Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4292,7 +3866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:09:12 GMT + - Tue, 27 Jun 2023 08:02:46 GMT expires: - '-1' pragma: @@ -4338,7 +3912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:09:13 GMT + - Tue, 27 Jun 2023 08:02:47 GMT expires: - '-1' pragma: @@ -4380,7 +3954,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:09:13 GMT + - Tue, 27 Jun 2023 08:02:47 GMT expires: - '-1' pragma: @@ -4412,16 +3986,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-27T04:58:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj","name":"cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group_with_bicep","date":"2023-06-27T07:49:38Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-27T07:53:41Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '81928' + - '82442' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:09:13 GMT + - Tue, 27 Jun 2023 08:02:47 GMT expires: - '-1' pragma: @@ -4457,8 +4031,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-05-39-ecd90\",\r\n - \ \"duration\": \"PT3M19.0464117S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-59-14-dbe6e\",\r\n + \ \"duration\": \"PT3M17.8029034S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -4468,9 +4042,9 @@ interactions: \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T05:04:36.0233556Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T07:58:41.2631745Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T05:05:39.6946579Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T07:59:14.3924184Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -4481,7 +4055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:09:14 GMT + - Tue, 27 Jun 2023 08:02:48 GMT expires: - '-1' pragma: @@ -4527,7 +4101,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:09:15 GMT + - Tue, 27 Jun 2023 08:02:48 GMT expires: - '-1' pragma: @@ -4571,11 +4145,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:09:18 GMT + - Tue, 27 Jun 2023 08:02:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4603,167 +4177,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:09:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:09:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:09:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:10:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4773,11 +4187,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:10:19 GMT + - Tue, 27 Jun 2023 08:02:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -4803,7 +4217,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -4813,7 +4227,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:10:34 GMT + - Tue, 27 Jun 2023 08:03:05 GMT expires: - '-1' pragma: @@ -4857,7 +4271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:10:36 GMT + - Tue, 27 Jun 2023 08:03:07 GMT expires: - '-1' pragma: @@ -4867,7 +4281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -4901,7 +4315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:10:37 GMT + - Tue, 27 Jun 2023 08:03:07 GMT expires: - '-1' pragma: @@ -4961,14 +4375,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:03:08.0420677Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:10:37.5550787Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:03:08.0420677Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9?api-version=2022-08-01-preview&t=2023-06-27T05%3a10%3a37&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=w1Ff_G5NNbBhabi1JTYhyT0zU7CTN4ipUA4bOCGGOZJPbw8MnwZCV1wdIckd8L5_IbABwgasgrxMGPiZQFvVQ2ju6-ao_DNDdCEdjfcNh1QTWqzTJ1Y9mP_fuEUOL-x6qQf-9YpeOw9CEZXQI1V_I_vT2BCzk8uYvRE1V--OkWLRDSA098JEkF-K2C3NOAZaO89pA6VuMFSK1N4-KwK3y4cetERq3FqmlV_1LW_1FxH1_nc9a5_BKSBt5nw4K8n80P4ZnDYPEV_cEfoY1UKQvQQdflOp7iKml1IsgqC2wU03Fns9bxJUk0jDfJ6-HO-5TPhS8UbnItMmZRrNZEvQkA&h=nu_0TAQbjLP3y4T3yMgoEaGX0hND6pBxbp9w_HLgnIs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/239d1e15-ed7f-4dda-aa87-731d46805388?api-version=2022-08-01-preview&t=2023-06-27T08%3a03%3a08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CPCbuZx0TVEEeKoahq_6-SuAu2qCYa2osxol8rZFj6WlwJhxPj2z_-1WkLFm5qCdqDfRYU8HgGtuBFUxio906HsJrdpE20q17qivITLWD5cCVIpcKnm_wXnsWXYASncsF09AQbg6oUzJu1p-AeM6wYZd7fdfUaKg61Vy5FCFzHsAvfG5-73XgyxgcNCaZT1lSPbMqzUwhcANZgtc2fdZIh0daIVLWVpxpeI3I2mkKF5ftF3PvtmFhcGY7Pe3gAcS2ST4-vGDzxe_SRl_8TaMLFK571wNRrpl-csHpb8q9nR0Di5v0x_SwHUDXjmuhEkncUt6itmpYYoMk2wBMm2zFg&h=8iS1eHr1_SITlPdB3gCwX2XCccu7mkuRHF_ZyxKrpX4 cache-control: - no-cache content-length: @@ -4976,7 +4390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:10:37 GMT + - Tue, 27 Jun 2023 08:03:07 GMT expires: - '-1' pragma: @@ -5008,11 +4422,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9?api-version=2022-08-01-preview&t=2023-06-27T05%3A10%3A37&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=w1Ff_G5NNbBhabi1JTYhyT0zU7CTN4ipUA4bOCGGOZJPbw8MnwZCV1wdIckd8L5_IbABwgasgrxMGPiZQFvVQ2ju6-ao_DNDdCEdjfcNh1QTWqzTJ1Y9mP_fuEUOL-x6qQf-9YpeOw9CEZXQI1V_I_vT2BCzk8uYvRE1V--OkWLRDSA098JEkF-K2C3NOAZaO89pA6VuMFSK1N4-KwK3y4cetERq3FqmlV_1LW_1FxH1_nc9a5_BKSBt5nw4K8n80P4ZnDYPEV_cEfoY1UKQvQQdflOp7iKml1IsgqC2wU03Fns9bxJUk0jDfJ6-HO-5TPhS8UbnItMmZRrNZEvQkA&h=nu_0TAQbjLP3y4T3yMgoEaGX0hND6pBxbp9w_HLgnIs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/239d1e15-ed7f-4dda-aa87-731d46805388?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CPCbuZx0TVEEeKoahq_6-SuAu2qCYa2osxol8rZFj6WlwJhxPj2z_-1WkLFm5qCdqDfRYU8HgGtuBFUxio906HsJrdpE20q17qivITLWD5cCVIpcKnm_wXnsWXYASncsF09AQbg6oUzJu1p-AeM6wYZd7fdfUaKg61Vy5FCFzHsAvfG5-73XgyxgcNCaZT1lSPbMqzUwhcANZgtc2fdZIh0daIVLWVpxpeI3I2mkKF5ftF3PvtmFhcGY7Pe3gAcS2ST4-vGDzxe_SRl_8TaMLFK571wNRrpl-csHpb8q9nR0Di5v0x_SwHUDXjmuhEkncUt6itmpYYoMk2wBMm2zFg&h=8iS1eHr1_SITlPdB3gCwX2XCccu7mkuRHF_ZyxKrpX4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n - \ \"name\": \"a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/239d1e15-ed7f-4dda-aa87-731d46805388\",\r\n + \ \"name\": \"239d1e15-ed7f-4dda-aa87-731d46805388\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5021,7 +4435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:10:37 GMT + - Tue, 27 Jun 2023 08:03:07 GMT expires: - '-1' pragma: @@ -5055,11 +4469,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9?api-version=2022-08-01-preview&t=2023-06-27T05%3A10%3A37&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=w1Ff_G5NNbBhabi1JTYhyT0zU7CTN4ipUA4bOCGGOZJPbw8MnwZCV1wdIckd8L5_IbABwgasgrxMGPiZQFvVQ2ju6-ao_DNDdCEdjfcNh1QTWqzTJ1Y9mP_fuEUOL-x6qQf-9YpeOw9CEZXQI1V_I_vT2BCzk8uYvRE1V--OkWLRDSA098JEkF-K2C3NOAZaO89pA6VuMFSK1N4-KwK3y4cetERq3FqmlV_1LW_1FxH1_nc9a5_BKSBt5nw4K8n80P4ZnDYPEV_cEfoY1UKQvQQdflOp7iKml1IsgqC2wU03Fns9bxJUk0jDfJ6-HO-5TPhS8UbnItMmZRrNZEvQkA&h=nu_0TAQbjLP3y4T3yMgoEaGX0hND6pBxbp9w_HLgnIs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/239d1e15-ed7f-4dda-aa87-731d46805388?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=CPCbuZx0TVEEeKoahq_6-SuAu2qCYa2osxol8rZFj6WlwJhxPj2z_-1WkLFm5qCdqDfRYU8HgGtuBFUxio906HsJrdpE20q17qivITLWD5cCVIpcKnm_wXnsWXYASncsF09AQbg6oUzJu1p-AeM6wYZd7fdfUaKg61Vy5FCFzHsAvfG5-73XgyxgcNCaZT1lSPbMqzUwhcANZgtc2fdZIh0daIVLWVpxpeI3I2mkKF5ftF3PvtmFhcGY7Pe3gAcS2ST4-vGDzxe_SRl_8TaMLFK571wNRrpl-csHpb8q9nR0Di5v0x_SwHUDXjmuhEkncUt6itmpYYoMk2wBMm2zFg&h=8iS1eHr1_SITlPdB3gCwX2XCccu7mkuRHF_ZyxKrpX4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n - \ \"name\": \"a57f41e6-519f-4d5d-91f7-bedef87136e9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/239d1e15-ed7f-4dda-aa87-731d46805388\",\r\n + \ \"name\": \"239d1e15-ed7f-4dda-aa87-731d46805388\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5068,7 +4482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:07 GMT + - Tue, 27 Jun 2023 08:03:38 GMT expires: - '-1' pragma: @@ -5108,8 +4522,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-10-37-ae7b8\",\r\n - \ \"duration\": \"PT29.2969341S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-08-03-08-c071f\",\r\n + \ \"duration\": \"PT20.0602786S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5118,9 +4532,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:03:08.0420677Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:10:37.5550787Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:03:08.0420677Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5131,7 +4545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:08 GMT + - Tue, 27 Jun 2023 08:03:38 GMT expires: - '-1' pragma: @@ -5177,7 +4591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:08 GMT + - Tue, 27 Jun 2023 08:03:39 GMT expires: - '-1' pragma: @@ -5213,8 +4627,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-10-37-ae7b8\",\r\n - \ \"duration\": \"PT29.2969341S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-08-03-08-c071f\",\r\n + \ \"duration\": \"PT20.0602786S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n @@ -5223,9 +4637,9 @@ interactions: \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:03:08.0420677Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:10:37.5550787Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:03:08.0420677Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5236,7 +4650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:10 GMT + - Tue, 27 Jun 2023 08:03:39 GMT expires: - '-1' pragma: @@ -5292,13 +4706,13 @@ interactions: \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T05:10:37.5550787Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:11:10.5261435Z\"\r\n + \"2023-06-27T08:03:08.0420677Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:03:40.5446506Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3a11%3a10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3a03%3a40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 cache-control: - no-cache content-length: @@ -5306,7 +4720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:10 GMT + - Tue, 27 Jun 2023 08:03:40 GMT expires: - '-1' pragma: @@ -5342,11 +4756,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n - \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827\",\r\n + \ \"name\": \"02e92ad5-e861-43a6-b366-429b509cc827\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5355,7 +4769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:10 GMT + - Tue, 27 Jun 2023 08:03:40 GMT expires: - '-1' pragma: @@ -5389,11 +4803,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n - \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827\",\r\n + \ \"name\": \"02e92ad5-e861-43a6-b366-429b509cc827\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5402,7 +4816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:11:41 GMT + - Tue, 27 Jun 2023 08:04:10 GMT expires: - '-1' pragma: @@ -5436,11 +4850,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n - \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827\",\r\n + \ \"name\": \"02e92ad5-e861-43a6-b366-429b509cc827\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5449,7 +4863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:12:11 GMT + - Tue, 27 Jun 2023 08:04:41 GMT expires: - '-1' pragma: @@ -5483,11 +4897,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n - \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827\",\r\n + \ \"name\": \"02e92ad5-e861-43a6-b366-429b509cc827\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5496,7 +4910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:12:41 GMT + - Tue, 27 Jun 2023 08:05:11 GMT expires: - '-1' pragma: @@ -5530,11 +4944,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n - \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827\",\r\n + \ \"name\": \"02e92ad5-e861-43a6-b366-429b509cc827\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache @@ -5543,7 +4957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:13:11 GMT + - Tue, 27 Jun 2023 08:05:41 GMT expires: - '-1' pragma: @@ -5577,11 +4991,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9?api-version=2022-08-01-preview&t=2023-06-27T05%3A11%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=ProVTEKeuJ8ynBnhGZ_IIDgVmm_hSuL5ZBjOt6TMrBrqo5HONaW_z8bQv7VbDgC7kTmSVo4vRQqSmCDQz9J7p6XhBnXGOeEvO4qv9RiyHdvs7y1uWx36bRNv6ElBg4d1z-qmOOq6jlu-PQO2ZV3jGci6DgAOtDT1SFsRimMMl2c7ZJ8VmkxKB6NAguaYQY1BRpCkUcSW4H0-V7dEZg7khqMNL0Kwz6Qz3EEyVXyWtPchKyaq7tciO97vMSvMrZW1eAwgmndf3_A-PLdOxO7HGFCak8bqDkO13L1q7zUkAkVT-KA73Y4gxN0fRAbsCCdDY8GqLDkK1o4cxfrOrdKeFQ&h=i4lqJcP1EFMQoOKPjAo0NM8xrE-Mtsb7vA5zw00SgN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827?api-version=2022-08-01-preview&t=2023-06-27T08%3A03%3A40&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=XKFOMchXQmYanc40O7MEQwDC9GWWRQw5PLpgWID4oyOOVC1QpxorMYi1kToJ7e1w0z_S3gP8lAeZu2XfdaVLJfYTfcNeML1OhUB_FXzx0EbncihxsNoPpZABkwG6e9aQvlg9J_nfj3MadYIqdiOz5cL6PNgyhS9P3e2q7UvuFee5wU88GfroJVzh7S035YZeyeSxVFkD9oKFlzopbfhf-xOWhw0DvRoV2FlQoztaxjqOko8z_1eyQCD1DBmebRn59sgnCbTPZMGP96aeJFsprWl06nhrhQOnBJlV4wiQ9Wqqh3jVLEvGk2Y7i1oog8PQyQIjzvol1Fd34YySQYBnQA&h=nJmHvxJhhck8NjRb8Z_StQRPThX6la-y4bjSWcNG3w4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n - \ \"name\": \"f12df2ba-f22d-45b0-87d5-e2bb7bcbb7f9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/02e92ad5-e861-43a6-b366-429b509cc827\",\r\n + \ \"name\": \"02e92ad5-e861-43a6-b366-429b509cc827\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5590,7 +5004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:13:42 GMT + - Tue, 27 Jun 2023 08:06:11 GMT expires: - '-1' pragma: @@ -5630,8 +5044,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-11-10-cc7ba\",\r\n - \ \"duration\": \"PT2M20.0253764S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-08-03-40-c04d5\",\r\n + \ \"duration\": \"PT2M22.6038984S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5640,9 +5054,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T08:03:08.0420677Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T05:11:10.5261435Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T08:03:40.5446506Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5653,7 +5067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:13:42 GMT + - Tue, 27 Jun 2023 08:06:11 GMT expires: - '-1' pragma: @@ -5689,16 +5103,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-27T04:58:51Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj","name":"cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group_with_bicep","date":"2023-06-27T07:49:38Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-27T07:53:41Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '81928' + - '82442' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:13:43 GMT + - Tue, 27 Jun 2023 08:06:12 GMT expires: - '-1' pragma: @@ -5734,8 +5148,8 @@ interactions: string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-11-10-cc7ba\",\r\n - \ \"duration\": \"PT2M20.0253764S\",\r\n \"denySettings\": {\r\n \"mode\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-08-03-40-c04d5\",\r\n + \ \"duration\": \"PT2M22.6038984S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -5744,9 +5158,9 @@ interactions: [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T05:10:37.5550787Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T08:03:08.0420677Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T05:11:10.5261435Z\"\r\n },\r\n \"id\": + \ \"lastModifiedAt\": \"2023-06-27T08:03:40.5446506Z\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" headers: @@ -5757,542 +5171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 05:13:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:13:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file -p --deny-settings-mode --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n - \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' - could not be found.\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '346' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:13:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://aka.ms/BicepLatestRelease - response: - body: - string: '' - headers: - cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive - content-length: - - '0' - date: - - Tue, 27 Jun 2023 05:13:47 GMT - expires: - - Tue, 27 Jun 2023 05:13:47 GMT - location: - - https://downloads.bicep.azure.com/releases/latest - pragma: - - no-cache - request-context: - - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 - server: - - Kestrel - strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://downloads.bicep.azure.com/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## - Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files - (bicep-style parameters file). This includes support for:\r\n - support for - expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - - supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group - create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate - bicepparam file from given Bicep file (#10595)\r\n - Buildparams command - vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env - variables in .bicepparam files (#10726)\r\n - Support bicepparam files for - VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - - Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming - modules from ACR (#10747)\r\n* Bicep build command linter provides a structured - output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* - Mark overload matches as PotentialMatches if any argument is of type ''any'' - (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* - Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from - symbol resolution logic (#10626)\r\n* Derive operation return type from operands - (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in - addition to metadata.json (#10860)\r\n* Add intellisense support for param - and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI - by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument - is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries - (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* - Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' - headers: - accept-ranges: - - bytes - connection: - - keep-alive - content-length: - - '41663' - content-type: - - application/octet-stream - date: - - Tue, 27 Jun 2023 05:13:48 GMT - etag: - - '0x8DB75852C02DBEA' - last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT - x-azure-ref: - - 20230627T051348Z-d98vq2nfkd64b486xdk0pfq4n400000008kg00000001zqst - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - status: - code: 200 - message: OK -- request: - body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.17.1.54307", "templateHash": "6417493495661768720"}}, "parameters": {"location": - {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": - "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": - "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", - "location": "[parameters(''location'')]", "sku": {"name": "Standard_LRS"}, "kind": - "[parameters(''kind'')]", "properties": {}}]}, "parameters": {"location": {"value": - "westus2"}, "kind": {"value": "StorageV2"}}, "actionOnUnmanage": {"resources": - "delete", "resourceGroups": "delete"}, "denySettings": {"applyToChildScopes": - false}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - Content-Length: - - '909' - Content-Type: - - application/json - ParameterSetName: - - --name -g --template-file -p --deny-settings-mode --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": - \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": - {\r\n \"value\": \"StorageV2\",\r\n \"type\": \"string\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T05:13:52.0477913Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:13:52.0477913Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035?api-version=2022-08-01-preview&t=2023-06-27T05%3a13%3a52&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=RK4wydRU3SGSjiFa-yaCzi35jcHE4ILXajUU4GWpZ90byuIPQZYV03F2XpaXpfXRH62XPwdBCrbUe9rEc4-XVjfMikYkgJY82JcJx1aCwX40d_5QpQb3Vt2vGTgPMuKD5z1JuFcehUUFldwtUvFCmBHkOXlp4okuYr_cAwp5St_NuaynGyEPmIXoWoMdJ5ADz9GkTUv5S50bHsItvKGlhJ-lScY9nbaHLyKmzjvI-h5xJtC9AeR1SA4jQyjdWfJ9rBrRrgsLakhOGerxHBbjmQUrqp7MLPVziG5LQsROVRuU3yAckC7Ad9c5DhY2b2GIiAsETK7LcwBqRZs4PA8B9A&h=BiirEzrjcR8P9AdHFn2o0oAdDrkoyBVYlLw5XrLQUFc - cache-control: - - no-cache - content-length: - - '1252' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:13:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file -p --deny-settings-mode --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035?api-version=2022-08-01-preview&t=2023-06-27T05%3A13%3A52&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=RK4wydRU3SGSjiFa-yaCzi35jcHE4ILXajUU4GWpZ90byuIPQZYV03F2XpaXpfXRH62XPwdBCrbUe9rEc4-XVjfMikYkgJY82JcJx1aCwX40d_5QpQb3Vt2vGTgPMuKD5z1JuFcehUUFldwtUvFCmBHkOXlp4okuYr_cAwp5St_NuaynGyEPmIXoWoMdJ5ADz9GkTUv5S50bHsItvKGlhJ-lScY9nbaHLyKmzjvI-h5xJtC9AeR1SA4jQyjdWfJ9rBrRrgsLakhOGerxHBbjmQUrqp7MLPVziG5LQsROVRuU3yAckC7Ad9c5DhY2b2GIiAsETK7LcwBqRZs4PA8B9A&h=BiirEzrjcR8P9AdHFn2o0oAdDrkoyBVYlLw5XrLQUFc - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035\",\r\n - \ \"name\": \"7b5e0601-ae7f-481f-b65f-768430097035\",\r\n \"status\": \"initializing\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '263' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:13:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file -p --deny-settings-mode --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035?api-version=2022-08-01-preview&t=2023-06-27T05%3A13%3A52&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=RK4wydRU3SGSjiFa-yaCzi35jcHE4ILXajUU4GWpZ90byuIPQZYV03F2XpaXpfXRH62XPwdBCrbUe9rEc4-XVjfMikYkgJY82JcJx1aCwX40d_5QpQb3Vt2vGTgPMuKD5z1JuFcehUUFldwtUvFCmBHkOXlp4okuYr_cAwp5St_NuaynGyEPmIXoWoMdJ5ADz9GkTUv5S50bHsItvKGlhJ-lScY9nbaHLyKmzjvI-h5xJtC9AeR1SA4jQyjdWfJ9rBrRrgsLakhOGerxHBbjmQUrqp7MLPVziG5LQsROVRuU3yAckC7Ad9c5DhY2b2GIiAsETK7LcwBqRZs4PA8B9A&h=BiirEzrjcR8P9AdHFn2o0oAdDrkoyBVYlLw5XrLQUFc - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7b5e0601-ae7f-481f-b65f-768430097035\",\r\n - \ \"name\": \"7b5e0601-ae7f-481f-b65f-768430097035\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:14:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file -p --deny-settings-mode --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-13-52-8f810\",\r\n - \ \"duration\": \"PT30.5700691S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": - \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storec2xm2tedpulxe\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:13:52.0477913Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:13:52.0477913Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1805' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:14:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack group delete - Connection: - - keep-alive - ParameterSetName: - - -g --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": - {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n - \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-05-13-52-8f810\",\r\n - \ \"duration\": \"PT30.5700691S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": - \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storec2xm2tedpulxe\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T05:13:52.0477913Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T05:13:52.0477913Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1805' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 05:14:23 GMT + - Tue, 27 Jun 2023 08:06:12 GMT expires: - '-1' pragma: @@ -6338,7 +5217,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:14:24 GMT + - Tue, 27 Jun 2023 08:06:12 GMT expires: - '-1' pragma: @@ -6382,11 +5261,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:14:26 GMT + - Tue, 27 Jun 2023 08:06:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6414,7 +5293,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6424,11 +5303,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:14:26 GMT + - Tue, 27 Jun 2023 08:06:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6454,7 +5333,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6464,11 +5343,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:14:41 GMT + - Tue, 27 Jun 2023 08:06:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6494,7 +5373,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6504,11 +5383,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:14:56 GMT + - Tue, 27 Jun 2023 08:06:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6534,7 +5413,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6544,11 +5423,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:15:11 GMT + - Tue, 27 Jun 2023 08:07:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6574,7 +5453,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6584,11 +5463,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:15:27 GMT + - Tue, 27 Jun 2023 08:07:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -6614,7 +5493,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzRTA4NEE2NEVBRTZFQUE5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnxENTU2RDEzM0NCOTI0NTUzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -6624,7 +5503,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 05:15:42 GMT + - Tue, 27 Jun 2023 08:07:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group_with_bicep.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group_with_bicep.yaml new file mode 100644 index 00000000000..29aee51641e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_resource_group_with_bicep.yaml @@ -0,0 +1,767 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '333' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.17.1.54307", "templateHash": "991381235984945273"}}, "parameters": {"location": + {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": + "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": + 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": + "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], + "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}}, "parameters": {}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '919' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T07:52:10.3724447Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:52:10.3724447Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6da5838-3224-46c7-af69-ee4a7b5f715f?api-version=2022-08-01-preview&t=2023-06-27T07%3a52%3a10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Wt-_SjzkHKHd1J7HjTx4IDdKGY8a-5-ss1zUFibXFvROpKc6ytIy4WhLUfLOPlTfAqSbNQCG5bTUTqDwQFtYwB5vTnX4y-qVq1WlEiuaeX1pNBew3WqZj5aQD2whLlTXow7HbRJk0p61ozqA3c3K967QV9i7_GAYO9yFlurlN4KIGjAmXjQTtEqnRlkE2mF-SPxaELzdJYdRTZjt0ASM9sqF4EpF7Wdpb34llB5v71hLC7iZtZYW6TrM4tAWCnhRyULtrOdJ1Lyq7fziqXsp-MgvZ3wFbygH8dQzooKNNKxfFLKotZ8mrY9rq7Q0vK2lql4Ljag3vS4EYdzysyT_hw&h=oBc7nJQUXFITNL6RVu2Z1-rwhw3z9f_tJjl5lNqjFdo + cache-control: + - no-cache + content-length: + - '1064' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6da5838-3224-46c7-af69-ee4a7b5f715f?api-version=2022-08-01-preview&t=2023-06-27T07%3A52%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Wt-_SjzkHKHd1J7HjTx4IDdKGY8a-5-ss1zUFibXFvROpKc6ytIy4WhLUfLOPlTfAqSbNQCG5bTUTqDwQFtYwB5vTnX4y-qVq1WlEiuaeX1pNBew3WqZj5aQD2whLlTXow7HbRJk0p61ozqA3c3K967QV9i7_GAYO9yFlurlN4KIGjAmXjQTtEqnRlkE2mF-SPxaELzdJYdRTZjt0ASM9sqF4EpF7Wdpb34llB5v71hLC7iZtZYW6TrM4tAWCnhRyULtrOdJ1Lyq7fziqXsp-MgvZ3wFbygH8dQzooKNNKxfFLKotZ8mrY9rq7Q0vK2lql4Ljag3vS4EYdzysyT_hw&h=oBc7nJQUXFITNL6RVu2Z1-rwhw3z9f_tJjl5lNqjFdo + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6da5838-3224-46c7-af69-ee4a7b5f715f\",\r\n + \ \"name\": \"e6da5838-3224-46c7-af69-ee4a7b5f715f\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6da5838-3224-46c7-af69-ee4a7b5f715f?api-version=2022-08-01-preview&t=2023-06-27T07%3A52%3A10&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=Wt-_SjzkHKHd1J7HjTx4IDdKGY8a-5-ss1zUFibXFvROpKc6ytIy4WhLUfLOPlTfAqSbNQCG5bTUTqDwQFtYwB5vTnX4y-qVq1WlEiuaeX1pNBew3WqZj5aQD2whLlTXow7HbRJk0p61ozqA3c3K967QV9i7_GAYO9yFlurlN4KIGjAmXjQTtEqnRlkE2mF-SPxaELzdJYdRTZjt0ASM9sqF4EpF7Wdpb34llB5v71hLC7iZtZYW6TrM4tAWCnhRyULtrOdJ1Lyq7fziqXsp-MgvZ3wFbygH8dQzooKNNKxfFLKotZ8mrY9rq7Q0vK2lql4Ljag3vS4EYdzysyT_hw&h=oBc7nJQUXFITNL6RVu2Z1-rwhw3z9f_tJjl5lNqjFdo + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/e6da5838-3224-46c7-af69-ee4a7b5f715f\",\r\n + \ \"name\": \"e6da5838-3224-46c7-af69-ee4a7b5f715f\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --template-file --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-52-10-82fb5\",\r\n + \ \"duration\": \"PT7.1350536S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:52:10.3724447Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:52:10.3724447Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1851' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-52-10-82fb5\",\r\n + \ \"duration\": \"PT7.1350536S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:52:10.3724447Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:52:10.3724447Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1851' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 07:52:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"DeploymentStackResourceNotFound\",\r\n + \ \"message\": \"The deployment stack '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002' + could not be found.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '333' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.17.1.54307", "templateHash": "6417493495661768720"}}, "parameters": {"location": + {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": + "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": + "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", + "location": "[parameters(''location'')]", "sku": {"name": "Standard_LRS"}, "kind": + "[parameters(''kind'')]", "properties": {}}]}, "parameters": {"location": {"value": + "westus2"}, "kind": {"value": "StorageV2"}}, "actionOnUnmanage": {"resources": + "delete", "resourceGroups": "delete"}, "denySettings": {"applyToChildScopes": + false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + Content-Length: + - '909' + Content-Type: + - application/json + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": + \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\",\r\n \"type\": \"string\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T07:52:45.6416557Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:52:45.6416557Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c332b750-b3be-4f18-954c-b52cf8389f73?api-version=2022-08-01-preview&t=2023-06-27T07%3a52%3a46&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=vEWqIRG_9RGCVmqUN_hqw55a1ZtacsuqFEUKumr09NmkH4hxy-36jQGU5ciKSQhziQOo_zGc-9T5MVvUjQwej5wY0DFibsPTV_AFjueet8BTneUhIiMW3rYw-L4wjSCRl4EOgnudQKj3Y_okG-w4C2xkHWSiJ1LyiEmDdPRb9qhRFeJb2m8bMCWMjyOOm8OKrB-PCub_qC5AZHp2_JRCKxx8gKncNIwxGGSCsI1twB4PXdcLwyNEDQVaW6tAs4Xxllnbu-YzwdjaZk2MkQCvReTbulz8pPcPdcTDBeNzNAuURePw6ng1ly-5yr4SR6ZQRaQk4Mv0svcdFNCUSeyOYw&h=kLMfCMMDBygEpnOI5TJasu2bnWwirhOi7PXBU3ezI2o + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c332b750-b3be-4f18-954c-b52cf8389f73?api-version=2022-08-01-preview&t=2023-06-27T07%3A52%3A46&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=vEWqIRG_9RGCVmqUN_hqw55a1ZtacsuqFEUKumr09NmkH4hxy-36jQGU5ciKSQhziQOo_zGc-9T5MVvUjQwej5wY0DFibsPTV_AFjueet8BTneUhIiMW3rYw-L4wjSCRl4EOgnudQKj3Y_okG-w4C2xkHWSiJ1LyiEmDdPRb9qhRFeJb2m8bMCWMjyOOm8OKrB-PCub_qC5AZHp2_JRCKxx8gKncNIwxGGSCsI1twB4PXdcLwyNEDQVaW6tAs4Xxllnbu-YzwdjaZk2MkQCvReTbulz8pPcPdcTDBeNzNAuURePw6ng1ly-5yr4SR6ZQRaQk4Mv0svcdFNCUSeyOYw&h=kLMfCMMDBygEpnOI5TJasu2bnWwirhOi7PXBU3ezI2o + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c332b750-b3be-4f18-954c-b52cf8389f73\",\r\n + \ \"name\": \"c332b750-b3be-4f18-954c-b52cf8389f73\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:52:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c332b750-b3be-4f18-954c-b52cf8389f73?api-version=2022-08-01-preview&t=2023-06-27T07%3A52%3A46&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=vEWqIRG_9RGCVmqUN_hqw55a1ZtacsuqFEUKumr09NmkH4hxy-36jQGU5ciKSQhziQOo_zGc-9T5MVvUjQwej5wY0DFibsPTV_AFjueet8BTneUhIiMW3rYw-L4wjSCRl4EOgnudQKj3Y_okG-w4C2xkHWSiJ1LyiEmDdPRb9qhRFeJb2m8bMCWMjyOOm8OKrB-PCub_qC5AZHp2_JRCKxx8gKncNIwxGGSCsI1twB4PXdcLwyNEDQVaW6tAs4Xxllnbu-YzwdjaZk2MkQCvReTbulz8pPcPdcTDBeNzNAuURePw6ng1ly-5yr4SR6ZQRaQk4Mv0svcdFNCUSeyOYw&h=kLMfCMMDBygEpnOI5TJasu2bnWwirhOi7PXBU3ezI2o + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c332b750-b3be-4f18-954c-b52cf8389f73\",\r\n + \ \"name\": \"c332b750-b3be-4f18-954c-b52cf8389f73\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:53:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-file -p --deny-settings-mode --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-52-45-30cbf\",\r\n + \ \"duration\": \"PT29.3045764S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Storage/storageAccounts/storeaq2mtvlnsp7ym\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:52:45.6416557Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:52:45.6416557Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1766' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:53:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": + {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n + \ \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-resou-2023-06-27-07-52-45-30cbf\",\r\n + \ \"duration\": \"PT29.3045764S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Storage/storageAccounts/storeaq2mtvlnsp7ym\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:52:45.6416557Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:52:45.6416557Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-resource-group000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1766' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:53:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-resource-group000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 07:53:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml index 4b968308524..5a55827c770 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:05 GMT + - Tue, 27 Jun 2023 08:07:48 GMT expires: - '-1' pragma: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:05 GMT + - Tue, 27 Jun 2023 08:07:48 GMT expires: - '-1' pragma: @@ -112,20 +112,20 @@ interactions: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:07.8127462Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:07:50.21593Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:07.8127462Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:07:50.21593Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '632' + - '628' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:07 GMT + - Tue, 27 Jun 2023 08:07:49 GMT expires: - '-1' pragma: @@ -183,9 +183,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:09.5627143Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:07:51.4659335Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:09.5627143Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:07:51.4659335Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:09 GMT + - Tue, 27 Jun 2023 08:07:50 GMT expires: - '-1' pragma: @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:10 GMT + - Tue, 27 Jun 2023 08:07:51 GMT expires: - '-1' pragma: @@ -308,14 +308,14 @@ interactions: [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:10.9491524Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:07:52.3162582Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:10.9491524Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:07:52.3162582Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9?api-version=2022-08-01-preview&t=2023-06-27T04%3a20%3a11&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rAxEnxbhLmdrSECyoEDEmL78fuAlHH40UwHexNxNFtUklraS0OgDpLMGh4hMWHGRV-8Zv_TM4nObWwnpPXMM6dxyl7Pi6FR7GO6acdc-rLtEvIEdbGTBYdn3U5sEC0E_bCern2XccwssxRCzJmmgFR29E6axP-khAelTn3fW_ZkgdIYNB8vhr7drTEw8loO3jZ_X_m3r__YaYFrqpUJazkj5JROPHgTFtXXdRXdizTnYMv71xoH9gioRnuAWe2pfFfycy9nSCV_O8JMrdz178iDUbgQq15PY0g6PuHHXD8gKHA7UDO0k8_h7lG3Ml-IQs8i7zZeWwAH67B0IXGBuzQ&h=SrTbEBioj8GOsrbgA8WzoBd3rz_bVGFyVYRgmMoN4Uc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/12ed5cb8-f2a4-4292-b03f-fef6566afb8b?api-version=2022-08-01-preview&t=2023-06-27T08%3a07%3a53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Y-sSAYa4n5YxP-hMTPe13QlrvxGwYx8Ag6it5bJeeoiDgrUHA_7wx3zoJIURSRCiVK-zsxmzZmOquQ1m5R5HHKFzEwjZaskEFtvGRpIbbz8VG5Dq9T5U8UfrccsQyV9FtfXVQyKGDvAYeX4IPfO01I-xpYNRGg5rct8tJZ2EaDWgwzTvBCtTcoK8pSlFbyojH771GHl9EeZFEf5UT4QJC4DAn9OudROFVzKTs8SgiXq_KyPw7j3v-QJyDWLWXvaaEQv7-SbAe6iI6pnWMPBt3LNderoGc0wwmqedZkAPsVBghaQENwHA_K3YSTLt7HAQzJUkHjp-FVu9iQ8FpDCTMw&h=oZZwN9TIN9FiEDUI2rczJkQJ8VW88SHQHQ_uOwMukmg cache-control: - no-cache content-length: @@ -323,7 +323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:11 GMT + - Tue, 27 Jun 2023 08:07:52 GMT expires: - '-1' pragma: @@ -357,11 +357,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A11&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rAxEnxbhLmdrSECyoEDEmL78fuAlHH40UwHexNxNFtUklraS0OgDpLMGh4hMWHGRV-8Zv_TM4nObWwnpPXMM6dxyl7Pi6FR7GO6acdc-rLtEvIEdbGTBYdn3U5sEC0E_bCern2XccwssxRCzJmmgFR29E6axP-khAelTn3fW_ZkgdIYNB8vhr7drTEw8loO3jZ_X_m3r__YaYFrqpUJazkj5JROPHgTFtXXdRXdizTnYMv71xoH9gioRnuAWe2pfFfycy9nSCV_O8JMrdz178iDUbgQq15PY0g6PuHHXD8gKHA7UDO0k8_h7lG3Ml-IQs8i7zZeWwAH67B0IXGBuzQ&h=SrTbEBioj8GOsrbgA8WzoBd3rz_bVGFyVYRgmMoN4Uc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/12ed5cb8-f2a4-4292-b03f-fef6566afb8b?api-version=2022-08-01-preview&t=2023-06-27T08%3A07%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Y-sSAYa4n5YxP-hMTPe13QlrvxGwYx8Ag6it5bJeeoiDgrUHA_7wx3zoJIURSRCiVK-zsxmzZmOquQ1m5R5HHKFzEwjZaskEFtvGRpIbbz8VG5Dq9T5U8UfrccsQyV9FtfXVQyKGDvAYeX4IPfO01I-xpYNRGg5rct8tJZ2EaDWgwzTvBCtTcoK8pSlFbyojH771GHl9EeZFEf5UT4QJC4DAn9OudROFVzKTs8SgiXq_KyPw7j3v-QJyDWLWXvaaEQv7-SbAe6iI6pnWMPBt3LNderoGc0wwmqedZkAPsVBghaQENwHA_K3YSTLt7HAQzJUkHjp-FVu9iQ8FpDCTMw&h=oZZwN9TIN9FiEDUI2rczJkQJ8VW88SHQHQ_uOwMukmg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n - \ \"name\": \"ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/12ed5cb8-f2a4-4292-b03f-fef6566afb8b\",\r\n + \ \"name\": \"12ed5cb8-f2a4-4292-b03f-fef6566afb8b\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -370,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:11 GMT + - Tue, 27 Jun 2023 08:07:52 GMT expires: - '-1' pragma: @@ -406,11 +406,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A11&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rAxEnxbhLmdrSECyoEDEmL78fuAlHH40UwHexNxNFtUklraS0OgDpLMGh4hMWHGRV-8Zv_TM4nObWwnpPXMM6dxyl7Pi6FR7GO6acdc-rLtEvIEdbGTBYdn3U5sEC0E_bCern2XccwssxRCzJmmgFR29E6axP-khAelTn3fW_ZkgdIYNB8vhr7drTEw8loO3jZ_X_m3r__YaYFrqpUJazkj5JROPHgTFtXXdRXdizTnYMv71xoH9gioRnuAWe2pfFfycy9nSCV_O8JMrdz178iDUbgQq15PY0g6PuHHXD8gKHA7UDO0k8_h7lG3Ml-IQs8i7zZeWwAH67B0IXGBuzQ&h=SrTbEBioj8GOsrbgA8WzoBd3rz_bVGFyVYRgmMoN4Uc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/12ed5cb8-f2a4-4292-b03f-fef6566afb8b?api-version=2022-08-01-preview&t=2023-06-27T08%3A07%3A53&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=Y-sSAYa4n5YxP-hMTPe13QlrvxGwYx8Ag6it5bJeeoiDgrUHA_7wx3zoJIURSRCiVK-zsxmzZmOquQ1m5R5HHKFzEwjZaskEFtvGRpIbbz8VG5Dq9T5U8UfrccsQyV9FtfXVQyKGDvAYeX4IPfO01I-xpYNRGg5rct8tJZ2EaDWgwzTvBCtTcoK8pSlFbyojH771GHl9EeZFEf5UT4QJC4DAn9OudROFVzKTs8SgiXq_KyPw7j3v-QJyDWLWXvaaEQv7-SbAe6iI6pnWMPBt3LNderoGc0wwmqedZkAPsVBghaQENwHA_K3YSTLt7HAQzJUkHjp-FVu9iQ8FpDCTMw&h=oZZwN9TIN9FiEDUI2rczJkQJ8VW88SHQHQ_uOwMukmg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n - \ \"name\": \"ac752b65-364c-4a42-acac-b4e1bd53fef9\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/12ed5cb8-f2a4-4292-b03f-fef6566afb8b\",\r\n + \ \"name\": \"12ed5cb8-f2a4-4292-b03f-fef6566afb8b\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -419,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:41 GMT + - Tue, 27 Jun 2023 08:08:23 GMT expires: - '-1' pragma: @@ -461,9 +461,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-11-5b354\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-07-53-3f14a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.7457871S\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.4518061S\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n @@ -476,9 +476,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:10.9491524Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:07:52.3162582Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:10.9491524Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:07:52.3162582Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -489,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:42 GMT + - Tue, 27 Jun 2023 08:08:23 GMT expires: - '-1' pragma: @@ -529,9 +529,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-11-5b354\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-07-53-3f14a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT6.7457871S\",\r\n + \ \"description\": \"stack deployment\",\r\n \"duration\": \"PT5.4518061S\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": true,\r\n \"excludedPrincipals\": [\r\n \"principal1\",\r\n \"principal2\"\r\n \ ],\r\n \"excludedActions\": [\r\n \"action1\",\r\n \"action2\"\r\n @@ -544,9 +544,9 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:10.9491524Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:07:52.3162582Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:10.9491524Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:07:52.3162582Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -557,7 +557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:43 GMT + - Tue, 27 Jun 2023 08:08:24 GMT expires: - '-1' pragma: @@ -603,7 +603,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:20:43 GMT + - Tue, 27 Jun 2023 08:08:24 GMT expires: - '-1' pragma: @@ -648,7 +648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:44 GMT + - Tue, 27 Jun 2023 08:08:24 GMT expires: - '-1' pragma: @@ -694,9 +694,9 @@ interactions: \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n \ }\r\n }\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:09.5627143Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:07:51.4659335Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:09.5627143Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:07:51.4659335Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}" @@ -708,7 +708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:45 GMT + - Tue, 27 Jun 2023 08:08:25 GMT expires: - '-1' pragma: @@ -763,22 +763,22 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:46.3111996Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:08:26.002391Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:46.3111996Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:08:26.002391Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3?api-version=2022-08-01-preview&t=2023-06-27T04%3a20%3a47&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=IiW-16O8HhgyOs0g2DhV3S0MvJunh1ldgbWXN6MWfEOeoBOA0LXegP_n1KseCySbyc9iFFLAPl5ALsnZ5Ugy1bCAIYpeBn1pp7wnoOiikPAbHl-Ymy1O9PQieq5lB2rpEWqYJFE2Kn1AwB1EGA_ylXky7jaT6x-UTQv2s2ZWb7PtHTRYnLxddjwTtbVkAvEOMZCnPiDhKM5aks9n2Ryz1921nPiTlzprEV8PSUKXLfPI210qOr8xDObn020b9_LX5GSMczPDXCI-ADY2dKaTshhyWizbCoGFc4osDVlZMqyVy6RKvLeJ_zmrgGMhRs7E8cO9kkPFa_paGHhllJdTEQ&h=TbWOPO3zdwAtZuUOFqR8w8C1-RKlBbexLaYzEcoCM8s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8cd93223-dc51-4bac-95eb-4d029ce03d6e?api-version=2022-08-01-preview&t=2023-06-27T08%3a08%3a26&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=upZLZGWaGZdb8r5PYplLb6Rl8ex3iPsV_sklLwanbphL2j4koHJxAm4WmTcxRz82Hjv4lhFJAl4lDSqsigv2gSkUiHIpggNOar7EMni25Ao-8awXGwHJGVklffQ9QQkgmZXtIU8CdY2rIOeq8XVU2WVZ6xBsU3p5lCNk_JvKyt8nLQj6zcs4ye8CbZ8UYoV2qK2FbDod1kjJcRM11gBDQXVvr68O1zi5yU7WO6HrdfodsADeWlu8JnKev8-IfMOBynLdMYw2sEEzgej232Id_cRcdiquZKAqvfP8_v_NbcTpt1mEY3AD_-QBwLr_4ONKhUp5ng9J1iicDVi7QUtuew&h=Xb8yFf_RoPQQQDcw4wBmhHxn_xobJeqsv7VhyVKtefA cache-control: - no-cache content-length: - - '1389' + - '1387' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:47 GMT + - Tue, 27 Jun 2023 08:08:26 GMT expires: - '-1' pragma: @@ -810,11 +810,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A47&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=IiW-16O8HhgyOs0g2DhV3S0MvJunh1ldgbWXN6MWfEOeoBOA0LXegP_n1KseCySbyc9iFFLAPl5ALsnZ5Ugy1bCAIYpeBn1pp7wnoOiikPAbHl-Ymy1O9PQieq5lB2rpEWqYJFE2Kn1AwB1EGA_ylXky7jaT6x-UTQv2s2ZWb7PtHTRYnLxddjwTtbVkAvEOMZCnPiDhKM5aks9n2Ryz1921nPiTlzprEV8PSUKXLfPI210qOr8xDObn020b9_LX5GSMczPDXCI-ADY2dKaTshhyWizbCoGFc4osDVlZMqyVy6RKvLeJ_zmrgGMhRs7E8cO9kkPFa_paGHhllJdTEQ&h=TbWOPO3zdwAtZuUOFqR8w8C1-RKlBbexLaYzEcoCM8s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8cd93223-dc51-4bac-95eb-4d029ce03d6e?api-version=2022-08-01-preview&t=2023-06-27T08%3A08%3A26&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=upZLZGWaGZdb8r5PYplLb6Rl8ex3iPsV_sklLwanbphL2j4koHJxAm4WmTcxRz82Hjv4lhFJAl4lDSqsigv2gSkUiHIpggNOar7EMni25Ao-8awXGwHJGVklffQ9QQkgmZXtIU8CdY2rIOeq8XVU2WVZ6xBsU3p5lCNk_JvKyt8nLQj6zcs4ye8CbZ8UYoV2qK2FbDod1kjJcRM11gBDQXVvr68O1zi5yU7WO6HrdfodsADeWlu8JnKev8-IfMOBynLdMYw2sEEzgej232Id_cRcdiquZKAqvfP8_v_NbcTpt1mEY3AD_-QBwLr_4ONKhUp5ng9J1iicDVi7QUtuew&h=Xb8yFf_RoPQQQDcw4wBmhHxn_xobJeqsv7VhyVKtefA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n - \ \"name\": \"7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8cd93223-dc51-4bac-95eb-4d029ce03d6e\",\r\n + \ \"name\": \"8cd93223-dc51-4bac-95eb-4d029ce03d6e\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -823,7 +823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:20:47 GMT + - Tue, 27 Jun 2023 08:08:26 GMT expires: - '-1' pragma: @@ -857,11 +857,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3?api-version=2022-08-01-preview&t=2023-06-27T04%3A20%3A47&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=IiW-16O8HhgyOs0g2DhV3S0MvJunh1ldgbWXN6MWfEOeoBOA0LXegP_n1KseCySbyc9iFFLAPl5ALsnZ5Ugy1bCAIYpeBn1pp7wnoOiikPAbHl-Ymy1O9PQieq5lB2rpEWqYJFE2Kn1AwB1EGA_ylXky7jaT6x-UTQv2s2ZWb7PtHTRYnLxddjwTtbVkAvEOMZCnPiDhKM5aks9n2Ryz1921nPiTlzprEV8PSUKXLfPI210qOr8xDObn020b9_LX5GSMczPDXCI-ADY2dKaTshhyWizbCoGFc4osDVlZMqyVy6RKvLeJ_zmrgGMhRs7E8cO9kkPFa_paGHhllJdTEQ&h=TbWOPO3zdwAtZuUOFqR8w8C1-RKlBbexLaYzEcoCM8s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8cd93223-dc51-4bac-95eb-4d029ce03d6e?api-version=2022-08-01-preview&t=2023-06-27T08%3A08%3A26&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=upZLZGWaGZdb8r5PYplLb6Rl8ex3iPsV_sklLwanbphL2j4koHJxAm4WmTcxRz82Hjv4lhFJAl4lDSqsigv2gSkUiHIpggNOar7EMni25Ao-8awXGwHJGVklffQ9QQkgmZXtIU8CdY2rIOeq8XVU2WVZ6xBsU3p5lCNk_JvKyt8nLQj6zcs4ye8CbZ8UYoV2qK2FbDod1kjJcRM11gBDQXVvr68O1zi5yU7WO6HrdfodsADeWlu8JnKev8-IfMOBynLdMYw2sEEzgej232Id_cRcdiquZKAqvfP8_v_NbcTpt1mEY3AD_-QBwLr_4ONKhUp5ng9J1iicDVi7QUtuew&h=Xb8yFf_RoPQQQDcw4wBmhHxn_xobJeqsv7VhyVKtefA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n - \ \"name\": \"7d5a0bda-9103-49fa-aedb-ccbd10ef44a3\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/8cd93223-dc51-4bac-95eb-4d029ce03d6e\",\r\n + \ \"name\": \"8cd93223-dc51-4bac-95eb-4d029ce03d6e\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -870,7 +870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:17 GMT + - Tue, 27 Jun 2023 08:08:57 GMT expires: - '-1' pragma: @@ -910,9 +910,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-46-9fe0e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-08-26-1816d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2883024S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.817258S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -924,20 +924,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:46.3111996Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:08:26.002391Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:46.3111996Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:08:26.002391Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1900' + - '1896' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:18 GMT + - Tue, 27 Jun 2023 08:08:57 GMT expires: - '-1' pragma: @@ -977,9 +977,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-20-46-9fe0e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-08-26-1816d\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT10.2883024S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT5.817258S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -991,20 +991,20 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:20:46.3111996Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:08:26.002391Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:20:46.3111996Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:08:26.002391Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1900' + - '1896' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:19 GMT + - Tue, 27 Jun 2023 08:08:57 GMT expires: - '-1' pragma: @@ -1050,7 +1050,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:21:19 GMT + - Tue, 27 Jun 2023 08:08:57 GMT expires: - '-1' pragma: @@ -1096,7 +1096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:20 GMT + - Tue, 27 Jun 2023 08:08:58 GMT expires: - '-1' pragma: @@ -1154,14 +1154,14 @@ interactions: \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:21:20.8759855Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:08:59.1454055Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:20.8759855Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:08:59.1454055Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c?api-version=2022-08-01-preview&t=2023-06-27T04%3a21%3a21&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=dQ75SOcXE6yZP7dQitS2D3uVhKFNZRTg_wBBc689oVX8YJTSWCTnnM7siUMUeXh-B06P6wbzJrC1PsLzLTyy440ajX4r8BFuaviLIPuHMRCmoTU_uBdRzs1bojb09YIiFnl19a9vpgUuiSRG-HRRn3Nh_YUx7ZNJdUm2wRAcbjeXwQcXnCamyDyBVXZ39pHvVuJ08g1BoUSIBORi1z679Vdyp_y2PUhEXyhP-bbbfHKFNtJ5TNBHS0WolXNZ9qE-jU_djT_q1px7F0uF7Wqx7rTpC4SZ6YmMzHWbO4rqGUc8JOv3sZ6PAIPJsYmVAH8ZZBhgGYOauvM15bvjhDz5Vw&h=X9y9prUmnxTVFIt14aJfaO4xw2UOSheqy6xs5kJMn8s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afac93af-5d0f-4486-a728-ece52fb1c759?api-version=2022-08-01-preview&t=2023-06-27T08%3a09%3a00&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=oy9vWcU-DERTFaZEVpJ4CSk_bJFm3p3rRNaUZrqFkJXoMA_40Fy9fsWiKxlbgLunXDn0fd__srfbehwUJjZp0y_j2oCTCPbyHGbLWFCb3bMZ4ulRXdG0HKKUqByE0JOktBJZ5vK_h_yulyFjeyo9BE_WkF1YQ-81PGF6k-kPYWBWyMqv6jyfI9LLDlP4GwDf6WMXkUJnSlu-ZrIccg7AgeUHtgcrXBcvWGgPsoAmtAZ4I6utI3jaQWKuN5yOlS6xibMeb5ZfA6CQEoMBYjV3Swp1itrbRzBQb2GAjGSLr9oWL-P2h_d16TptVYWHaExTJhvhPWW6NGx_pz8-s-SwxQ&h=Q8fkMz16z_TBI-AP6JXe1E4hlC7tyIbIn4B2RPD050c cache-control: - no-cache content-length: @@ -1169,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:21 GMT + - Tue, 27 Jun 2023 08:08:59 GMT expires: - '-1' pragma: @@ -1202,11 +1202,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c?api-version=2022-08-01-preview&t=2023-06-27T04%3A21%3A21&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=dQ75SOcXE6yZP7dQitS2D3uVhKFNZRTg_wBBc689oVX8YJTSWCTnnM7siUMUeXh-B06P6wbzJrC1PsLzLTyy440ajX4r8BFuaviLIPuHMRCmoTU_uBdRzs1bojb09YIiFnl19a9vpgUuiSRG-HRRn3Nh_YUx7ZNJdUm2wRAcbjeXwQcXnCamyDyBVXZ39pHvVuJ08g1BoUSIBORi1z679Vdyp_y2PUhEXyhP-bbbfHKFNtJ5TNBHS0WolXNZ9qE-jU_djT_q1px7F0uF7Wqx7rTpC4SZ6YmMzHWbO4rqGUc8JOv3sZ6PAIPJsYmVAH8ZZBhgGYOauvM15bvjhDz5Vw&h=X9y9prUmnxTVFIt14aJfaO4xw2UOSheqy6xs5kJMn8s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afac93af-5d0f-4486-a728-ece52fb1c759?api-version=2022-08-01-preview&t=2023-06-27T08%3A09%3A00&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=oy9vWcU-DERTFaZEVpJ4CSk_bJFm3p3rRNaUZrqFkJXoMA_40Fy9fsWiKxlbgLunXDn0fd__srfbehwUJjZp0y_j2oCTCPbyHGbLWFCb3bMZ4ulRXdG0HKKUqByE0JOktBJZ5vK_h_yulyFjeyo9BE_WkF1YQ-81PGF6k-kPYWBWyMqv6jyfI9LLDlP4GwDf6WMXkUJnSlu-ZrIccg7AgeUHtgcrXBcvWGgPsoAmtAZ4I6utI3jaQWKuN5yOlS6xibMeb5ZfA6CQEoMBYjV3Swp1itrbRzBQb2GAjGSLr9oWL-P2h_d16TptVYWHaExTJhvhPWW6NGx_pz8-s-SwxQ&h=Q8fkMz16z_TBI-AP6JXe1E4hlC7tyIbIn4B2RPD050c response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n - \ \"name\": \"022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afac93af-5d0f-4486-a728-ece52fb1c759\",\r\n + \ \"name\": \"afac93af-5d0f-4486-a728-ece52fb1c759\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1215,7 +1215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:21 GMT + - Tue, 27 Jun 2023 08:08:59 GMT expires: - '-1' pragma: @@ -1250,11 +1250,11 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c?api-version=2022-08-01-preview&t=2023-06-27T04%3A21%3A21&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=dQ75SOcXE6yZP7dQitS2D3uVhKFNZRTg_wBBc689oVX8YJTSWCTnnM7siUMUeXh-B06P6wbzJrC1PsLzLTyy440ajX4r8BFuaviLIPuHMRCmoTU_uBdRzs1bojb09YIiFnl19a9vpgUuiSRG-HRRn3Nh_YUx7ZNJdUm2wRAcbjeXwQcXnCamyDyBVXZ39pHvVuJ08g1BoUSIBORi1z679Vdyp_y2PUhEXyhP-bbbfHKFNtJ5TNBHS0WolXNZ9qE-jU_djT_q1px7F0uF7Wqx7rTpC4SZ6YmMzHWbO4rqGUc8JOv3sZ6PAIPJsYmVAH8ZZBhgGYOauvM15bvjhDz5Vw&h=X9y9prUmnxTVFIt14aJfaO4xw2UOSheqy6xs5kJMn8s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afac93af-5d0f-4486-a728-ece52fb1c759?api-version=2022-08-01-preview&t=2023-06-27T08%3A09%3A00&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=oy9vWcU-DERTFaZEVpJ4CSk_bJFm3p3rRNaUZrqFkJXoMA_40Fy9fsWiKxlbgLunXDn0fd__srfbehwUJjZp0y_j2oCTCPbyHGbLWFCb3bMZ4ulRXdG0HKKUqByE0JOktBJZ5vK_h_yulyFjeyo9BE_WkF1YQ-81PGF6k-kPYWBWyMqv6jyfI9LLDlP4GwDf6WMXkUJnSlu-ZrIccg7AgeUHtgcrXBcvWGgPsoAmtAZ4I6utI3jaQWKuN5yOlS6xibMeb5ZfA6CQEoMBYjV3Swp1itrbRzBQb2GAjGSLr9oWL-P2h_d16TptVYWHaExTJhvhPWW6NGx_pz8-s-SwxQ&h=Q8fkMz16z_TBI-AP6JXe1E4hlC7tyIbIn4B2RPD050c response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n - \ \"name\": \"022ddc3a-bd72-4cab-90f5-907506c0ce4c\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/afac93af-5d0f-4486-a728-ece52fb1c759\",\r\n + \ \"name\": \"afac93af-5d0f-4486-a728-ece52fb1c759\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1263,7 +1263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:51 GMT + - Tue, 27 Jun 2023 08:09:30 GMT expires: - '-1' pragma: @@ -1304,9 +1304,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-21-21-6782e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-08-59-99e5a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.7995499S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.6583102S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1317,8 +1317,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T04:21:20.8759855Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:20.8759855Z\"\r\n + \"2023-06-27T08:08:59.1454055Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:08:59.1454055Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1329,7 +1329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:51 GMT + - Tue, 27 Jun 2023 08:09:30 GMT expires: - '-1' pragma: @@ -1369,9 +1369,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-21-21-6782e\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-08-59-99e5a\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT5.7995499S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.6583102S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n @@ -1382,8 +1382,8 @@ interactions: \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T04:21:20.8759855Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:20.8759855Z\"\r\n + \"2023-06-27T08:08:59.1454055Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:08:59.1454055Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: @@ -1394,7 +1394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:52 GMT + - Tue, 27 Jun 2023 08:09:31 GMT expires: - '-1' pragma: @@ -1440,7 +1440,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:21:53 GMT + - Tue, 27 Jun 2023 08:09:31 GMT expires: - '-1' pragma: @@ -1457,36 +1457,38 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group create Connection: - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json ParameterSetName: - - --name --location --template-file --deny-settings-mode --deployment-resource-group - --yes + - --location --name User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '199' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:54 GMT + - Tue, 27 Jun 2023 08:09:32 GMT expires: - '-1' pragma: @@ -1495,174 +1497,75 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 404 - message: Not Found + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - stack sub create Connection: - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - - python-requests/2.31.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://aka.ms/BicepLatestRelease + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '' + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive + - no-cache content-length: - - '0' + - '199' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:21:55 GMT + - Tue, 27 Jun 2023 08:09:32 GMT expires: - - Tue, 27 Jun 2023 04:21:55 GMT - location: - - https://downloads.bicep.azure.com/releases/latest + - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e - server: - - Kestrel strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://downloads.bicep.azure.com/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## - Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files - (bicep-style parameters file). This includes support for:\r\n - support for - expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - - supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group - create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate - bicepparam file from given Bicep file (#10595)\r\n - Buildparams command - vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env - variables in .bicepparam files (#10726)\r\n - Support bicepparam files for - VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - - Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming - modules from ACR (#10747)\r\n* Bicep build command linter provides a structured - output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* - Mark overload matches as PotentialMatches if any argument is of type ''any'' - (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* - Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from - symbol resolution logic (#10626)\r\n* Derive operation return type from operands - (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in - addition to metadata.json (#10860)\r\n* Add intellisense support for param - and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI - by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument - is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries - (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* - Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' - headers: - accept-ranges: - - bytes - connection: - - keep-alive - content-length: - - '41663' - content-type: - - application/octet-stream - date: - - Tue, 27 Jun 2023 04:21:56 GMT - etag: - - '0x8DB75852C02DBEA' - last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT - x-azure-ref: - - 20230627T042156Z-d98vq2nfkd64b486xdk0pfq4n400000008k000000001np7g - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.17.1.54307", "templateHash": "991381235984945273"}}, "parameters": {"location": - {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": - "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": - 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": - "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], - "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', - parameters(''storageAccountName''))]"}}}, "parameters": {}, "actionOnUnmanage": - {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001", + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", "denySettings": {"applyToChildScopes": false}}}' headers: Accept: @@ -1674,12 +1577,12 @@ interactions: Connection: - keep-alive Content-Length: - - '1064' + - '1670' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --deny-settings-mode --deployment-resource-group - --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -1689,27 +1592,29 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T04:21:59.7250393Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:59.7250393Z\"\r\n + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:09:33.3873018Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7?api-version=2022-08-01-preview&t=2023-06-27T04%3a22%3a00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rLDhLQNK4QyQ9cvsyzc_O9SrFhigUu_p42y-aOmtc83ow8CmoG5bzjqMqsYm9SdRUSNvFdxrcLbdGA7FysRsVTF8wgGmkXk9D37GhLOUTni-NKuJvFk0XCiGe5SUbU8orJ_wedMhsG5DtrV1rvBElEhDbeH-7cX_cjkUifvHkZ6kHfhVnmK9Lj_B1IW1Csy-7K6bOzDbaEC1Xblu3_2kOdV5dGICtuhL-pLV_lxuH5Ae7q4QizwyIYblZdE7lOFTuEuq6rwzoWdXcaUlW2cJQ7jmMXkuklOxbOx9PPkpz3qNzo2pdEJVoDBwazaXY8byQidbwrVURG4B85BOlUJM0A&h=_xXfOMTk2t-mXIqgDTXyEwrj2ChTLipOnIbabXcuRXo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/68f7b5aa-1710-4aba-ae6c-85611a466fec?api-version=2022-08-01-preview&t=2023-06-27T08%3a09%3a34&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=jFMAFcqWflDbVRTbO5td5jYJycam41CbathEo3TOZMrZKYyMToXzvD04uZY_dLsY-iTZNMeRw6mOdKjwdCPuuLYX0cmJPA9jG7pffByBDqwVp9Y8tJ7a-BY36MXzz5u1ESY-Gu0hjrxwjtQ1yKvi9ZSSu880BEZFsTLifyoITcEn6YxvcquxDSu8UBHTMzZCaYsupKZC__32CRy7E2l_AlHmOROXF4ST6ou3mHN39DWmO_3JS2g_lNjakSsJRTK14rJYf51IBbhQCWU33S7GPnRJhe0yofelLn795G71aYGQfdKomj7q7Fas1-FyEx_ysfX2Vh9SaxTNPNI8TI75OQ&h=dYkH43k7XA4-omNpP_giHY4TUIoB7RzBwuGVmavQpQk cache-control: - no-cache content-length: - - '1165' + - '1285' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:00 GMT + - Tue, 27 Jun 2023 08:09:34 GMT expires: - '-1' pragma: @@ -1737,16 +1642,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --deployment-resource-group - --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rLDhLQNK4QyQ9cvsyzc_O9SrFhigUu_p42y-aOmtc83ow8CmoG5bzjqMqsYm9SdRUSNvFdxrcLbdGA7FysRsVTF8wgGmkXk9D37GhLOUTni-NKuJvFk0XCiGe5SUbU8orJ_wedMhsG5DtrV1rvBElEhDbeH-7cX_cjkUifvHkZ6kHfhVnmK9Lj_B1IW1Csy-7K6bOzDbaEC1Xblu3_2kOdV5dGICtuhL-pLV_lxuH5Ae7q4QizwyIYblZdE7lOFTuEuq6rwzoWdXcaUlW2cJQ7jmMXkuklOxbOx9PPkpz3qNzo2pdEJVoDBwazaXY8byQidbwrVURG4B85BOlUJM0A&h=_xXfOMTk2t-mXIqgDTXyEwrj2ChTLipOnIbabXcuRXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/68f7b5aa-1710-4aba-ae6c-85611a466fec?api-version=2022-08-01-preview&t=2023-06-27T08%3A09%3A34&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=jFMAFcqWflDbVRTbO5td5jYJycam41CbathEo3TOZMrZKYyMToXzvD04uZY_dLsY-iTZNMeRw6mOdKjwdCPuuLYX0cmJPA9jG7pffByBDqwVp9Y8tJ7a-BY36MXzz5u1ESY-Gu0hjrxwjtQ1yKvi9ZSSu880BEZFsTLifyoITcEn6YxvcquxDSu8UBHTMzZCaYsupKZC__32CRy7E2l_AlHmOROXF4ST6ou3mHN39DWmO_3JS2g_lNjakSsJRTK14rJYf51IBbhQCWU33S7GPnRJhe0yofelLn795G71aYGQfdKomj7q7Fas1-FyEx_ysfX2Vh9SaxTNPNI8TI75OQ&h=dYkH43k7XA4-omNpP_giHY4TUIoB7RzBwuGVmavQpQk response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n - \ \"name\": \"3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/68f7b5aa-1710-4aba-ae6c-85611a466fec\",\r\n + \ \"name\": \"68f7b5aa-1710-4aba-ae6c-85611a466fec\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -1755,7 +1660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:00 GMT + - Tue, 27 Jun 2023 08:09:34 GMT expires: - '-1' pragma: @@ -1785,16 +1690,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --deployment-resource-group - --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A00&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=rLDhLQNK4QyQ9cvsyzc_O9SrFhigUu_p42y-aOmtc83ow8CmoG5bzjqMqsYm9SdRUSNvFdxrcLbdGA7FysRsVTF8wgGmkXk9D37GhLOUTni-NKuJvFk0XCiGe5SUbU8orJ_wedMhsG5DtrV1rvBElEhDbeH-7cX_cjkUifvHkZ6kHfhVnmK9Lj_B1IW1Csy-7K6bOzDbaEC1Xblu3_2kOdV5dGICtuhL-pLV_lxuH5Ae7q4QizwyIYblZdE7lOFTuEuq6rwzoWdXcaUlW2cJQ7jmMXkuklOxbOx9PPkpz3qNzo2pdEJVoDBwazaXY8byQidbwrVURG4B85BOlUJM0A&h=_xXfOMTk2t-mXIqgDTXyEwrj2ChTLipOnIbabXcuRXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/68f7b5aa-1710-4aba-ae6c-85611a466fec?api-version=2022-08-01-preview&t=2023-06-27T08%3A09%3A34&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=jFMAFcqWflDbVRTbO5td5jYJycam41CbathEo3TOZMrZKYyMToXzvD04uZY_dLsY-iTZNMeRw6mOdKjwdCPuuLYX0cmJPA9jG7pffByBDqwVp9Y8tJ7a-BY36MXzz5u1ESY-Gu0hjrxwjtQ1yKvi9ZSSu880BEZFsTLifyoITcEn6YxvcquxDSu8UBHTMzZCaYsupKZC__32CRy7E2l_AlHmOROXF4ST6ou3mHN39DWmO_3JS2g_lNjakSsJRTK14rJYf51IBbhQCWU33S7GPnRJhe0yofelLn795G71aYGQfdKomj7q7Fas1-FyEx_ysfX2Vh9SaxTNPNI8TI75OQ&h=dYkH43k7XA4-omNpP_giHY4TUIoB7RzBwuGVmavQpQk response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n - \ \"name\": \"3ff47f0a-ea27-42ac-bcbe-d204ddd87ba7\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/68f7b5aa-1710-4aba-ae6c-85611a466fec\",\r\n + \ \"name\": \"68f7b5aa-1710-4aba-ae6c-85611a466fec\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -1803,7 +1708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:30 GMT + - Tue, 27 Jun 2023 08:10:03 GMT expires: - '-1' pragma: @@ -1833,8 +1738,8 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --deny-settings-mode --deployment-resource-group - --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1844,32 +1749,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-00-c0f29\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT6.1834631S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n - \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-09-33-4127b\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT7.3604336S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:21:59.7250393Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:59.7250393Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:09:33.3873018Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1952' + - '2140' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:30 GMT + - Tue, 27 Jun 2023 08:10:04 GMT expires: - '-1' pragma: @@ -1895,11 +1801,12 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -1909,32 +1816,33 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-00-c0f29\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n - \ \"duration\": \"PT6.1834631S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n - \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n - \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-09-33-4127b\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT7.3604336S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:21:59.7250393Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:21:59.7250393Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:09:33.3873018Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1952' + - '2140' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:32 GMT + - Tue, 27 Jun 2023 08:10:05 GMT expires: - '-1' pragma: @@ -1953,34 +1861,74 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": + {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, + "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, + "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", + "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", + "properties": {"displayName": "DanteTemplateSpec", "description": "Template + Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", + "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), + parameters(''specVersionName''))]", "location": "[parameters(''location'')]", + "properties": {"description": "generated version number for testing stacks", + "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": + {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive Content-Length: - - '0' + - '1670' + Content-Type: + - application/json ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:10:05.5218655Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/20c2893c-a4cb-46f3-861e-3322ee2fb626?api-version=2022-08-01-preview&t=2023-06-27T08%3a10%3a05&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=eSjOz4EuFJsd6IXED2f-xARKIsxTuwxRxI6iwKR9zRpCWOraCgeKgE_QhH9FUtNaErLQTyjF1jJAr0N0wJ2gcBX3PgdlD6vKr821YrfJyM_GWd7qftyXS660-rpv_XA-pJnOYZCOJUK-4lw5TpKaELphKJRA7p1_anHnrEsZg6vH9BpXdioUqZgOwqV6KttYiMjCpqRvN-FnCRr3fl26cWZbCif8ERXaZskpVnhjN1m6x9mWvDHwzjQgFF_F-yd1lvrKZDfr6nn1w3K24a5b1KGzZ33S_GHjSjb-n1FCiCXOSdD-Tw9AzBSD1qxcy1O0N6e7740zFE_Q3szH39G7cA&h=jozKgk8CfrILfgLsXcDEhg8r_pRnUHEu2Mmfh7TJnaM cache-control: - no-cache content-length: - - '0' + - '1285' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:32 GMT + - Tue, 27 Jun 2023 08:10:05 GMT expires: - '-1' pragma: @@ -1989,64 +1937,70 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group create + - stack sub create Connection: - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json ParameterSetName: - - --location --name + - --name --location --deployment-resource-group --deny-settings-mode --template-file + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/20c2893c-a4cb-46f3-861e-3322ee2fb626?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A05&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=eSjOz4EuFJsd6IXED2f-xARKIsxTuwxRxI6iwKR9zRpCWOraCgeKgE_QhH9FUtNaErLQTyjF1jJAr0N0wJ2gcBX3PgdlD6vKr821YrfJyM_GWd7qftyXS660-rpv_XA-pJnOYZCOJUK-4lw5TpKaELphKJRA7p1_anHnrEsZg6vH9BpXdioUqZgOwqV6KttYiMjCpqRvN-FnCRr3fl26cWZbCif8ERXaZskpVnhjN1m6x9mWvDHwzjQgFF_F-yd1lvrKZDfr6nn1w3K24a5b1KGzZ33S_GHjSjb-n1FCiCXOSdD-Tw9AzBSD1qxcy1O0N6e7740zFE_Q3szH39G7cA&h=jozKgk8CfrILfgLsXcDEhg8r_pRnUHEu2Mmfh7TJnaM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/20c2893c-a4cb-46f3-861e-3322ee2fb626\",\r\n + \ \"name\": \"20c2893c-a4cb-46f3-861e-3322ee2fb626\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '263' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:34 GMT + - Tue, 27 Jun 2023 08:10:05 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2059,148 +2013,89 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/20c2893c-a4cb-46f3-861e-3322ee2fb626?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A05&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=eSjOz4EuFJsd6IXED2f-xARKIsxTuwxRxI6iwKR9zRpCWOraCgeKgE_QhH9FUtNaErLQTyjF1jJAr0N0wJ2gcBX3PgdlD6vKr821YrfJyM_GWd7qftyXS660-rpv_XA-pJnOYZCOJUK-4lw5TpKaELphKJRA7p1_anHnrEsZg6vH9BpXdioUqZgOwqV6KttYiMjCpqRvN-FnCRr3fl26cWZbCif8ERXaZskpVnhjN1m6x9mWvDHwzjQgFF_F-yd1lvrKZDfr6nn1w3K24a5b1KGzZ33S_GHjSjb-n1FCiCXOSdD-Tw9AzBSD1qxcy1O0N6e7740zFE_Q3szH39G7cA&h=jozKgk8CfrILfgLsXcDEhg8r_pRnUHEu2Mmfh7TJnaM response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/20c2893c-a4cb-46f3-861e-3322ee2fb626\",\r\n + \ \"name\": \"20c2893c-a4cb-46f3-861e-3322ee2fb626\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '199' + - '260' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:34 GMT + - Tue, 27 Jun 2023 08:10:35 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway status: - code: 404 - message: Not Found -- request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": - {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, - "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, - "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", - "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", - "properties": {"displayName": "DanteTemplateSpec", "description": "Template - Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", - "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), - parameters(''specVersionName''))]", "location": "[parameters(''location'')]", - "properties": {"description": "generated version number for testing stacks", - "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": - {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', - parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", - "denySettings": {"applyToChildScopes": false}}}' + code: 200 + message: OK +- request: + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - stack sub create Connection: - keep-alive - Content-Length: - - '1670' - Content-Type: - - application/json ParameterSetName: - --name --location --deployment-resource-group --deny-settings-mode --template-file --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-10-05-80b1b\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT8.2073519S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:35.8297984Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:10:05.5218655Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f?api-version=2022-08-01-preview&t=2023-06-27T04%3a22%3a36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RX7bWdo7tUz-uT5JTWfdq99DyTQAgk0rpENJgQ_f7CAou0vi5dNTMzoS9lqDm0PuGRjZo9RSW76y_1VeyBlq0ClAXrSkwE8S7EfDV51eJ1QMVaPgk4WbActzZjj3uRIbRqE19CKAElgMvI9UMp-9_-2WOebrmloXNLNyMeISkGyAHojl5pJgIFxUu1gSMCpIgeag4YvKmTqpnGEsfv-uuWlLZoSyht4WzHG-kgjE58FkrB11c9MBg6YwxsFR1u0TXz-M29UHBHHqGq9mfqukEGtyKitj8OLZwUmbi7A1YGnQ1z5GElYYNRBwxNAnQKgn-ioMae0etEt8vSFqQ5j7Ew&h=RgDL3tsIMr5q1CxDyRDp3uMJ9jYaUhQ2fe-IAQPyWa0 - cache-control: - - no-cache - content-length: - - '1285' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:22:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RX7bWdo7tUz-uT5JTWfdq99DyTQAgk0rpENJgQ_f7CAou0vi5dNTMzoS9lqDm0PuGRjZo9RSW76y_1VeyBlq0ClAXrSkwE8S7EfDV51eJ1QMVaPgk4WbActzZjj3uRIbRqE19CKAElgMvI9UMp-9_-2WOebrmloXNLNyMeISkGyAHojl5pJgIFxUu1gSMCpIgeag4YvKmTqpnGEsfv-uuWlLZoSyht4WzHG-kgjE58FkrB11c9MBg6YwxsFR1u0TXz-M29UHBHHqGq9mfqukEGtyKitj8OLZwUmbi7A1YGnQ1z5GElYYNRBwxNAnQKgn-ioMae0etEt8vSFqQ5j7Ew&h=RgDL3tsIMr5q1CxDyRDp3uMJ9jYaUhQ2fe-IAQPyWa0 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n - \ \"name\": \"eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '263' + - '2599' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:22:36 GMT + - Tue, 27 Jun 2023 08:10:35 GMT expires: - '-1' pragma: @@ -2222,43 +2117,128 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource show Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f?api-version=2022-08-01-preview&t=2023-06-27T04%3A22%3A36&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RX7bWdo7tUz-uT5JTWfdq99DyTQAgk0rpENJgQ_f7CAou0vi5dNTMzoS9lqDm0PuGRjZo9RSW76y_1VeyBlq0ClAXrSkwE8S7EfDV51eJ1QMVaPgk4WbActzZjj3uRIbRqE19CKAElgMvI9UMp-9_-2WOebrmloXNLNyMeISkGyAHojl5pJgIFxUu1gSMCpIgeag4YvKmTqpnGEsfv-uuWlLZoSyht4WzHG-kgjE58FkrB11c9MBg6YwxsFR1u0TXz-M29UHBHHqGq9mfqukEGtyKitj8OLZwUmbi7A1YGnQ1z5GElYYNRBwxNAnQKgn-ioMae0etEt8vSFqQ5j7Ew&h=RgDL3tsIMr5q1CxDyRDp3uMJ9jYaUhQ2fe-IAQPyWa0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n - \ \"name\": \"eba0f629-2d07-4788-b0a0-612ec24f6b5f\",\r\n \"status\": \"succeeded\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '260' + - '21180' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:06 GMT + - Tue, 27 Jun 2023 08:10:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -2270,52 +2250,38 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource show Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-36-b2474\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.0176949S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:37.1068596Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:35.8297984Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:09:37.5131131Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: cache-control: - no-cache content-length: - - '2140' + - '729' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:06 GMT + - Tue, 27 Jun 2023 08:10:38 GMT expires: - '-1' pragma: @@ -2341,48 +2307,236 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource show Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-22-36-b2474\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.0176949S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' + headers: + cache-control: + - no-cache + content-length: + - '21180' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:10:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show + Connection: + - keep-alive + ParameterSetName: + - -n -g --resource-type + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:10:09.3801709Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:10:10.7395509Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '729' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:10:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-10-05-80b1b\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT8.2073519S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:35.8297984Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:10:05.5218655Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2140' + - '2599' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:07 GMT + - Tue, 27 Jun 2023 08:10:41 GMT expires: - '-1' pragma: @@ -2417,8 +2571,8 @@ interactions: "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', - parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", "denySettings": {"applyToChildScopes": false}}}' headers: @@ -2431,12 +2585,12 @@ interactions: Connection: - keep-alive Content-Length: - - '1670' + - '1672' Content-Type: - application/json ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -2444,31 +2598,31 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:08.3409917Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:10:42.0143877Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b?api-version=2022-08-01-preview&t=2023-06-27T04%3a23%3a08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=xu-W3J1U61X7cNM0bfPmhwoon8wSvAEDJlVh-ZCJhWWfsDrcn6mNiuIEMbmdlf5CWL-HttUvYJXFroy0XO4jsDs4dkMMoTCxnN79OBTAeMD0DkbP85SBATWeZ5BLO6z-36HPLLlClnnLwP7cZb1UBIvbECqGSFZ3RR2FJFLVsZkVIWeCrrYEhItQMgwXrR_98yAS8ddrswcnvlIEV6W721cQqbxhZ4KqjkADgVjsSFi89dpyCPTT6mFGLycNLL9kcl-HOaCvNL3FzGuA5T8NqhIw1CDjfHBA4Ium5AHUf82jV2f1dhbkqLhNTFMwV1sSn2bWjYdUu1m0GfT9YOal4Q&h=yTmFaKPCbQSEXiIIMSktXbLDUs-buF6bhZ850IgGck8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3a10%3a42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q cache-control: - no-cache content-length: - - '1285' + - '1287' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:07 GMT + - Tue, 27 Jun 2023 08:10:41 GMT expires: - '-1' pragma: @@ -2500,16 +2654,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=xu-W3J1U61X7cNM0bfPmhwoon8wSvAEDJlVh-ZCJhWWfsDrcn6mNiuIEMbmdlf5CWL-HttUvYJXFroy0XO4jsDs4dkMMoTCxnN79OBTAeMD0DkbP85SBATWeZ5BLO6z-36HPLLlClnnLwP7cZb1UBIvbECqGSFZ3RR2FJFLVsZkVIWeCrrYEhItQMgwXrR_98yAS8ddrswcnvlIEV6W721cQqbxhZ4KqjkADgVjsSFi89dpyCPTT6mFGLycNLL9kcl-HOaCvNL3FzGuA5T8NqhIw1CDjfHBA4Ium5AHUf82jV2f1dhbkqLhNTFMwV1sSn2bWjYdUu1m0GfT9YOal4Q&h=yTmFaKPCbQSEXiIIMSktXbLDUs-buF6bhZ850IgGck8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n - \ \"name\": \"ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n + \ \"name\": \"c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -2518,7 +2672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:08 GMT + - Tue, 27 Jun 2023 08:10:42 GMT expires: - '-1' pragma: @@ -2548,25 +2702,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A08&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=xu-W3J1U61X7cNM0bfPmhwoon8wSvAEDJlVh-ZCJhWWfsDrcn6mNiuIEMbmdlf5CWL-HttUvYJXFroy0XO4jsDs4dkMMoTCxnN79OBTAeMD0DkbP85SBATWeZ5BLO6z-36HPLLlClnnLwP7cZb1UBIvbECqGSFZ3RR2FJFLVsZkVIWeCrrYEhItQMgwXrR_98yAS8ddrswcnvlIEV6W721cQqbxhZ4KqjkADgVjsSFi89dpyCPTT6mFGLycNLL9kcl-HOaCvNL3FzGuA5T8NqhIw1CDjfHBA4Ium5AHUf82jV2f1dhbkqLhNTFMwV1sSn2bWjYdUu1m0GfT9YOal4Q&h=yTmFaKPCbQSEXiIIMSktXbLDUs-buF6bhZ850IgGck8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n - \ \"name\": \"ea2c2804-ba4a-4901-9a5d-3db85cbd2e4b\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n + \ \"name\": \"c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:39 GMT + - Tue, 27 Jun 2023 08:11:12 GMT expires: - '-1' pragma: @@ -2596,46 +2750,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --deny-settings-mode --template-file - --parameters --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-08-d4be9\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.0805543S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:08.3409917Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n + \ \"name\": \"c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '2599' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:39 GMT + - Tue, 27 Jun 2023 08:11:42 GMT expires: - '-1' pragma: @@ -2657,11 +2790,224 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource show + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n + \ \"name\": \"c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:12:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n + \ \"name\": \"c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n \"status\": \"deletingResources\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:12:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946?api-version=2022-08-01-preview&t=2023-06-27T08%3A10%3A42&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBeO6zZkFafPKexh165ltrQMyDN_Fg98LyXuWprzULVHfPseE82HP_1RAnJ2--vGHzCM0Ew-ZShgatKfqxxomYFpdXZ1qkk3ztYBED8TYF-HoHcWcQLjaIwA7toP4upDgC2laVasbcwZqeZnzyhZcmgXg4ki8hyxE5uYoKXVpO9XJKsyyNNWiUs0rv-O9pgtOiGE97BAWnMMcDZNoNmx179mhbTiaqTRryn7-zS8vSozmpZJvU5fYRwWEkUaeeP8KpJaRegF0b0Sssk_6ZyEN4B1on6mNX40EGmHsBsd4n08IFYwRW2cq3O_fXxnOr-7_-8sXTbLKq2NWa15eSe_8g&h=xxxgPvJs3caF-1_xVeTO-6YloTMq0_OSOrzP4e8ZS7Q + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n + \ \"name\": \"c9dae9e3-cce4-4e28-9f31-8c59c7000946\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:13:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --parameters --delete-resources --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-10-42-4cada\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT2M16.3273685S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2023-06-27T08:10:42.0143877Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2608' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:13:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource show Connection: - keep-alive ParameterSetName: @@ -2772,7 +3118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:41 GMT + - Tue, 27 Jun 2023 08:13:15 GMT expires: - '-1' pragma: @@ -2808,9 +3154,9 @@ interactions: string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:39.2029485Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:37.1068596Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:39.5779314Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:09:37.5131131Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" headers: @@ -2821,7 +3167,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:23:41 GMT + - Tue, 27 Jun 2023 08:13:15 GMT expires: - '-1' pragma: @@ -2937,1345 +3283,36 @@ interactions: East","West India","South India","Central India","Canada Central","Canada East","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Italy North","Japan East","Japan - West","Korea Central","Korea South","Malaysia South","North Europe","Norway - East","Poland Central","Qatar Central","Sweden Central","UAE North","West - Central US","West Europe","West US 2","West US","West US 3","South Central - US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' - headers: - cache-control: - - no-cache - content-length: - - '21180' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:23:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005?api-version=2022-02-01 - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": - \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing - stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:23:11.4718841Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:11.8469127Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-two000005\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '729' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:23:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-08-d4be9\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT6.0805543S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:08.3409917Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2599' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:23:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.10.61.36676", "templateHash": "11934527272858304086"}}, "parameters": {"name": - {"type": "string"}, "specVersionName": {"type": "string", "defaultValue": "v1"}, - "location": {"type": "string", "defaultValue": "[resourceGroup().location]"}}, - "resources": [{"type": "Microsoft.Resources/templateSpecs", "apiVersion": "2022-02-01", - "name": "[parameters(''name'')]", "location": "[parameters(''location'')]", - "properties": {"displayName": "DanteTemplateSpec", "description": "Template - Spec for testing stacks."}}, {"type": "Microsoft.Resources/templateSpecs/versions", - "apiVersion": "2022-02-01", "name": "[format(''{0}/{1}'', parameters(''name''), - parameters(''specVersionName''))]", "location": "[parameters(''location'')]", - "properties": {"description": "generated version number for testing stacks", - "mainTemplate": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": - {}, "resources": [], "outputs": {}}}, "dependsOn": ["[resourceId(''Microsoft.Resources/templateSpecs'', - parameters(''name''))]"]}]}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, - "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", - "denySettings": {"applyToChildScopes": false}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - Content-Length: - - '1672' - Content-Type: - - application/json - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - false\r\n },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:45.115881Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3a23%3a45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - cache-control: - - no-cache - content-length: - - '1286' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:23:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n - \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"initializing\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '263' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:23:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n - \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '268' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:24:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n - \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '268' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:24:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n - \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '268' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:25:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n - \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"deletingResources\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '268' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:25:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553?api-version=2022-08-01-preview&t=2023-06-27T04%3A23%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=pS5XpOODm2zyF8dACbv5JLCTiBKAbWQgR9AfXHoNmLifJnzD5A3tJcA8U9tZKbq8qoIJk_3tj-osQ6LD1cwdOOIJ7h4sHKrBlSKI9dB65EUj8caxvXSRat5_Bg3YhH7XWbbewitWjRQAA3M5CXW5hrvZGvSP50GOI1zEV1wLig-pHCsUMH3VBfqZIIPr6vUy9rBpFZ8n7IbdXKx7KFnttTVMpTRj9oF5JKDBCWkTM2v3zWaxXMryzjhrour3pJa9g_hA7vvuPIwr7uTQchT9GGiWF9ThSHl9kMjFRUSACWTNQJmtC0w5Qi-WX4dOTvrhfcMj82Nj6GFa3L6URLDpDQ&h=XbsnpX1nGws0QJbQD0D5Pn4rgirNoRy74O_WHBTJdQo - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n - \ \"name\": \"51ff1b48-16fd-4bd7-950a-0b6b6f7f4553\",\r\n \"status\": \"succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --delete-resources --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-45-cb5dc\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M17.4277759S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T04:23:45.115881Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2607' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East - US","East US 2","East US STG","West Central US","West US","West US 2","West - US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central - US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West - Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West - Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Italy North","Japan East","Japan - West","Korea Central","Korea South","Malaysia South","North Europe","Norway - East","Poland Central","Qatar Central","Sweden Central","UAE North","West - Central US","West Europe","West US 2","West US","West US 3","South Central - US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' - headers: - cache-control: - - no-cache - content-length: - - '21180' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004?api-version=2022-02-01 - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": - \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing - stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:39.2029485Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:22:39.5779314Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-one000004\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '729' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East - US","East US 2","East US STG","West Central US","West US","West US 2","West - US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central - US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West - Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West - Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Italy North","Japan East","Japan - West","Korea Central","Korea South","Malaysia South","North Europe","Norway - East","Poland Central","Qatar Central","Sweden Central","UAE North","West - Central US","West Europe","West US 2","West US","West US 3","South Central - US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' - headers: - cache-control: - - no-cache - content-length: - - '21180' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": - \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing - stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:23:49.0256366Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:23:49.47876Z\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '731' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:22:39.1823235Z","changedTime":"2023-06-27T04:22:39.2810222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:22:39.2029485Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:22:39.2029485Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:22:39.5558274Z","changedTime":"2023-06-27T04:22:39.6716484Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:22:39.5779314Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:22:39.5779314Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:23:49.0039518Z","changedTime":"2023-06-27T04:23:49.1663191Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:23:49.0256366Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:23:49.0256366Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:23:49.4593083Z","changedTime":"2023-06-27T04:23:49.6194101Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:23:49.47876Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:23:49.47876Z"}}]}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '2691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:26:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:26:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:26:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:26:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:26:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:27:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:27:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 - response: - body: - string: '' + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '0' + - '21180' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:27:42 GMT + - Tue, 27 Jun 2023 08:13:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -4289,49 +3326,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - resource show Connection: - keep-alive ParameterSetName: - - --name --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006?api-version=2022-02-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-23-45-cb5dc\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT2M17.4277759S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T04:22:35.8297984Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T04:23:45.115881Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"displayName\": + \"DanteTemplateSpec\",\r\n \"description\": \"Template Spec for testing + stacks.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:10:45.0206568Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:10:45.598782Z\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-three000006\"\r\n}" headers: cache-control: - no-cache content-length: - - '2607' + - '732' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:27:42 GMT + - Tue, 27 Jun 2023 08:13:19 GMT expires: - '-1' pragma: @@ -4357,198 +3379,75 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 27 Jun 2023 04:27:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create + - resource list Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - -g User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '199' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:27:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", - "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": - [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", - "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], - "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": - false}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stack sub create - Connection: - - keep-alive - Content-Length: - - '750' - Content-Type: - - application/json - ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:27:44.6626038Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1?api-version=2022-08-01-preview&t=2023-06-27T04%3a27%3a45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cUGINHimxMyLsENyPtr2x1K8wL9uiANY8nccgja_jUXtvZi2FJ9AjxZ25qXZnZha4WyiBzOkMh-shg1mNc24rBAboOSlC7fRQFQ9kTWyptIAAVRnjW9Opdaytzjx8AMSuFvPho9TCDjMqfK3js_9f5hW7meSM13hRzi9jgC_6h2o5Cq1eURN7Dj440CW7682asEbJDXhAU8pWXjC5yYdg7DK3ceAJ03gIlCnED4iVdIn63MTfss8maF9Ldn0p0qvaKld1uKKPWcPrxgvR8Po6ZHhKH5QnXpflm8Na3-EKXxAFthHfT4RLcvKaYDuZV-JQdJrEQ7obqhu6MJphvojjg&h=TVMBY8W6m4ZvcsPLIvcNBmut6fvtoY-Qi9s2gZEjSdQ cache-control: - no-cache content-length: - - '1224' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:27:45 GMT + - Tue, 27 Jun 2023 08:13:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource list Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - -g User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1?api-version=2022-08-01-preview&t=2023-06-27T04%3A27%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cUGINHimxMyLsENyPtr2x1K8wL9uiANY8nccgja_jUXtvZi2FJ9AjxZ25qXZnZha4WyiBzOkMh-shg1mNc24rBAboOSlC7fRQFQ9kTWyptIAAVRnjW9Opdaytzjx8AMSuFvPho9TCDjMqfK3js_9f5hW7meSM13hRzi9jgC_6h2o5Cq1eURN7Dj440CW7682asEbJDXhAU8pWXjC5yYdg7DK3ceAJ03gIlCnED4iVdIn63MTfss8maF9Ldn0p0qvaKld1uKKPWcPrxgvR8Po6ZHhKH5QnXpflm8Na3-EKXxAFthHfT4RLcvKaYDuZV-JQdJrEQ7obqhu6MJphvojjg&h=TVMBY8W6m4ZvcsPLIvcNBmut6fvtoY-Qi9s2gZEjSdQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n - \ \"name\": \"d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n \"status\": \"initializing\"\r\n}" + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T08:09:37.0836069Z","changedTime":"2023-06-27T08:09:37.2006136Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T08:09:37.1068596Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T08:09:37.1068596Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one000004/versions/v1","name":"cli-test-resource-one000004/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T08:09:37.4972625Z","changedTime":"2023-06-27T08:09:37.6381163Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T08:09:37.5131131Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T08:09:37.5131131Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T08:10:44.965923Z","changedTime":"2023-06-27T08:10:45.1612797Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T08:10:45.0206568Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T08:10:45.0206568Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1","name":"cli-test-resource-three000006/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T08:10:45.5718884Z","changedTime":"2023-06-27T08:10:45.7394055Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T08:10:45.598782Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T08:10:45.598782Z"}}]}' headers: cache-control: - no-cache content-length: - - '263' + - '2692' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:27:45 GMT + - Tue, 27 Jun 2023 08:13:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -4560,49 +3459,46 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1?api-version=2022-08-01-preview&t=2023-06-27T04%3A27%3A45&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=cUGINHimxMyLsENyPtr2x1K8wL9uiANY8nccgja_jUXtvZi2FJ9AjxZ25qXZnZha4WyiBzOkMh-shg1mNc24rBAboOSlC7fRQFQ9kTWyptIAAVRnjW9Opdaytzjx8AMSuFvPho9TCDjMqfK3js_9f5hW7meSM13hRzi9jgC_6h2o5Cq1eURN7Dj440CW7682asEbJDXhAU8pWXjC5yYdg7DK3ceAJ03gIlCnED4iVdIn63MTfss8maF9Ldn0p0qvaKld1uKKPWcPrxgvR8Po6ZHhKH5QnXpflm8Na3-EKXxAFthHfT4RLcvKaYDuZV-JQdJrEQ7obqhu6MJphvojjg&h=TVMBY8W6m4ZvcsPLIvcNBmut6fvtoY-Qi9s2gZEjSdQ + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n - \ \"name\": \"d9dfe4cc-5528-4da4-b1ca-2ccbfb840dd1\",\r\n \"status\": \"succeeded\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '260' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:15 GMT + - Tue, 27 Jun 2023 08:13:20 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4611,203 +3507,118 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-27-45-6b4e9\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.4155788S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:27:44.6626038Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '1654' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:15 GMT + - Tue, 27 Jun 2023 08:13:20 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + strict-transport-security: + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-27-45-6b4e9\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.4155788S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:27:44.6626038Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '1654' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:16 GMT + - Tue, 27 Jun 2023 08:13:35 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", - "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": - [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", - "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], - "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, - "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": - "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": - false}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive - Content-Length: - - '750' - Content-Type: - - application/json ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": - {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n - \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n - \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:17.5794594Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef?api-version=2022-08-01-preview&t=2023-06-27T04%3a28%3a17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zlLfMjEOsV1OT5Sw78admPt6QGrZXBZ2kw22WNubxAMAd3px6clCy4c34NEPsShJIWKp08YCmmJG4-rxdykMJSY7iYLO-sDTruuVfM54OcDeuIR-IyMY8mJV27B07no_wvkITNJ0hQ_B4Jb2mPjVrEOIAo8cLPRW8-o1n7fQAS_w6PRp_vLQqe9FfT7F1ZOey2iiNumUpqPf_-ZLbd4jpOkgRgkX4UlsWhotnvArTjCLbkJTVf2bae7jPEYdJmQ_0i6vpprcLXccFpQVET3shqNsRyRhy4If7neu4IjuHo9NtMcDbsSnxzlX4WcNcu-4vzMYZc1xsoQzR2q4geikzg&h=Q6c8WKYJ2lxfl4QxIKEQi0-4ooTvgCkpqpZ6WKFfDjc cache-control: - no-cache content-length: - - '1224' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:17 GMT + - Tue, 27 Jun 2023 08:13:51 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4816,45 +3627,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zlLfMjEOsV1OT5Sw78admPt6QGrZXBZ2kw22WNubxAMAd3px6clCy4c34NEPsShJIWKp08YCmmJG4-rxdykMJSY7iYLO-sDTruuVfM54OcDeuIR-IyMY8mJV27B07no_wvkITNJ0hQ_B4Jb2mPjVrEOIAo8cLPRW8-o1n7fQAS_w6PRp_vLQqe9FfT7F1ZOey2iiNumUpqPf_-ZLbd4jpOkgRgkX4UlsWhotnvArTjCLbkJTVf2bae7jPEYdJmQ_0i6vpprcLXccFpQVET3shqNsRyRhy4If7neu4IjuHo9NtMcDbsSnxzlX4WcNcu-4vzMYZc1xsoQzR2q4geikzg&h=Q6c8WKYJ2lxfl4QxIKEQi0-4ooTvgCkpqpZ6WKFfDjc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n - \ \"name\": \"3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n \"status\": \"initializing\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '263' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:17 GMT + - Tue, 27 Jun 2023 08:14:06 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4863,45 +3667,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=zlLfMjEOsV1OT5Sw78admPt6QGrZXBZ2kw22WNubxAMAd3px6clCy4c34NEPsShJIWKp08YCmmJG4-rxdykMJSY7iYLO-sDTruuVfM54OcDeuIR-IyMY8mJV27B07no_wvkITNJ0hQ_B4Jb2mPjVrEOIAo8cLPRW8-o1n7fQAS_w6PRp_vLQqe9FfT7F1ZOey2iiNumUpqPf_-ZLbd4jpOkgRgkX4UlsWhotnvArTjCLbkJTVf2bae7jPEYdJmQ_0i6vpprcLXccFpQVET3shqNsRyRhy4If7neu4IjuHo9NtMcDbsSnxzlX4WcNcu-4vzMYZc1xsoQzR2q4geikzg&h=Q6c8WKYJ2lxfl4QxIKEQi0-4ooTvgCkpqpZ6WKFfDjc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n - \ \"name\": \"3ccadd73-35f9-48c3-be05-40d0afccb4ef\",\r\n \"status\": \"succeeded\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '260' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:48 GMT + - Tue, 27 Jun 2023 08:14:21 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4910,58 +3707,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group delete Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-17-16d74\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.2124529S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:17.5794594Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '1790' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:48 GMT + - Tue, 27 Jun 2023 08:14:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -4975,33 +3745,59 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group show + - stack sub delete Connection: - keep-alive ParameterSetName: - - -n + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-10-42-4cada\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT2M16.3273685S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-three000006/versions/v1\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-resource-two000005/versions/v1\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2023-06-27T08:09:33.3873018Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2023-06-27T08:10:42.0143877Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '252' + - '2608' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:28:48 GMT + - Tue, 27 Jun 2023 08:14:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -5017,37 +3813,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group show + - stack sub delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2022-09-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '' headers: cache-control: - no-cache content-length: - - '252' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:28:49 GMT + - Tue, 27 Jun 2023 08:14:37 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK @@ -5063,60 +3861,37 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --delete-resources - --delete-resources --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-17-16d74\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT5.2124529S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:17.5794594Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '1790' + - '199' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:28:50 GMT + - Tue, 27 Jun 2023 08:14:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", @@ -5124,8 +3899,8 @@ interactions: "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], - "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, - "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-one000004"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": false}}}' headers: @@ -5138,12 +3913,11 @@ interactions: Connection: - keep-alive Content-Length: - - '752' + - '750' Content-Type: - application/json ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --delete-resources - --delete-resources --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -5151,31 +3925,31 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": - \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n }\r\n \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:50.6269037Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:14:39.0285491Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785?api-version=2022-08-01-preview&t=2023-06-27T04%3a28%3a50&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fMae4N1B6Udx_ONH9UGXliv6tbBK5WczsKujC6Uq1wn4FES4-t4yy9EYuiAimK1P9AgnKERDsVQ_s6bD5f4ZawAR-HNmiOBSAlgMPHMIF6dYGx5jGbFifjx9HRzQXUuSNCSJphlKjw9XUm8GfPw3aogZ8oul0y4LBW4pe9E1Udr_VxHcHaO4lBHuPxf_7U6LndsZE8OdvugwC_hOj3kuJ_7ENJEA13dI4sdBMGcBs8fX5P7AnH8UKAqbmg6kmMqSClWrro5OGGBB8gAYi4v6LuL9VSmCwB0JHW0OLQ2tv3WwmmdSJpLbY_WiUlmbBAWsi5B3NfOhchrdniVvSysl1Q&h=5sWc28WVH1sxX1BGlPWYCTDtaJbfabHTw07t9UrP1Cs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c1bfed3c-77cf-4e51-b4b0-0fa51b97c340?api-version=2022-08-01-preview&t=2023-06-27T08%3a14%3a39&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PHmGhgGF5Qz-MlpJU9iyeOD3OttxApeyXHqn5cm0J9eaQX34HgjVo3dWouXgdfOzRdibeI_lTXz--vNGg3qfVjD_AAYFSDjjS5qkfjyTFq3fmoq7LfdEGZDuuzYeDN4NMQ0rPpJppwfXoD7IP5TtFywGvROutZ-Sx2q115Ip5ToNXAvNs58sQZU43x45lkFoTbjJyAUeP3GPbe7YDJkWzMMfmzBLUwA6ktWnVlCLHifz-GqVdtRAcxGRf1Ss3nrb3VjU-xqrvbBNMp52z0TGMb4vWDWLISXBUcRGX3nJMB49grGvCthhptUR4xxAhU4z3E14f7Bcqm0hBks3SkrlrQ&h=4XDxswRvdof7MhJxmJIf2IYcuMlj3MLRol_VYLA8-p4 cache-control: - no-cache content-length: - - '1226' + - '1224' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:28:50 GMT + - Tue, 27 Jun 2023 08:14:38 GMT expires: - '-1' pragma: @@ -5184,17 +3958,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -5207,16 +3977,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --delete-resources - --delete-resources --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A50&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fMae4N1B6Udx_ONH9UGXliv6tbBK5WczsKujC6Uq1wn4FES4-t4yy9EYuiAimK1P9AgnKERDsVQ_s6bD5f4ZawAR-HNmiOBSAlgMPHMIF6dYGx5jGbFifjx9HRzQXUuSNCSJphlKjw9XUm8GfPw3aogZ8oul0y4LBW4pe9E1Udr_VxHcHaO4lBHuPxf_7U6LndsZE8OdvugwC_hOj3kuJ_7ENJEA13dI4sdBMGcBs8fX5P7AnH8UKAqbmg6kmMqSClWrro5OGGBB8gAYi4v6LuL9VSmCwB0JHW0OLQ2tv3WwmmdSJpLbY_WiUlmbBAWsi5B3NfOhchrdniVvSysl1Q&h=5sWc28WVH1sxX1BGlPWYCTDtaJbfabHTw07t9UrP1Cs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c1bfed3c-77cf-4e51-b4b0-0fa51b97c340?api-version=2022-08-01-preview&t=2023-06-27T08%3A14%3A39&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PHmGhgGF5Qz-MlpJU9iyeOD3OttxApeyXHqn5cm0J9eaQX34HgjVo3dWouXgdfOzRdibeI_lTXz--vNGg3qfVjD_AAYFSDjjS5qkfjyTFq3fmoq7LfdEGZDuuzYeDN4NMQ0rPpJppwfXoD7IP5TtFywGvROutZ-Sx2q115Ip5ToNXAvNs58sQZU43x45lkFoTbjJyAUeP3GPbe7YDJkWzMMfmzBLUwA6ktWnVlCLHifz-GqVdtRAcxGRf1Ss3nrb3VjU-xqrvbBNMp52z0TGMb4vWDWLISXBUcRGX3nJMB49grGvCthhptUR4xxAhU4z3E14f7Bcqm0hBks3SkrlrQ&h=4XDxswRvdof7MhJxmJIf2IYcuMlj3MLRol_VYLA8-p4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785\",\r\n - \ \"name\": \"96099bda-205a-4c00-851f-800498f44785\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c1bfed3c-77cf-4e51-b4b0-0fa51b97c340\",\r\n + \ \"name\": \"c1bfed3c-77cf-4e51-b4b0-0fa51b97c340\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5225,7 +3994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:28:50 GMT + - Tue, 27 Jun 2023 08:14:38 GMT expires: - '-1' pragma: @@ -5255,16 +4024,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --delete-resources - --delete-resources --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785?api-version=2022-08-01-preview&t=2023-06-27T04%3A28%3A50&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=fMae4N1B6Udx_ONH9UGXliv6tbBK5WczsKujC6Uq1wn4FES4-t4yy9EYuiAimK1P9AgnKERDsVQ_s6bD5f4ZawAR-HNmiOBSAlgMPHMIF6dYGx5jGbFifjx9HRzQXUuSNCSJphlKjw9XUm8GfPw3aogZ8oul0y4LBW4pe9E1Udr_VxHcHaO4lBHuPxf_7U6LndsZE8OdvugwC_hOj3kuJ_7ENJEA13dI4sdBMGcBs8fX5P7AnH8UKAqbmg6kmMqSClWrro5OGGBB8gAYi4v6LuL9VSmCwB0JHW0OLQ2tv3WwmmdSJpLbY_WiUlmbBAWsi5B3NfOhchrdniVvSysl1Q&h=5sWc28WVH1sxX1BGlPWYCTDtaJbfabHTw07t9UrP1Cs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c1bfed3c-77cf-4e51-b4b0-0fa51b97c340?api-version=2022-08-01-preview&t=2023-06-27T08%3A14%3A39&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PHmGhgGF5Qz-MlpJU9iyeOD3OttxApeyXHqn5cm0J9eaQX34HgjVo3dWouXgdfOzRdibeI_lTXz--vNGg3qfVjD_AAYFSDjjS5qkfjyTFq3fmoq7LfdEGZDuuzYeDN4NMQ0rPpJppwfXoD7IP5TtFywGvROutZ-Sx2q115Ip5ToNXAvNs58sQZU43x45lkFoTbjJyAUeP3GPbe7YDJkWzMMfmzBLUwA6ktWnVlCLHifz-GqVdtRAcxGRf1Ss3nrb3VjU-xqrvbBNMp52z0TGMb4vWDWLISXBUcRGX3nJMB49grGvCthhptUR4xxAhU4z3E14f7Bcqm0hBks3SkrlrQ&h=4XDxswRvdof7MhJxmJIf2IYcuMlj3MLRol_VYLA8-p4 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/96099bda-205a-4c00-851f-800498f44785\",\r\n - \ \"name\": \"96099bda-205a-4c00-851f-800498f44785\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/c1bfed3c-77cf-4e51-b4b0-0fa51b97c340\",\r\n + \ \"name\": \"c1bfed3c-77cf-4e51-b4b0-0fa51b97c340\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5273,7 +4041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:20 GMT + - Tue, 27 Jun 2023 08:15:09 GMT expires: - '-1' pragma: @@ -5303,8 +4071,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --template-file --parameters --deny-settings-mode --delete-resources - --delete-resources --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -5312,34 +4079,33 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-50-73031\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-14-39-7fec5\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.724522S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.4721793S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n - \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": - []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:50.6269037Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:14:39.0285491Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1793' + - '1654' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:21 GMT + - Tue, 27 Jun 2023 08:15:09 GMT expires: - '-1' pragma: @@ -5365,33 +4131,55 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group show + - stack sub create Connection: - keep-alive ParameterSetName: - - -n + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-14-39-7fec5\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT6.4721793S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:14:39.0285491Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '252' + - '1654' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:21 GMT + - Tue, 27 Jun 2023 08:15:10 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -5400,40 +4188,122 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-two000005"}}, + "actionOnUnmanage": {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group show + - stack sub create Connection: - keep-alive + Content-Length: + - '750' + Content-Type: + - application/json ParameterSetName: - - -n + - --name --location --template-file --parameters --deny-settings-mode --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-two000005\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:15:11.0827971Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356?api-version=2022-08-01-preview&t=2023-06-27T08%3a15%3a11&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=iriO-GqV4sgZ2C9ioP2B4HAke4rtawe6ASmYmp9gzLYoZHJyXK0Dek5vebVVQp1FRbM6Cq5uNx4ju5cKvx17Ct7QtfYkgQbA08QJ72dTGbUfyKEr6Ua1797qNVSg427uRMq60EMCuwc8rzQNs8Q0p6Yc7ZSCzfena2IZ5SWYY3cz0flhgzWJs8-7uaf5NI3i6DR0t-S1FM8CqPCv9l7aLM-6nv7rirPwthjzBkmp8qvzagRrzUVnoqeLLQhZ4Pl0MTU2BnxRfth3cJZ_135DFBfsty5rbnB68tA2zIIXAmiV1LX-R7GHVfP1uuY_LNxIz6rGWBAyrWR6nYScS3oxSg&h=_6vRu0LAY_oDC4koqeXENBFG2MfwudMYR2zdBpWoV4s + cache-control: + - no-cache + content-length: + - '1224' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 08:15:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356?api-version=2022-08-01-preview&t=2023-06-27T08%3A15%3A11&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=iriO-GqV4sgZ2C9ioP2B4HAke4rtawe6ASmYmp9gzLYoZHJyXK0Dek5vebVVQp1FRbM6Cq5uNx4ju5cKvx17Ct7QtfYkgQbA08QJ72dTGbUfyKEr6Ua1797qNVSg427uRMq60EMCuwc8rzQNs8Q0p6Yc7ZSCzfena2IZ5SWYY3cz0flhgzWJs8-7uaf5NI3i6DR0t-S1FM8CqPCv9l7aLM-6nv7rirPwthjzBkmp8qvzagRrzUVnoqeLLQhZ4Pl0MTU2BnxRfth3cJZ_135DFBfsty5rbnB68tA2zIIXAmiV1LX-R7GHVfP1uuY_LNxIz6rGWBAyrWR6nYScS3oxSg&h=_6vRu0LAY_oDC4koqeXENBFG2MfwudMYR2zdBpWoV4s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356\",\r\n + \ \"name\": \"2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '256' + - '263' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:22 GMT + - Tue, 27 Jun 2023 08:15:11 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -5445,43 +4315,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack sub create Connection: - keep-alive + ParameterSetName: + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356?api-version=2022-08-01-preview&t=2023-06-27T08%3A15%3A11&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=iriO-GqV4sgZ2C9ioP2B4HAke4rtawe6ASmYmp9gzLYoZHJyXK0Dek5vebVVQp1FRbM6Cq5uNx4ju5cKvx17Ct7QtfYkgQbA08QJ72dTGbUfyKEr6Ua1797qNVSg427uRMq60EMCuwc8rzQNs8Q0p6Yc7ZSCzfena2IZ5SWYY3cz0flhgzWJs8-7uaf5NI3i6DR0t-S1FM8CqPCv9l7aLM-6nv7rirPwthjzBkmp8qvzagRrzUVnoqeLLQhZ4Pl0MTU2BnxRfth3cJZ_135DFBfsty5rbnB68tA2zIIXAmiV1LX-R7GHVfP1uuY_LNxIz6rGWBAyrWR6nYScS3oxSg&h=_6vRu0LAY_oDC4koqeXENBFG2MfwudMYR2zdBpWoV4s response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage - Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2023-05-22T22:02:46.9870949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-20T04:10:15.1676505Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: - /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: - /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: - /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure - Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my - key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f - oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core - (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T04:20:06.6541016Z","changedTime":"2023-06-27T04:20:08.1408673Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:20:07.8127462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:20:07.8127462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T04:20:09.1846485Z","changedTime":"2023-06-27T04:20:09.8127144Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T04:20:09.5627143Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T04:20:09.5627143Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-27T04:22:02.6855612Z","changedTime":"2023-06-27T04:22:03.1865234Z","provisioningState":"Succeeded"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356\",\r\n + \ \"name\": \"2cf9a9b4-bdf0-4e78-90e8-56ad5fd25356\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '149223' + - '260' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:22 GMT + - Tue, 27 Jun 2023 08:15:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -5493,15 +4362,15 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive ParameterSetName: - - --name --yes + - --name --location --template-file --parameters --deny-settings-mode --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -5509,34 +4378,34 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-28-50-73031\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-15-11-c343e\",\r\n \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n - \ \"duration\": \"PT6.724522S\",\r\n \"denySettings\": {\r\n \"mode\": + \ \"duration\": \"PT6.3800702S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:27:44.6626038Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:28:50.6269037Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:15:11.0827971Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '1793' + - '1790' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:23 GMT + - Tue, 27 Jun 2023 08:15:41 GMT expires: - '-1' pragma: @@ -5562,88 +4431,82 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - group show Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes + - -n User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '0' + - '252' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:24 GMT + - Tue, 27 Jun 2023 08:15:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - group show Connection: - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json ParameterSetName: - - --location --name + - -n User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-two000005?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '288' + - '252' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:26 GMT + - Tue, 27 Jun 2023 08:15:42 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -5656,58 +4519,71 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-15-11-c343e\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT6.3800702S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-two000005\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:15:11.0827971Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '199' + - '1790' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:26 GMT + - Tue, 27 Jun 2023 08:15:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": - {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", - "apiVersion": "2022-02-01", "name": "[parameters(''tsname'')]", "location": - "[resourceGroup().location]"}, {"type": "Microsoft.Resources/deployments", "apiVersion": - "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", - "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": - {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": - "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": - {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", - "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": - "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}, - "tsname": {"value": "cli-test-template-spec000003"}}, "actionOnUnmanage": {"resources": - "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", - "denySettings": {"applyToChildScopes": false}}}' + "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"rgLocation": {"type": "string", + "defaultValue": "WestUS2"}, "name": {"type": "string"}}, "variables": {}, "resources": + [{"type": "Microsoft.Resources/resourceGroups", "apiVersion": "2018-05-01", + "location": "[parameters(''rgLocation'')]", "name": "[parameters(''name'')]"}], + "outputs": {}}, "parameters": {"name": {"value": "cli-test-resource-three000006"}}, + "actionOnUnmanage": {"resources": "delete", "resourceGroups": "detach"}, "deploymentScope": + "/subscriptions/00000000-0000-0000-0000-000000000000", "denySettings": {"applyToChildScopes": + false}}}' headers: Accept: - application/json @@ -5718,12 +4594,12 @@ interactions: Connection: - keep-alive Content-Length: - - '1734' + - '752' Content-Type: - application/json ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: PUT @@ -5731,33 +4607,31 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": - \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n },\r\n - \ \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n - \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n \"denySettings\": + {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false\r\n + \ },\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": + \"cli-test-resource-three000006\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n + \ \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:29:27.3793176Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:15:43.0349175Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529?api-version=2022-08-01-preview&t=2023-06-27T04%3a29%3a28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cYJkoymtlCedPYQGiseqovU9k5y16Z7MsHEosvBdXm74s8CDGCMO-79Mf3VWe8FnrIKlFWfaRj5D0GbiMMzF84WTwkDRA4GWEppO3W7dtE2HYetZCmF0qYq8ieKwOidmrHlSpsBs9A2FPNRIJldx7TG9mJlMXub5rMFEl0P2t81ncUqLz45-FFqGGIrR3iphLjX32kBW5GRimclcpl6JOt7ZRpvwwJLGRcRCnGtD2JraUud9nsjgVJQnxIvuPjVVYYDiffqVF_V6R9HnWwLvH-Gl-sS9g9C7zJlItUhr4PX9ar4-aAOGv07apV21zBZkmt131GZ2yQpjPZgW9NXxig&h=0sfkP4vemia5bTp-FPAtMXxQHfEIBgLqcIsaRveKY1o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9bce195-d5f5-4c17-90f6-8b395a279350?api-version=2022-08-01-preview&t=2023-06-27T08%3a15%3a43&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBWIwlNt6VP-yaLgP3_4gOgESPnMKQTFEGEhD-iuesxs-3JFkK5GEiffHD3SRmJBe2yyBL5QvFQCMh83_XTV81Ki6hK4I3iBEnWUPspGqMiIMPURhXcx9Gccif1TO7L9d0TPrt_e6jsXvwDcXmaqMJ4JL2WXmctVVrdnKh26fdny2oloEpWRI3E6d7JsXPULdlzRPb9J8AuSHr6FKKd1k4G4-E7HbXHJco4AWJuinNKnYf4YRAp2m_3J0C7YFQejkAQKysOjAuJJ6hnsfNved3v1fQyvseH11b0iX_7L57jHo4beE3qAZKqHgTqorLvzfDYmnzLHgftT-mjfVDEntg&h=o-whtIi-6AkVsG2lKDAMca1tElGqF1cMtjfiHbmobAc cache-control: - no-cache content-length: - - '1392' + - '1226' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:27 GMT + - Tue, 27 Jun 2023 08:15:43 GMT expires: - '-1' pragma: @@ -5766,13 +4640,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -5785,16 +4663,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529?api-version=2022-08-01-preview&t=2023-06-27T04%3A29%3A28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cYJkoymtlCedPYQGiseqovU9k5y16Z7MsHEosvBdXm74s8CDGCMO-79Mf3VWe8FnrIKlFWfaRj5D0GbiMMzF84WTwkDRA4GWEppO3W7dtE2HYetZCmF0qYq8ieKwOidmrHlSpsBs9A2FPNRIJldx7TG9mJlMXub5rMFEl0P2t81ncUqLz45-FFqGGIrR3iphLjX32kBW5GRimclcpl6JOt7ZRpvwwJLGRcRCnGtD2JraUud9nsjgVJQnxIvuPjVVYYDiffqVF_V6R9HnWwLvH-Gl-sS9g9C7zJlItUhr4PX9ar4-aAOGv07apV21zBZkmt131GZ2yQpjPZgW9NXxig&h=0sfkP4vemia5bTp-FPAtMXxQHfEIBgLqcIsaRveKY1o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9bce195-d5f5-4c17-90f6-8b395a279350?api-version=2022-08-01-preview&t=2023-06-27T08%3A15%3A43&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBWIwlNt6VP-yaLgP3_4gOgESPnMKQTFEGEhD-iuesxs-3JFkK5GEiffHD3SRmJBe2yyBL5QvFQCMh83_XTV81Ki6hK4I3iBEnWUPspGqMiIMPURhXcx9Gccif1TO7L9d0TPrt_e6jsXvwDcXmaqMJ4JL2WXmctVVrdnKh26fdny2oloEpWRI3E6d7JsXPULdlzRPb9J8AuSHr6FKKd1k4G4-E7HbXHJco4AWJuinNKnYf4YRAp2m_3J0C7YFQejkAQKysOjAuJJ6hnsfNved3v1fQyvseH11b0iX_7L57jHo4beE3qAZKqHgTqorLvzfDYmnzLHgftT-mjfVDEntg&h=o-whtIi-6AkVsG2lKDAMca1tElGqF1cMtjfiHbmobAc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n - \ \"name\": \"b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9bce195-d5f5-4c17-90f6-8b395a279350\",\r\n + \ \"name\": \"d9bce195-d5f5-4c17-90f6-8b395a279350\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache @@ -5803,7 +4681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:27 GMT + - Tue, 27 Jun 2023 08:15:43 GMT expires: - '-1' pragma: @@ -5833,16 +4711,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529?api-version=2022-08-01-preview&t=2023-06-27T04%3A29%3A28&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=cYJkoymtlCedPYQGiseqovU9k5y16Z7MsHEosvBdXm74s8CDGCMO-79Mf3VWe8FnrIKlFWfaRj5D0GbiMMzF84WTwkDRA4GWEppO3W7dtE2HYetZCmF0qYq8ieKwOidmrHlSpsBs9A2FPNRIJldx7TG9mJlMXub5rMFEl0P2t81ncUqLz45-FFqGGIrR3iphLjX32kBW5GRimclcpl6JOt7ZRpvwwJLGRcRCnGtD2JraUud9nsjgVJQnxIvuPjVVYYDiffqVF_V6R9HnWwLvH-Gl-sS9g9C7zJlItUhr4PX9ar4-aAOGv07apV21zBZkmt131GZ2yQpjPZgW9NXxig&h=0sfkP4vemia5bTp-FPAtMXxQHfEIBgLqcIsaRveKY1o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9bce195-d5f5-4c17-90f6-8b395a279350?api-version=2022-08-01-preview&t=2023-06-27T08%3A15%3A43&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=PBWIwlNt6VP-yaLgP3_4gOgESPnMKQTFEGEhD-iuesxs-3JFkK5GEiffHD3SRmJBe2yyBL5QvFQCMh83_XTV81Ki6hK4I3iBEnWUPspGqMiIMPURhXcx9Gccif1TO7L9d0TPrt_e6jsXvwDcXmaqMJ4JL2WXmctVVrdnKh26fdny2oloEpWRI3E6d7JsXPULdlzRPb9J8AuSHr6FKKd1k4G4-E7HbXHJco4AWJuinNKnYf4YRAp2m_3J0C7YFQejkAQKysOjAuJJ6hnsfNved3v1fQyvseH11b0iX_7L57jHo4beE3qAZKqHgTqorLvzfDYmnzLHgftT-mjfVDEntg&h=o-whtIi-6AkVsG2lKDAMca1tElGqF1cMtjfiHbmobAc response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n - \ \"name\": \"b02fb48a-b4be-499e-9cfd-d38c8eb40529\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/d9bce195-d5f5-4c17-90f6-8b395a279350\",\r\n + \ \"name\": \"d9bce195-d5f5-4c17-90f6-8b395a279350\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache @@ -5851,7 +4729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:58 GMT + - Tue, 27 Jun 2023 08:16:13 GMT expires: - '-1' pragma: @@ -5881,8 +4759,8 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --parameters --yes + - --name --location --template-file --parameters --deny-settings-mode --delete-resources + --delete-resources --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET @@ -5890,36 +4768,34 @@ interactions: response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-29-27-6e74c\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT20.059694S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": - \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n - \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-15-43-17d5e\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT5.5069242S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:29:27.3793176Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:15:43.0349175Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '2146' + - '1794' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:29:58 GMT + - Tue, 27 Jun 2023 08:16:13 GMT expires: - '-1' pragma: @@ -5945,176 +4821,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource show - Connection: - - keep-alive - ParameterSetName: - - -n -g --resource-type - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East - Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada - Central","Canada East","Switzerland North","Germany West Central","East US - 2","East US","Central US","North Central US","France Central","UK South","UK - West","Central India","South India","Jio India West","Japan East","Japan West","Korea - Central","North Europe","Norway East","Sweden Central","UAE North","West Central - US","West Europe","West US 2","West US","South Central US","West US 3","South - Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Germany West Central","East US 2","East US","Central US","North Central - US","France Central","UK South","UK West","Central India","West India","Jio - India West","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","Poland Central","Qatar Central","Sweden - Central","UAE North","West Central US","West Europe","West US 2","West US","West - US 3","South Central US","South Africa North","Central US EUAP","East US 2 - EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East - US","East US 2","East US STG","West Central US","West US","West US 2","West - US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central - US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West - Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central - US","East Asia","Southeast Asia","East US","East US 2","West US","West US - 2","North Central US","South Central US","West Central US","North Europe","West - Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia - East","West India","South India","Central India","Canada Central","Canada - East","UK South","UK West","Korea Central","Korea South","France Central","South - Africa North","UAE North","Australia Central","Switzerland North","Germany - West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden - Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East - Asia","Southeast Asia","Australia East","Australia Central","Australia Central - 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","Jio India West","South India","Italy North","Japan East","Japan - West","Korea Central","Korea South","Malaysia South","North Europe","Norway - East","Poland Central","Qatar Central","Sweden Central","UAE North","West - Central US","West Europe","West US 2","West US","West US 3","South Central - US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' - headers: - cache-control: - - no-cache - content-length: - - '21180' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 27 Jun 2023 04:30:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource show + - group show Connection: - keep-alive ParameterSetName: - - -n -g --resource-type + - -n User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:29.3892657Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T04:29:29.3892657Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n - \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '630' + - '252' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:30:01 GMT + - Tue, 27 Jun 2023 08:16:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -6138,19 +4871,19 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-three000006?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '252' + - '256' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:30:01 GMT + - Tue, 27 Jun 2023 08:16:13 GMT expires: - '-1' pragma: @@ -6172,59 +4905,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource list Connection: - keep-alive - ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": - \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-29-27-6e74c\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT20.059694S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n - \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": - \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n - \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n - \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": - \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:29:27.3793176Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia","name":"NetworkWatcher_southeastasia","type":"Microsoft.Network/networkWatchers","location":"southeastasia","createdTime":"2021-06-24T03:45:47.1387649Z","changedTime":"2021-06-24T03:55:52.2585136Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount","name":"ToyCosmosDBAccount","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T18:45:09.6630539Z","changedTime":"2021-11-11T18:55:22.2885328Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:13.0646834Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount/versions/1.0","name":"ToyCosmosDBAccount/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T18:45:16.2713055Z","changedTime":"2021-11-11T18:55:23.1933682Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T18:45:17.5897066Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T18:45:17.5897066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2","name":"ToyCosmosDBAccount2","type":"Microsoft.Resources/templateSpecs","location":"australiaeast","createdTime":"2021-11-11T19:47:27.9302075Z","changedTime":"2021-11-11T19:57:35.252853Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:31.9598257Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/ToyCosmosDBAccount2/versions/1.0","name":"ToyCosmosDBAccount2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"australiaeast","createdTime":"2021-11-11T19:47:36.705526Z","changedTime":"2021-11-11T19:57:44.0522255Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:47:38.380135Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:47:38.380135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL","name":"CreateATSInDiffLocalThanRGPWRSHELL","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-11-11T19:58:04.5771684Z","changedTime":"2021-11-11T20:08:12.4911622Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:08.3275346Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5/providers/Microsoft.Resources/templateSpecs/CreateATSInDiffLocalThanRGPWRSHELL/versions/1.0","name":"CreateATSInDiffLocalThanRGPWRSHELL/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2021-11-11T19:58:12.2383538Z","changedTime":"2021-11-11T20:08:22.6212377Z","provisioningState":"Succeeded","systemData":{"createdBy":"daetienn@microsoft.com","createdByType":"User","createdAt":"2021-11-11T19:58:13.7834219Z","lastModifiedBy":"daetienn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-11T19:58:13.7834219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus","name":"NetworkWatcher_westus","type":"Microsoft.Network/networkWatchers","location":"westus","createdTime":"2021-06-14T07:34:16.3134386Z","changedTime":"2021-06-14T07:44:18.8282665Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus","name":"NetworkWatcher_southcentralus","type":"Microsoft.Network/networkWatchers","location":"southcentralus","createdTime":"2021-06-14T08:51:54.7978999Z","changedTime":"2021-06-14T09:01:56.1826225Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2","name":"NetworkWatcher_westus2","type":"Microsoft.Network/networkWatchers","location":"westus2","createdTime":"2021-06-22T07:05:18.0737582Z","changedTime":"2021-06-22T07:15:19.180944Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus","name":"NetworkWatcher_eastus","type":"Microsoft.Network/networkWatchers","location":"eastus","createdTime":"2021-06-22T12:34:25.4550773Z","changedTime":"2021-06-22T12:44:27.9381724Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2","name":"NetworkWatcher_eastus2","type":"Microsoft.Network/networkWatchers","location":"eastus2","createdTime":"2021-06-28T14:41:11.1076388Z","changedTime":"2021-06-28T14:51:12.7268575Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123","name":"armbuilddemo18123","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-05T21:33:27.594943Z","changedTime":"2023-04-06T16:12:52.1114216Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18122","name":"armbuilddemo18122","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2021-08-10T21:28:01.3450968Z","changedTime":"2022-04-25T19:01:32.1755949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-4459","name":"TS-SDKTest-4459","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:13:34.3990458Z","changedTime":"2021-08-25T21:23:35.6327473Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:13:34.9633075Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:13:34.9633075Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-7122","name":"TS-SDKTest-7122","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T21:22:38.2693831Z","changedTime":"2021-08-25T21:32:39.7202325Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T21:22:38.7893545Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T21:22:38.7893545Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2921","name":"TS-SDKTest-2921","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:17:12.8682076Z","changedTime":"2021-08-25T22:27:13.9545247Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:17:13.1992369Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:17:13.1992369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG/providers/Microsoft.Resources/templateSpecs/TS-SDKTest-2563","name":"TS-SDKTest-2563","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2021-08-25T22:24:27.3766026Z","changedTime":"2021-08-25T22:34:27.9251606Z","provisioningState":"Succeeded","systemData":{"createdBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","createdByType":"Application","createdAt":"2021-08-25T22:24:27.6930982Z","lastModifiedBy":"0c6b3936-e85b-4734-8d4b-a76010c2c69c","lastModifiedByType":"Application","lastModifiedAt":"2021-08-25T22:24:27.6930982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-13T19:11:12.0915224Z","changedTime":"2021-08-13T19:21:14.9827484Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:12.917304Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-13T19:11:14.3019956Z","changedTime":"2021-08-13T19:21:17.7800584Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-13T19:11:14.6473424Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-13T19:11:14.6473424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-09-08T19:42:24.5985439Z","changedTime":"2021-11-09T18:06:47.5091521Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Web/serverFarms/xDeploymentTestHost2555","name":"xDeploymentTestHost2555","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus","createdTime":"2021-09-13T21:27:51.2725634Z","changedTime":"2021-10-22T01:03:33.2873868Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320013aac4112","name":"cs7100320013aac4112","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"southcentralus","createdTime":"2021-07-08T16:48:07.8863773Z","changedTime":"2021-07-08T16:58:29.0675243Z","provisioningState":"Succeeded","tags":{"ms-resource-usage":"azure-cloud-shell"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS","name":"testTS","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2021-06-15T17:11:12.8097622Z","changedTime":"2021-06-15T17:21:16.4350366Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T17:11:13.8332151Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T17:11:13.8332151Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/testTS/versions/1","name":"testTS/1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2021-06-15T19:51:37.1112238Z","changedTime":"2021-06-15T20:01:41.6082225Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-06-15T19:51:38.1413599Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T19:51:38.1413599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap","name":"NetworkWatcher_eastus2euap","type":"Microsoft.Network/networkWatchers","location":"eastus2euap","createdTime":"2021-09-30T22:00:33.4115951Z","changedTime":"2021-09-30T22:10:35.9288078Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus","name":"NetworkWatcher_westcentralus","type":"Microsoft.Network/networkWatchers","location":"westcentralus","createdTime":"2021-10-01T00:15:12.5412227Z","changedTime":"2021-10-01T00:25:13.0604092Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg/providers/Microsoft.Web/serverFarms/mysite","name":"mysite","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","createdTime":"2021-11-02T15:02:49.3245166Z","changedTime":"2021-11-03T19:26:12.2237445Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS","name":"gopremra-stackTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2021-08-04T23:10:30.8793293Z","changedTime":"2021-08-04T23:20:33.0675955Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:34.5434501Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/gopremra-stackTS/versions/v1","name":"gopremra-stackTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2021-08-04T23:10:35.5887857Z","changedTime":"2021-08-04T23:20:36.9467474Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-04T23:10:35.9085007Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-04T23:10:35.9085007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS","name":"reproTS","type":"Microsoft.Resources/templateSpecs","location":"centralus","createdTime":"2021-08-17T17:21:27.2825091Z","changedTime":"2021-08-17T17:31:28.1659756Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:27.7951675Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v1","name":"reproTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T17:21:28.7090574Z","changedTime":"2021-08-17T17:31:30.9698039Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T17:21:28.9451772Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T17:21:28.9451772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/reproTS/versions/v2","name":"reproTS/v2","type":"Microsoft.Resources/templateSpecs/versions","location":"centralus","createdTime":"2021-08-17T18:17:17.0974112Z","changedTime":"2021-08-17T18:27:19.6405665Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2021-08-17T18:17:17.5958584Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-17T18:17:17.5958584Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco","name":"stgo5aa2ops2gxco","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.338587Z","changedTime":"2021-09-22T22:00:57.5339196Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/stgo5aa2ops2gxco2","name":"stgo5aa2ops2gxco2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westeurope","createdTime":"2021-09-22T21:27:32.3578719Z","changedTime":"2021-09-22T22:00:57.1033148Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts","name":"harsh_ts","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-09T23:11:52.7931228Z","changedTime":"2021-09-09T23:21:53.8465568Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:54.0451106Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts/versions/1.0a","name":"harsh_ts/1.0a","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-09T23:11:55.740747Z","changedTime":"2021-09-09T23:21:58.2486591Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-09T23:11:56.2201235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-09T23:11:56.2201235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2","name":"harsh_ts_sub2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:35:01.4877467Z","changedTime":"2021-09-10T22:45:04.3573598Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:02.4516189Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub2/versions/1.0","name":"harsh_ts_sub2/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:35:03.933579Z","changedTime":"2021-09-10T22:45:07.1107538Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:35:04.3916271Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:35:04.3916271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3","name":"harsh_ts_sub3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-10T22:39:43.8627206Z","changedTime":"2021-09-10T22:49:45.2919813Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:45.1034684Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub3/versions/v1","name":"harsh_ts_sub3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-10T22:39:46.4847247Z","changedTime":"2021-09-10T22:49:47.9644666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-10T22:39:46.9485369Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-10T22:39:46.9485369Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpstorageaccount1000","name":"hpstorageaccount1000","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-11T00:21:23.4555257Z","changedTime":"2021-09-11T00:31:46.8251406Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/harshpatelstateful","name":"harshpatelstateful","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-09-13T15:32:39.5349269Z","changedTime":"2021-09-13T15:42:41.3882281Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/harshpatel","name":"harshpatel","type":"Microsoft.Web/serverFarms","sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0},"kind":"app","location":"eastus","createdTime":"2021-09-13T16:12:51.8664928Z","changedTime":"2021-10-22T01:02:15.0098005Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4","name":"harsh_ts_sub4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:35:04.993579Z","changedTime":"2021-09-13T17:45:08.0287812Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:06.0995694Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sub4/versions/v1","name":"harsh_ts_sub4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:35:07.1761911Z","changedTime":"2021-09-13T17:45:08.0337783Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:35:07.5946269Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:35:07.5946269Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template","name":"harsh_ts_simple_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:41:18.6065351Z","changedTime":"2021-09-13T17:51:21.0523135Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:19.8244924Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_simple_template/versions/v1","name":"harsh_ts_simple_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:41:21.4680765Z","changedTime":"2021-09-13T17:51:23.5846786Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:41:21.914523Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:41:21.914523Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template","name":"harsh_ts_sample_template","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2021-09-13T17:43:44.2616963Z","changedTime":"2021-09-13T17:53:47.1653191Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:45.4543203Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/harsh_ts_sample_template/versions/v1","name":"harsh_ts_sample_template/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2021-09-13T17:43:46.9266328Z","changedTime":"2021-09-13T17:53:48.9322376Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2021-09-13T17:43:47.4093777Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-13T17:45:29.0541718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/publicIPAddresses/stacksTest1-ip","name":"stacksTest1-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:09.7370546Z","changedTime":"2021-09-13T19:48:14.2996299Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/virtualNetworks/filiz-test-rg-vnet","name":"filiz-test-rg-vnet","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2021-09-13T19:38:09.7424188Z","changedTime":"2021-09-13T19:48:14.1286559Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkSecurityGroups/stacksTest1-nsg","name":"stacksTest1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2021-09-13T19:38:09.7415395Z","changedTime":"2021-09-13T19:48:11.6437858Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Network/networkInterfaces/stackstest1646","name":"stackstest1646","type":"Microsoft.Network/networkInterfaces","location":"westus2","createdTime":"2021-09-13T19:38:13.560235Z","changedTime":"2021-09-13T19:48:14.2970364Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FILIZ-TEST-RG/providers/Microsoft.Compute/disks/stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","name":"stacksTest1_disk1_7465da55f6784edcbfada4440b546f0f","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Compute/virtualMachines/stacksTest1","location":"westus2","zones":["1"],"createdTime":"2021-09-13T19:38:15.0827925Z","changedTime":"2021-09-13T19:48:15.8263856Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg/providers/Microsoft.Storage/storageAccounts/stackstestaccount","name":"stackstestaccount","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2021-09-13T19:40:43.6365805Z","changedTime":"2021-09-13T19:51:06.1794753Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Network/virtualNetworks/VNet1","name":"VNet1","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","createdTime":"2021-09-30T23:00:39.2498469Z","changedTime":"2021-10-08T21:07:38.0580012Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/yxlz3mqqwqtjostorage","name":"yxlz3mqqwqtjostorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-09-30T23:36:33.7018819Z","changedTime":"2021-09-30T23:47:01.489011Z","provisioningState":"Succeeded","tags":{"displayName":"Storage + Account"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary/providers/Microsoft.Storage/storageAccounts/preyyf2apjr4e3ku","name":"preyyf2apjr4e3ku","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-07T15:56:21.723312Z","changedTime":"2021-10-07T16:06:42.4006119Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2021-10-07T17:11:17.6662552Z","changedTime":"2021-11-11T21:51:39.6133613Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Storage/storageAccounts/detachpresamergasds","name":"detachpresamergasds","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2euap","createdTime":"2021-10-08T18:08:57.5388298Z","changedTime":"2021-10-08T18:19:18.3346095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary/providers/Microsoft.Compute/disks/DeploymentStacks_ImplicitResourceTestPROD","name":"DeploymentStacks_ImplicitResourceTestPROD","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"location":"centralus","zones":["1"],"createdTime":"2021-10-08T18:24:53.482933Z","changedTime":"2021-10-08T18:55:58.8250177Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2021-11-01T16:30:15.4576735Z","changedTime":"2021-11-01T16:40:16.9233565Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg/providers/Microsoft.PowerPlatform/accounts/shenglol-test-account","name":"shenglol-test-account","type":"Microsoft.PowerPlatform/accounts","location":"unitedstates","createdTime":"2022-06-16T17:39:11.2331584Z","changedTime":"2022-06-16T17:49:13.8302524Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2022-06-16T17:39:11.7185142Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T17:39:11.7185142Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo1","name":"tarunl3l2e5l2qburo1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2832845Z","changedTime":"2022-02-09T19:49:50.4134967Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo3","name":"tarunl3l2e5l2qburo3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.2956555Z","changedTime":"2022-02-09T19:49:51.9031424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo0","name":"tarunl3l2e5l2qburo0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.3153314Z","changedTime":"2022-02-09T19:49:50.8536761Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunl3l2e5l2qburo2","name":"tarunl3l2e5l2qburo2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:39:31.4011326Z","changedTime":"2022-02-09T19:49:53.2292458Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em1","name":"tarunba7kviakey4em1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4148149Z","changedTime":"2022-02-09T19:54:07.638229Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun/providers/Microsoft.Storage/storageAccounts/tarunba7kviakey4em0","name":"tarunba7kviakey4em0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","createdTime":"2022-02-09T19:43:48.4224381Z","changedTime":"2022-02-09T19:54:07.9150709Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/nestedouter001","name":"nestedouter001","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-04-12T19:05:17.5448542Z","changedTime":"2022-04-12T19:15:39.7357294Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stprimary2021","name":"stprimary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:21.1706944Z","changedTime":"2022-05-27T18:31:34.9853017Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2/providers/Microsoft.Storage/storageAccounts/stsecondary2021","name":"stsecondary2021","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus2","createdTime":"2022-04-12T20:47:23.4697605Z","changedTime":"2022-04-12T21:00:20.5540097Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2022-11-15T17:56:55.1399922Z","changedTime":"2022-11-15T18:06:56.8034314Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:55.493185Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6/providers/Microsoft.Resources/templateSpecs/StacksSpeciyrmpdcyfhgl6/versions/StacksVersioniyrmpdcyfhgl6","name":"StacksSpeciyrmpdcyfhgl6/StacksVersioniyrmpdcyfhgl6","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2022-11-15T17:56:57.5043976Z","changedTime":"2022-11-15T18:06:58.8062828Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2022-11-15T17:56:57.8540364Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-15T18:00:33.0455104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-22T17:39:16.7207749Z","changedTime":"2022-04-22T17:39:33.4299357Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26669","name":"xDeploymentTestHost26669","type":"Microsoft.Web/serverFarms","kind":"app","location":"eastus","createdTime":"2022-04-25T16:28:29.2008415Z","changedTime":"2022-04-25T16:33:51.0774573Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-04-27T17:13:26.5321655Z","changedTime":"2022-04-27T17:24:30.6928817Z","provisioningState":"Succeeded","tags":{},"systemData":{"lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3/providers/Microsoft.Resources/templateSpecs/cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/versions/v1","name":"cli-test-template-specvew4h2xha4kfmuaj6tzyd7jhw5vocyodougdqi/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-04-27T17:14:31.1817343Z","changedTime":"2022-04-27T17:43:19.948127Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:14:31.6610991Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:14:31.6610991Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/deploymentscopetest","name":"deploymentscopetest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-06T16:11:34.4400836Z","changedTime":"2023-05-22T22:02:46.9870949Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3/providers/Microsoft.Storage/storageAccounts/harshsa2","name":"harshsa2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-05-05T15:45:08.994685Z","changedTime":"2022-05-05T15:55:29.7079006Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","name":"DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS","type":"Microsoft.OperationalInsights/workspaces","location":"eastus","createdTime":"2022-05-19T18:08:23.9874989Z","changedTime":"2022-05-19T18:18:25.3802888Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","type":"Microsoft.OperationsManagement/solutions","location":"eastus","plan":{"name":"ContainerInsights(DefaultWorkspace-a1bfa635-f2bf-42f1-86b5-848c674fc321-EUS)","promotionCode":"","product":"OMSGallery/ContainerInsights","publisher":"Microsoft"},"createdTime":"2022-05-19T18:09:21.7341359Z","changedTime":"2022-05-19T18:19:22.3686778Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa11","name":"hpsa11","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:14:16.208723Z","changedTime":"2023-04-20T04:10:15.1676505Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa13","name":"hpsa13","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3540337Z","changedTime":"2022-11-07T23:33:45.4623611Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa12","name":"hpsa12","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-06-23T17:18:44.3609318Z","changedTime":"2022-11-07T23:26:10.1185188Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec","name":"sqlserverSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-07-31T00:41:34.9385796Z","changedTime":"2022-07-31T00:51:35.9274536Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:35.3724571Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn/providers/Microsoft.Resources/templateSpecs/sqlserverSpec/versions/1.0","name":"sqlserverSpec/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-07-31T00:41:36.1141328Z","changedTime":"2022-07-31T00:51:37.5930656Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-07-31T00:41:36.2481267Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-31T00:41:36.2481267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storageb","name":"danted1234storageb","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3069471Z","changedTime":"2022-09-07T18:43:52.8411223Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1/providers/Microsoft.Storage/storageAccounts/danted1234storagea","name":"danted1234storagea","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-09-07T18:33:32.3422163Z","changedTime":"2022-09-07T18:43:52.0622413Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636/providers/Microsoft.Storage/storageAccounts/bezstorage007","name":"bezstorage007","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","createdTime":"2022-10-17T18:34:46.943646Z","changedTime":"2022-10-26T20:53:59.6986412Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest/providers/Microsoft.Network/networkSecurityGroups/testexportnsg","name":"testexportnsg","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","createdTime":"2022-11-02T19:37:32.4405934Z","changedTime":"2022-11-02T19:49:35.8473968Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1/providers/Microsoft.KeyVault/vaults/danted-stackstest1523","name":"danted-stackstest1523","type":"Microsoft.KeyVault/vaults","location":"eastus2","createdTime":"2022-09-06T23:54:23.8685184Z","changedTime":"2022-09-07T00:04:25.3623958Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/rxn5qqaufzmkq","name":"rxn5qqaufzmkq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-09-26T16:20:11.5301398Z","changedTime":"2022-09-26T16:30:32.4553005Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2","name":"resource2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T16:20:56.9822477Z","changedTime":"2022-09-26T16:30:58.903274Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:57.088629Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/resource2/versions/v1","name":"resource2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-09-26T16:20:58.8109991Z","changedTime":"2022-09-26T16:31:00.6991802Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T16:20:58.9012066Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T16:20:58.9012066Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","name":"cli-test-template-specmablcsr5jixn5evoaqvqdtqjceapa3hgxjsr5e","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-09-26T18:44:09.2954724Z","changedTime":"2022-09-26T18:54:09.7936572Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-09-26T18:44:09.4437775Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-26T18:44:09.4437775Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:41:04.6811249Z","changedTime":"2022-10-05T15:51:05.9209048Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:05.3541666Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/versions/v1","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2022-10-05T15:41:06.2208769Z","changedTime":"2022-10-05T15:51:07.6637945Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:41:06.401156Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:41:06.401156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-10-05T15:42:42.8953855Z","changedTime":"2022-10-05T15:52:43.8689635Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","name":"cli-test-template-specwf724wre64woy4vs7qxfknex5zlfjg4hpawecm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2022-10-05T15:49:12.9741909Z","changedTime":"2022-10-05T15:59:13.461021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2022-10-05T15:49:12.991789Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-10-05T15:49:12.991789Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/blahamv4wqzz2rwk2","name":"blahamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-10-06T13:52:28.7275369Z","changedTime":"2022-10-06T14:19:55.491669Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.Storage/storageAccounts/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westeurope","createdTime":"2022-11-07T17:36:28.0528619Z","changedTime":"2022-11-07T17:46:54.3026791Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU/providers/Microsoft.ContainerInstance/containerGroups/p3qb2pbarnnwaazscripts","name":"p3qb2pbarnnwaazscripts","type":"Microsoft.ContainerInstance/containerGroups","location":"westeurope","createdTime":"2022-11-07T17:36:52.2066623Z","changedTime":"2022-11-07T17:48:14.1238832Z","provisioningState":"Succeeded","tags":{"AZ_SCRIPTS_STATUS":"55x2f4j4vzmfe:Completed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage5","name":"simpleblogstorage5","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2022-11-04T16:22:51.091089Z","changedTime":"2022-11-04T16:33:10.7682095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec","name":"simpleblogStorageSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2022-11-04T16:41:11.3427606Z","changedTime":"2022-11-04T16:51:12.891592Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:11.5225844Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.1","name":"simpleblogStorageSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:41:12.353945Z","changedTime":"2022-11-04T16:51:13.2153534Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:41:12.4929372Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:41:12.4929372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.2","name":"simpleblogStorageSpec/0.2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2022-11-04T16:51:14.7443338Z","changedTime":"2022-11-04T17:01:16.2272299Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2022-11-04T16:51:15.2900603Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T16:51:15.2900603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful6","name":"hpStateful6","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7987744Z","changedTime":"2022-11-03T16:45:34.3275082Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful7","name":"hpStateful7","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2022-11-03T16:35:33.7981314Z","changedTime":"2022-11-03T16:45:34.3526508Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/stya4ieas2hwqse","name":"stya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"westus2","createdTime":"2022-11-07T16:40:19.9757294Z","changedTime":"2022-11-07T16:55:56.5287424Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi","name":"msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2022-11-07T16:40:19.9339376Z","changedTime":"2022-11-07T16:50:20.5223865Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Network/dnszones/dns-ya4ieas2hwqse.local","name":"dns-ya4ieas2hwqse.local","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2022-11-07T16:40:19.999552Z","changedTime":"2022-11-07T16:50:20.9151617Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Storage/storageAccounts/bicepcdnsadftest","name":"bicepcdnsadftest","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2022-11-10T03:13:16.2427462Z","changedTime":"2022-11-10T03:23:37.4313551Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/serverFarms/bicep-cdn-test-serverFarm","name":"bicep-cdn-test-serverFarm","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"eastus","createdTime":"2022-11-10T03:13:16.2476082Z","changedTime":"2022-11-10T03:23:17.2318062Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Insights/components/bicep-cdn-test-appInsights","name":"bicep-cdn-test-appInsights","type":"Microsoft.Insights/components","kind":"web","location":"eastus","createdTime":"2022-11-10T03:13:16.313873Z","changedTime":"2022-11-10T03:23:16.910033Z","provisioningState":"Succeeded","tags":{"hidden-link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test":"Resource"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/Microsoft.Web/sites/bicep-cdn-test-functionApp","name":"bicep-cdn-test-functionApp","type":"Microsoft.Web/sites","kind":"functionapp","location":"eastus","identity":{"principalId":"35bb6ba8-ad7d-42c7-a5f0-8ae427eb3a73","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2022-11-10T03:13:20.8170318Z","changedTime":"2022-11-10T18:54:11.7292162Z","provisioningState":"Succeeded","tags":{"hidden-link: + /app-insights-resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.insights/components/bicep-cdn-test-appInsights","hidden-link: + /app-insights-instrumentation-key":"da0e053b-49e4-404e-8588-9320bbb0e0f5","hidden-link: + /app-insights-conn-string":"InstrumentationKey=da0e053b-49e4-404e-8588-9320bbb0e0f5;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure + Anomalies - bicep-cdn-test-appInsights","name":"Failure Anomalies - bicep-cdn-test-appInsights","type":"microsoft.alertsmanagement/smartDetectorAlertRules","location":"global","createdTime":"2022-11-10T03:23:20.5988095Z","changedTime":"2022-11-10T03:33:21.0867476Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/Microsoft.Storage/storageAccounts/chodavidbicepcdnsa4","name":"chodavidbicepcdnsa4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2022-11-17T18:39:54.9230373Z","changedTime":"2022-11-17T18:50:16.6736235Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4","name":"chodavidbicepcdn4","type":"microsoft.cdn/profiles","sku":{"name":"Standard_Microsoft"},"kind":"cdn","location":"global","createdTime":"2022-11-17T18:48:28.8819266Z","changedTime":"2022-11-17T18:58:45.3758918Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4/providers/microsoft.cdn/profiles/chodavidbicepcdn4/endpoints/bicepcdn4","name":"chodavidbicepcdn4/bicepcdn4","type":"microsoft.cdn/profiles/endpoints","location":"global","createdTime":"2022-11-17T18:48:45.2597073Z","changedTime":"2022-11-17T18:59:03.3866661Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsaya4ieas2hwqse","name":"hpsaya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.2255038Z","changedTime":"2023-03-30T16:14:12.2538291Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hpsa1ya4ieas2hwqse","name":"hpsa1ya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2022-12-16T17:34:36.1852781Z","changedTime":"2023-03-30T16:14:12.105683Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:27.9181679Z","changedTime":"2023-01-24T18:29:12.4410223Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","createdTime":"2023-01-24T18:13:30.5392025Z","changedTime":"2023-01-24T18:25:34.1841009Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkSecurityGroups/ubuntuSimplevm1-nsg","name":"ubuntuSimplevm1-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus2","createdTime":"2023-01-10T21:42:31.0780616Z","changedTime":"2023-01-10T21:54:32.7070798Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/publicIPAddresses/ubuntuSimplevm1-PublicIP","name":"ubuntuSimplevm1-PublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus2","createdTime":"2023-01-10T21:42:31.0902056Z","changedTime":"2023-01-17T15:36:24.4331556Z","provisioningState":"Succeeded","tags":{"displayName":"PublicIPAddress"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/virtualNetworks/ubuntuSimplevm1-VirtualNetwork","name":"ubuntuSimplevm1-VirtualNetwork","type":"Microsoft.Network/virtualNetworks","location":"eastus2","createdTime":"2023-01-10T21:42:34.0917383Z","changedTime":"2023-01-10T21:54:37.2613961Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-VirtualNetwork"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Network/networkInterfaces/ubuntuSimplevm1-NetworkInterface","name":"ubuntuSimplevm1-NetworkInterface","type":"Microsoft.Network/networkInterfaces","location":"eastus2","createdTime":"2023-01-10T21:42:36.7602164Z","changedTime":"2023-02-03T01:26:01.9700561Z","provisioningState":"Succeeded","tags":{"displayName":"ubuntuSimplevm1-NetworkInterface"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/simpleblogstorage117","name":"simpleblogstorage117","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-10T21:59:48.5258756Z","changedTime":"2023-01-10T22:10:08.3202262Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec","name":"basicstorageTemplateSpec","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-01-12T15:22:35.9750362Z","changedTime":"2023-01-12T15:32:37.1180339Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:36.2351733Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/basicstorageTemplateSpec/versions/0.1","name":"basicstorageTemplateSpec/0.1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-01-12T15:22:37.0165364Z","changedTime":"2023-01-12T15:32:37.7705211Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-01-12T15:22:37.1728283Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-12T15:22:37.1728283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Storage/storageAccounts/toylaunchil4uaryarbsui","name":"toylaunchil4uaryarbsui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","createdTime":"2023-01-12T19:58:25.5480214Z","changedTime":"2023-01-12T20:08:44.8093532Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS","name":"outputTestTS","type":"Microsoft.Resources/templateSpecs","location":"eastus2","createdTime":"2023-02-03T00:59:13.4525959Z","changedTime":"2023-02-03T01:09:15.8695619Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:14.0102246Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/outputTestTS/versions/v1","name":"outputTestTS/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2","createdTime":"2023-02-03T00:59:15.3743339Z","changedTime":"2023-02-03T01:09:16.777436Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"stuartko@microsoft.com","createdByType":"User","createdAt":"2023-02-03T00:59:16.2424342Z","lastModifiedBy":"stuartko@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T00:59:16.2424342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/hp33333","name":"hp33333","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-01-24T21:04:27.7190225Z","changedTime":"2023-01-24T21:17:48.5101927Z","provisioningState":"Succeeded","tags":{"key1":"my + key","key2":"foo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/hp77","name":"hp77","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-01-24T21:32:44.3221218Z","changedTime":"2023-01-24T21:43:48.3327633Z","provisioningState":"Succeeded","tags":{"key1":"mykey","key2":"f + oo"},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-01-24T21:32:45.1683344Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T21:33:46.2396076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg/providers/Microsoft.Resources/templateSpecs/simpleblogStorageSpec/versions/0.3","name":"simpleblogStorageSpec/0.3","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-03-03T05:37:09.2330169Z","changedTime":"2023-03-03T05:47:10.6743002Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-03-03T05:37:09.6616625Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-03T05:37:09.6616625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest/providers/Microsoft.Storage/storageAccounts/tsgfesjkfsksf","name":"tsgfesjkfsksf","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-07T17:38:24.5383356Z","changedTime":"2023-03-07T17:48:45.5345985Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests/providers/Providers.Test/statefulResources/subLevelResource1","name":"subLevelResource1","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-03-14T23:41:56.5425808Z","changedTime":"2023-03-14T23:51:56.0703063Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName","name":"TemplateSpecName","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-03-15T16:19:31.0990742Z","changedTime":"2023-03-15T16:29:32.9742646Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:32.0311643Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Resources/templateSpecs/TemplateSpecName/versions/1.0","name":"TemplateSpecName/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-03-15T16:19:33.3203024Z","changedTime":"2023-03-15T16:29:37.6984948Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-03-15T16:19:33.7655462Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-15T16:19:33.7655462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/diagsamv4wqzz2rwk2","name":"diagsamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-03-13T20:30:18.1940185Z","changedTime":"2023-03-13T20:40:41.2871773Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/subnet-2-nsg","name":"subnet-2-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.9001178Z","changedTime":"2023-03-13T20:42:31.237624Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/networkSecurityGroups/NSG","name":"NSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","createdTime":"2023-03-13T20:30:27.978028Z","changedTime":"2023-03-13T20:42:30.2642867Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Network/publicIPAddresses/publicIp","name":"publicIp","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-13T20:30:28.0911982Z","changedTime":"2023-03-13T20:42:31.9598916Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2/providers/Microsoft.Network/publicIPAddresses/pubIP2","name":"pubIP2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.2835679Z","changedTime":"2023-04-13T16:58:06.9109734Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1/providers/Microsoft.Network/publicIPAddresses/pubIP1","name":"pubIP1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","createdTime":"2023-03-15T16:34:59.3654343Z","changedTime":"2023-04-13T16:58:07.0356282Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdfasdklfjhsadp89f908","name":"asdfasdklfjhsadp89f908","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-27T23:15:47.6758662Z","changedTime":"2023-03-27T23:26:09.8333516Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/astgamv4wqzz2rwk2","name":"astgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:40:38.6706227Z","changedTime":"2023-03-28T13:51:00.5256895Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/bstgamv4wqzz2rwk2","name":"bstgamv4wqzz2rwk2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-03-28T13:41:02.3132225Z","changedTime":"2023-03-28T13:51:24.7409563Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/ps7740","name":"ps7740","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","createdTime":"2023-04-06T16:13:31.6344104Z","changedTime":"2023-04-06T16:23:55.7581776Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2","name":"StacksScenarioTestSpec2","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-04-20T17:32:00.0465555Z","changedTime":"2023-04-20T17:42:00.298055Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.092497Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T17:32:00.5044286Z","changedTime":"2023-04-20T17:42:02.2219392Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T17:32:00.5456765Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T17:32:00.5456765Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/StacksScenarioTestSpec2/versions/StacksScenarioTestVersion2","name":"StacksScenarioTestSpec2/StacksScenarioTestVersion2","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-04-20T18:22:34.3984252Z","changedTime":"2023-04-20T18:32:34.7393886Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-04-20T18:22:34.4782023Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-20T18:22:34.4782023Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-12T20:37:56.2454224Z","changedTime":"2023-04-12T20:47:56.6169399Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:56.2733672Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr/providers/Microsoft.Resources/templateSpecs/cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/versions/v1","name":"cli-test-resource-ones2cxpblfmkmn43uvfcmg3wza67o6zlvsoooelne/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-12T20:37:56.9999618Z","changedTime":"2023-04-12T20:47:57.2574425Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-12T20:37:57.0389954Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T20:37:57.0389954Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:20:56.5610256Z","changedTime":"2023-04-13T13:30:56.9945094Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:56.5838864Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/versions/v1","name":"cli-test-resource-onekt7jprxjclsh6tci5hdesue2fnminvpjdjwioxl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:20:57.0192995Z","changedTime":"2023-04-13T13:30:57.3980443Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:20:57.0526125Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:20:57.0526125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:21:19.3627392Z","changedTime":"2023-04-13T13:31:19.7275178Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.391543Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/versions/v1","name":"cli-test-resource-twokz4yizutodq3474pxejwvsdc5hym6why55pjtk4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:21:19.7372867Z","changedTime":"2023-04-13T13:31:20.3663745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:21:19.7822433Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:21:19.7822433Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:23:39.2693201Z","changedTime":"2023-04-13T13:33:39.4736235Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.2855341Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/versions/v1","name":"cli-test-resource-onemgag3mq4nj7blg3wewnojb5zqgchf5vdi3zdjxv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:23:39.7619608Z","changedTime":"2023-04-13T13:33:40.2053541Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:23:39.7855415Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:23:39.7855415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:24:01.2287215Z","changedTime":"2023-04-13T13:34:01.3428621Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.265828Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/versions/v1","name":"cli-test-resource-twokruohqkmzcw3to6jkniib5satdixe24hcbefgg2/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:24:01.5779206Z","changedTime":"2023-04-13T13:34:02.2233632Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:24:01.6095322Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:24:01.6095322Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:10.8013266Z","changedTime":"2023-04-13T13:39:11.6746125Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:10.8460896Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/versions/v1","name":"cli-test-resource-onexzrexm2xm6j2sfus66wukxfa55hsqljbvehm5t3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:11.2073267Z","changedTime":"2023-04-13T13:39:11.5154021Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:11.2367247Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:11.2367247Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:29:33.8098807Z","changedTime":"2023-04-13T13:39:34.1230538Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:34.0797968Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/versions/v1","name":"cli-test-resource-twok4ei2g2xkkhcstsqyhm6lwgp4ua3xoxlqmmz4df/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:29:35.1983659Z","changedTime":"2023-04-13T13:39:36.1053317Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:29:35.4547292Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:29:35.4547292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:34:55.4949033Z","changedTime":"2023-04-13T13:44:56.1816148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.5232053Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/versions/v1","name":"cli-test-resource-onejkwjtqxppu5hnscsi6zeusfb3jbbu3y76ac2hdz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:34:55.9699298Z","changedTime":"2023-04-13T13:44:56.9873196Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:34:55.9919062Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:34:55.9919062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T13:35:18.5594118Z","changedTime":"2023-04-13T13:45:20.3149258Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:18.6999191Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/versions/v1","name":"cli-test-resource-twoemwyepjuof3spduanzgzfj5xhwpveaj4ptuybwg/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T13:35:19.0055071Z","changedTime":"2023-04-13T13:45:19.1555381Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T13:35:19.028052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T13:35:19.028052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:45:44.7160391Z","changedTime":"2023-04-13T14:55:44.8233593Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:44.7437919Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/versions/v1","name":"cli-test-resource-onecbrjp377tyz6onelzxsybvrsxu22op7skqpph6l/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:45:45.1925916Z","changedTime":"2023-04-13T14:55:46.0929914Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:45:45.2125096Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:45:45.2125096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T14:46:06.6882178Z","changedTime":"2023-04-13T14:56:06.90222Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:06.7715295Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/versions/v1","name":"cli-test-resource-twomezriye7w7di7nsurzwaup567et55yxtrsna7e6/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T14:46:07.2376889Z","changedTime":"2023-04-13T14:56:07.7636148Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T14:46:07.3340004Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T14:46:07.3340004Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:28.592267Z","changedTime":"2023-04-13T15:24:28.8859363Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.6192873Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/versions/v1","name":"cli-test-resource-onevkkzpuokfr6z4ojdsifyqasy7zha7fzpcb5zkmk/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:28.9656205Z","changedTime":"2023-04-13T15:24:30.0926745Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:28.9786079Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:28.9786079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-13T15:14:52.3924976Z","changedTime":"2023-04-13T15:24:53.9845083Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.4111052Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/versions/v1","name":"cli-test-resource-twohnjsvt3uywvnwxciknleurtnqcao6zlyxepvhok/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-13T15:14:52.8553119Z","changedTime":"2023-04-13T15:24:52.9279477Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-13T15:14:52.8799428Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-13T15:14:52.8799428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T13:51:02.9984655Z","changedTime":"2023-04-14T14:01:16.4153878Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:03.9727103Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Microsoft.Resources/templateSpecs/cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/versions/v1","name":"cli-test-template-specv6xocrkr4pnmljotzfmxlwgigc7shqm5gwifyl/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T13:51:05.3860087Z","changedTime":"2023-04-14T14:01:07.9993679Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T13:51:05.7696453Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T13:51:05.7696453Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T13:52:23.1829333Z","changedTime":"2023-04-14T14:02:24.0402095Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:41:14.7646832Z","changedTime":"2023-04-14T14:51:16.9864467Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:15.962174Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Microsoft.Resources/templateSpecs/cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/versions/v1","name":"cli-test-template-speczsr62454o2iuzy4nv4esdpef6zbxe4aufoyauv/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:41:17.1612625Z","changedTime":"2023-04-14T14:51:19.2869805Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:41:17.6184308Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:41:17.6184308Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-04-14T14:42:26.2623369Z","changedTime":"2023-04-14T14:52:27.1241077Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:42:47.649229Z","changedTime":"2023-04-14T14:52:48.6882943Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:47.6725504Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/versions/v1","name":"cli-test-resource-one2wfa3hup2433mizfgoubfltmsqon52zvzgxkqcz/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:42:48.2205529Z","changedTime":"2023-04-14T14:52:48.6496073Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:42:48.2506786Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:42:48.2506786Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-04-14T14:43:04.8858134Z","changedTime":"2023-04-14T14:53:05.0150743Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:04.9094365Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6/providers/Microsoft.Resources/templateSpecs/cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/versions/v1","name":"cli-test-resource-twowhdbzvlyt4antv5h6ucwnrnljml6yuc55edanhm/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-04-14T14:43:05.2626034Z","changedTime":"2023-04-14T14:53:05.9761008Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-04-14T14:43:05.3000644Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T14:43:05.3000644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/xmyuniqueacc2346","name":"xmyuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:13:30.9928991Z","changedTime":"2023-04-27T21:24:36.4017742Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/myuniqueacc2346","name":"myuniqueacc2346","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-27T21:57:13.1049712Z","changedTime":"2023-04-27T22:08:08.1444496Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"eastus","identity":{"principalId":"a42a2624-9e5c-46e8-ae7c-25cedd8d4c52","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-04-28T17:59:18.1817594Z","changedTime":"2023-04-28T18:14:20.5973067Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/asdafug2192","name":"asdafug2192","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:12:45.5885816Z","changedTime":"2023-04-29T13:23:07.0407242Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.Storage/storageAccounts/aodsfh239487","name":"aodsfh239487","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-04-29T13:14:23.4470943Z","changedTime":"2023-04-29T13:24:45.8114095Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum3","name":"storeaccountnum3","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2405929Z","changedTime":"2023-05-12T11:14:42.5716614Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum1","name":"storeaccountnum1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2189678Z","changedTime":"2023-05-12T11:14:42.7393442Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum2","name":"storeaccountnum2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.0796275Z","changedTime":"2023-05-12T11:14:42.8874654Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/storeaccountnum4","name":"storeaccountnum4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T11:04:23.2716164Z","changedTime":"2023-05-12T11:14:42.8336889Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/stacksappstorage","name":"stacksappstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","location":"eastus","createdTime":"2023-05-12T13:30:01.1352147Z","changedTime":"2023-05-12T13:40:20.8720081Z","provisioningState":"Succeeded","tags":{"displayName":"stacksappstorage"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Providers.Test/statefulResources/hpStateful20000","name":"hpStateful20000","type":"Providers.Test/statefulResources","location":"westus2","createdTime":"2023-04-25T16:10:55.9074162Z","changedTime":"2023-04-25T16:20:58.4002796Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1/providers/Microsoft.Storage/storageAccounts/stackstore2tqvjfmg5ob6pw","name":"stackstore2tqvjfmg5ob6pw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:37.4839282Z","changedTime":"2023-06-21T16:20:57.1963885Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.Storage/storageAccounts/storeya4ieas2hwqse","name":"storeya4ieas2hwqse","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-05-03T16:21:04.9210602Z","changedTime":"2023-06-14T23:50:52.6708428Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","name":"bicepbuild2","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"c00df61d-1ddf-473c-a358-b34c3d2117ce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:49:04.8546245Z","changedTime":"2023-05-03T18:03:00.7222293Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/1dd8f1d7-943c-4203-8c6a-a1106d5d630b","name":"1dd8f1d7-943c-4203-8c6a-a1106d5d630b","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:41.211302Z","changedTime":"2023-05-03T18:01:43.8254484Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:49:42.9223479Z","changedTime":"2023-05-10T10:29:17.9510503Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool","name":"bicepbuild2-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:49:44.1861034Z","changedTime":"2023-05-03T17:59:45.2801735Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-15229005-nsg","name":"aks-agentpool-15229005-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:49:45.3474359Z","changedTime":"2023-05-03T18:05:12.9366746Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-15229005-routetable","name":"aks-agentpool-15229005-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:49:48.9998798Z","changedTime":"2023-05-03T18:03:59.9865309Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-15229005","name":"aks-vnet-15229005","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:49:51.7090311Z","changedTime":"2023-05-03T18:01:55.2606657Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-21259349-vmss","name":"aks-agentpool-21259349-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild2-agentpool":{"principalId":"975efb46-87a6-4236-a612-ce55bf4a4d1b","clientId":"4bdd5824-2603-4974-a882-29cbde57e22d"}}},"createdTime":"2023-05-03T17:50:30.062977Z","changedTime":"2023-05-03T18:03:46.2606777Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"56dc4e85-f1ed-4ca9-b0de-09cdecfbf0b8","aks-managed-creationSource":"vmssclient-aks-agentpool-21259349-vmss","aks-managed-kubeletIdentityClientID":"4bdd5824-2603-4974-a882-29cbde57e22d","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"15229005","aks-managed-coordination":"true"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild2_westus2/providers/Microsoft.Network/publicIPAddresses/kubernetes-a8f133f1e3cba4f27af56e388ef212e2","name":"kubernetes-a8f133f1e3cba4f27af56e388ef212e2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:53:03.6834849Z","changedTime":"2023-06-01T14:29:11.8920004Z","provisioningState":"Succeeded","tags":{"k8s-azure-cluster-name":"kubernetes","k8s-azure-dns-label-service":"default/bicepbuild","k8s-azure-service":"default/bicepbuild"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild3","name":"bicepbuild3","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"266fe4ed-74f2-4d39-96eb-bd719f30dcdb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:53:46.1568736Z","changedTime":"2023-05-03T18:07:30.91331Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","name":"bicepbuild4","type":"Microsoft.ContainerService/managedClusters","sku":{"name":"Basic","tier":"Free"},"location":"westus2","identity":{"principalId":"9bcfbaac-3cee-48af-b394-65b7f2bcbdce","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"createdTime":"2023-05-03T17:56:40.1487557Z","changedTime":"2023-05-05T20:54:43.252301Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/publicIPAddresses/45573c21-02a8-40b1-802c-23bfde203973","name":"45573c21-02a8-40b1-802c-23bfde203973","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:18.0678407Z","changedTime":"2023-05-03T18:09:20.4443833Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel","aks-managed-type":"aks-slb-managed-outbound-ip"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/loadBalancers/kubernetes","name":"kubernetes","type":"Microsoft.Network/loadBalancers","sku":{"name":"Standard"},"location":"westus2","createdTime":"2023-05-03T17:57:21.6368995Z","changedTime":"2023-05-03T18:07:22.4051639Z","provisioningState":"Succeeded","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool","name":"bicepbuild4-agentpool","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","createdTime":"2023-05-03T17:57:22.8898101Z","changedTime":"2023-05-03T18:07:23.3565582Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/networkSecurityGroups/aks-agentpool-10645048-nsg","name":"aks-agentpool-10645048-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2","createdTime":"2023-05-03T17:57:24.2198268Z","changedTime":"2023-05-03T18:09:27.2979053Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/routeTables/aks-agentpool-10645048-routetable","name":"aks-agentpool-10645048-routetable","type":"Microsoft.Network/routeTables","location":"westus2","createdTime":"2023-05-03T17:57:28.4541489Z","changedTime":"2023-05-03T18:11:44.633399Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-10645048","name":"aks-vnet-10645048","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-05-03T17:57:31.2695975Z","changedTime":"2023-05-03T18:09:35.0629725Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-agentpool-42814354-vmss","name":"aks-agentpool-42814354-vmss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_B2s","tier":"Standard","capacity":1},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bicepbuild4-agentpool":{"principalId":"7d7449b4-11c7-4845-841f-3184d6422f14","clientId":"91d058fb-a7b8-4b79-9b00-02f432a8893e"}}},"createdTime":"2023-05-03T17:58:16.1307753Z","changedTime":"2023-05-05T20:14:41.3481064Z","provisioningState":"Succeeded","tags":{"aks-managed-createOperationID":"a8d09202-eab3-474c-87be-ce82c78025ce","aks-managed-creationSource":"vmssclient-aks-agentpool-42814354-vmss","aks-managed-kubeletIdentityClientID":"91d058fb-a7b8-4b79-9b00-02f432a8893e","aks-managed-orchestrator":"Kubernetes:1.25.6","aks-managed-poolName":"agentpool","aks-managed-resourceNameSuffix":"10645048"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg/providers/Microsoft.ContainerRegistry/registries/asilvermantestbr","name":"asilvermantestbr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","createdTime":"2023-05-03T18:49:06.6106317Z","changedTime":"2023-05-03T18:59:06.6307969Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"shenglol@microsoft.com","createdByType":"User","createdAt":"2023-05-03T18:49:06.685007Z","lastModifiedBy":"shenglol@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-03T18:49:06.685007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test/providers/Microsoft.DocumentDb/databaseAccounts/test-cosmos-malaysia-account","name":"test-cosmos-malaysia-account","type":"Microsoft.DocumentDb/databaseAccounts","kind":"GlobalDocumentDB","location":"malaysiasouth","identity":{"type":"None"},"createdTime":"2023-05-23T18:48:08.6275883Z","changedTime":"2023-05-23T19:03:21.1494062Z","provisioningState":"Succeeded","tags":{"defaultExperience":"Core + (SQL)","hidden-cosmos-mmspecial":""},"systemData":{"createdAt":"2023-05-23T18:52:52.6233865Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Storage/storageAccounts/toylaunchts4s5c7ftwzaw","name":"toylaunchts4s5c7ftwzaw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus","createdTime":"2023-06-21T11:33:21.299983Z","changedTime":"2023-06-21T11:43:40.7350987Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp","name":"storageToyComp","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-05-26T17:13:47.1900142Z","changedTime":"2023-05-26T17:23:48.085562Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:47.5532615Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg/providers/Microsoft.Resources/templateSpecs/storageToyComp/versions/1.0","name":"storageToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"westus","createdTime":"2023-05-26T17:13:48.4805709Z","changedTime":"2023-05-26T17:23:49.8584982Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-05-26T17:13:48.6472816Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-26T17:13:48.6472816Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4","name":"MyTemplateSpecGokul-TestRG4","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-05-31T19:57:22.4518917Z","changedTime":"2023-05-31T20:07:23.6875586Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:22.49183Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokul-TestRG4/versions/MySpecVersiono5aa2ops2gxco","name":"MyTemplateSpecGokul-TestRG4/MySpecVersiono5aa2ops2gxco","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-05-31T19:57:23.3744676Z","changedTime":"2023-05-31T20:07:24.0090381Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-05-31T19:57:23.4136707Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-31T19:57:23.4136707Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T16:22:01.7529799Z","changedTime":"2023-05-11T16:32:02.300695Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:01.7925355Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp/providers/Microsoft.Resources/templateSpecs/cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/versions/v1","name":"cli-test-resource-one4bwim3xsrlihrv6pv3jd5n6dgwlbjikyxbhkv3o/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T16:22:02.178581Z","changedTime":"2023-05-11T16:32:03.4465114Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T16:22:02.1988043Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T16:22:02.1988043Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-05-11T17:26:19.6894806Z","changedTime":"2023-05-11T17:36:19.9745203Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:19.7591328Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/versions/v1","name":"cli-test-resource-onervtqvyd3hhiavujmyehveluf2hbhzk3cerr5fob/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-05-11T17:26:20.1632825Z","changedTime":"2023-05-11T17:36:20.5732842Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-05-11T17:26:20.1966455Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T17:26:20.1966455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG","name":"MyTemplateSpecGokulTest-RG","type":"Microsoft.Resources/templateSpecs","location":"eastus2euap","createdTime":"2023-06-01T00:07:42.1549636Z","changedTime":"2023-06-01T00:17:42.5955807Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:42.1618964Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RG/versions/MySpecVersion2yiq54t6sr2hu","name":"MyTemplateSpecGokulTest-RG/MySpecVersion2yiq54t6sr2hu","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus2euap","createdTime":"2023-06-01T00:07:43.7740443Z","changedTime":"2023-06-01T00:17:44.1972194Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:07:43.7869733Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:07:43.7869733Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2","name":"MyTemplateSpecGokulTest-RGCanary2","type":"Microsoft.Resources/templateSpecs","location":"centraluseuap","createdTime":"2023-06-01T00:09:55.3930052Z","changedTime":"2023-06-01T00:19:55.4794074Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:55.4294939Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2/providers/Microsoft.Resources/templateSpecs/MyTemplateSpecGokulTest-RGCanary2/versions/MySpecVersiontm3svgdw5pxcq","name":"MyTemplateSpecGokulTest-RGCanary2/MySpecVersiontm3svgdw5pxcq","type":"Microsoft.Resources/templateSpecs/versions","location":"centraluseuap","createdTime":"2023-06-01T00:09:57.1013712Z","changedTime":"2023-06-01T00:19:57.7983097Z","provisioningState":"Succeeded","systemData":{"createdBy":"gopremra@microsoft.com","createdByType":"User","createdAt":"2023-06-01T00:09:57.1326419Z","lastModifiedBy":"gopremra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-01T00:09:57.1326419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg/providers/Microsoft.Network/dnszones/blahsjslks.com","name":"blahsjslks.com","type":"Microsoft.Network/dnszones","location":"global","createdTime":"2023-06-12T15:52:16.2859115Z","changedTime":"2023-06-12T16:02:17.8438877Z","provisioningState":"Succeeded","tags":{"Context":"dns","Environment":"dop","Owner":"Operations"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","name":"cli-test-template-specxk7y7b4itip6haki43k2rzsuhjc6kkn2nkvker","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:40:28.3754568Z","changedTime":"2023-06-14T20:50:29.1433856Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:40:28.4140413Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:40:28.4140413Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk/providers/Microsoft.Resources/templateSpecs/cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","name":"cli-test-template-specsyyl3u6ts2gcikjjqgncwq3fozba6rcnsyad64","type":"Microsoft.Resources/templateSpecs","location":"westus","createdTime":"2023-06-14T20:56:00.3594353Z","changedTime":"2023-06-14T21:06:00.8828231Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:56:00.3981235Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:56:00.3981235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore22hvx3lvgfvd6y","name":"stackstore22hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4971986Z","changedTime":"2023-06-21T16:20:59.1426183Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2/providers/Microsoft.Storage/storageAccounts/stackstore12hvx3lvgfvd6y","name":"stackstore12hvx3lvgfvd6y","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:52:39.4008387Z","changedTime":"2023-06-21T16:20:59.3710282Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore2iqmfqa44vlh4m","name":"stackstore2iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.8857431Z","changedTime":"2023-06-21T16:13:18.4410306Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4/providers/Microsoft.Storage/storageAccounts/stackstore1iqmfqa44vlh4m","name":"stackstore1iqmfqa44vlh4m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T12:41:15.9638824Z","changedTime":"2023-06-21T16:13:18.0556728Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore2gmio6drveb7ic","name":"stackstore2gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.6469773Z","changedTime":"2023-06-21T13:37:27.7851752Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore1x67zkq4o3s2vs","name":"stackstore1x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7129436Z","changedTime":"2023-06-21T13:37:28.3663801Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5/providers/Microsoft.Storage/storageAccounts/stackstore2x67zkq4o3s2vs","name":"stackstore2x67zkq4o3s2vs","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7141123Z","changedTime":"2023-06-21T13:37:28.3570258Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6/providers/Microsoft.Storage/storageAccounts/stackstore1gmio6drveb7ic","name":"stackstore1gmio6drveb7ic","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus","createdTime":"2023-06-21T13:23:43.7697953Z","changedTime":"2023-06-21T13:37:27.8900618Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/toylaunchcqtycovduzg2u","name":"toylaunchcqtycovduzg2u","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-06T17:39:34.0645722Z","changedTime":"2023-06-06T17:49:54.4322358Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp","name":"storageAndNetworkToyComp","type":"Microsoft.Resources/templateSpecs","location":"eastus","createdTime":"2023-06-06T18:00:37.8911951Z","changedTime":"2023-06-06T18:10:39.3466934Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:38.2204947Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Resources/templateSpecs/storageAndNetworkToyComp/versions/1.0","name":"storageAndNetworkToyComp/1.0","type":"Microsoft.Resources/templateSpecs/versions","location":"eastus","createdTime":"2023-06-06T18:00:39.0218804Z","changedTime":"2023-06-06T18:10:40.6303666Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"angperez@microsoft.com","createdByType":"User","createdAt":"2023-06-06T18:00:39.1736857Z","lastModifiedBy":"angperez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T18:00:39.1736857Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:57:11.2830531Z","changedTime":"2023-06-14T21:07:13.2828714Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:12.2520554Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/versions/v1","name":"cli-test-template-specxdmvaxpmenvnmgmrmowcelcyllrtxjed2nfhx3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:57:13.4419216Z","changedTime":"2023-06-14T21:07:15.5116827Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:57:13.8927039Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:57:13.8927039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-14T20:58:28.0452622Z","changedTime":"2023-06-14T21:08:29.2701172Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T20:59:01.0599033Z","changedTime":"2023-06-14T21:09:01.5505283Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.0813101Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/versions/v1","name":"cli-test-resource-onezq4lzpoliey2gj5pqq54fi4movvi6ej3jr2efd4/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T20:59:01.4291747Z","changedTime":"2023-06-14T21:09:01.6056574Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T20:59:01.4563298Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T20:59:01.4563298Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-14T21:00:10.9683429Z","changedTime":"2023-06-14T21:10:11.4859464Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.0995358Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz/providers/Microsoft.Resources/templateSpecs/cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/versions/v1","name":"cli-test-resource-threerpn3wpvi7l246hrh4kloe74wci2doixzglf5i/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-14T21:00:11.4657382Z","changedTime":"2023-06-14T21:10:12.7318852Z","provisioningState":"Succeeded","systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-14T21:00:11.4901951Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-14T21:00:11.4901951Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Network/virtualNetworks/vnetcqtycovduzg2u","name":"vnetcqtycovduzg2u","type":"Microsoft.Network/virtualNetworks","location":"westus2","createdTime":"2023-06-22T15:40:45.2476226Z","changedTime":"2023-06-22T15:52:48.9631315Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un2","name":"storecqtycovduzg2un2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9118334Z","changedTime":"2023-06-22T15:51:06.5607739Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez/providers/Microsoft.Storage/storageAccounts/storecqtycovduzg2un1","name":"storecqtycovduzg2un1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"westus2","createdTime":"2023-06-22T15:40:44.9159352Z","changedTime":"2023-06-22T15:51:06.5382463Z","provisioningState":"Succeeded","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T16:04:31.9606559Z","changedTime":"2023-06-21T16:14:33.7259456Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:33.0356488Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf/providers/Microsoft.Resources/templateSpecs/cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/versions/v1","name":"cli-test-template-specpsl744xp4ha2gcaijxzxajrh7agnqda6hlxezx/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T16:04:34.2807548Z","changedTime":"2023-06-21T16:14:36.2109408Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T16:04:34.7544662Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T16:04:34.7544662Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-21T21:37:50.4556937Z","changedTime":"2023-06-21T21:47:51.8935726Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:51.4104137Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq/providers/Microsoft.Resources/templateSpecs/cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/versions/v1","name":"cli-test-template-specwgyq4sg3s33t6y25rxpkkfsl53xnxilyxkr3p3/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-21T21:37:52.5714665Z","changedTime":"2023-06-21T21:47:54.8291238Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-21T21:37:52.9885616Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-21T21:37:52.9885616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj/providers/Providers.Test/statefulResources/uniquestorage001","name":"uniquestorage001","type":"Providers.Test/statefulResources","location":"centralus","createdTime":"2023-06-27T07:49:47.920807Z","changedTime":"2023-06-27T07:59:48.6120598Z","provisioningState":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003","name":"cli-test-template-spec000003","type":"Microsoft.Resources/templateSpecs","location":"westus2","createdTime":"2023-06-27T08:07:49.4129785Z","changedTime":"2023-06-27T08:07:50.5284344Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T08:07:50.21593Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T08:07:50.21593Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003/versions/v1","name":"cli-test-template-spec000003/v1","type":"Microsoft.Resources/templateSpecs/versions","location":"westus2","createdTime":"2023-06-27T08:07:51.1101984Z","changedTime":"2023-06-27T08:07:51.6378374Z","provisioningState":"Succeeded","tags":{},"systemData":{"createdBy":"harshpatel@microsoft.com","createdByType":"User","createdAt":"2023-06-27T08:07:51.4659335Z","lastModifiedBy":"harshpatel@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-27T08:07:51.4659335Z"}}]}' headers: cache-control: - no-cache content-length: - - '2146' + - '149261' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:30:02 GMT + - Tue, 27 Jun 2023 08:16:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -6233,62 +4946,53 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": - "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", - "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": - [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", - "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, - "parameters": {}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": - "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", - "denySettings": {"applyToChildScopes": false}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - stack sub delete Connection: - keep-alive - Content-Length: - - '847' - Content-Type: - - application/json ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:30:03.1953795Z\"\r\n + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-15-43-17d5e\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000\",\r\n + \ \"duration\": \"PT5.5069242S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {},\r\n \"parameters\": {\r\n \"name\": {\r\n \"value\": \"cli-test-resource-three000006\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005\"\r\n + \ }\r\n ],\r\n \"deletedResources\": [],\r\n \"failedResources\": + []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:14:39.0285491Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:15:43.0349175Z\"\r\n \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3a30%3a03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 cache-control: - no-cache content-length: - - '1178' + - '1794' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:30:03 GMT + - Tue, 27 Jun 2023 08:16:14 GMT expires: - '-1' pragma: @@ -6303,8 +5007,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -6312,33 +5014,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - stack sub delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"initializing\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '263' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 27 Jun 2023 04:30:03 GMT + - Tue, 27 Jun 2023 08:16:15 GMT expires: - '-1' pragma: @@ -6347,68 +5047,64 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK - request: - body: null + body: '{"location": "westus2"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - group create Connection: - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + - --location --name User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '268' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:30:33 GMT + - Tue, 27 Jun 2023 08:16:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -6417,72 +5113,107 @@ interactions: - keep-alive ParameterSetName: - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '268' + - '199' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:31:03 GMT + - Tue, 27 Jun 2023 08:16:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: - body: null + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "66565252327750708"}}, "parameters": {"rgname": + {"type": "string"}, "tsname": {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/templateSpecs", + "apiVersion": "2022-02-01", "name": "[parameters(''tsname'')]", "location": + "[resourceGroup().location]"}, {"type": "Microsoft.Resources/deployments", "apiVersion": + "2020-10-01", "name": "deploy-rg", "subscriptionId": "[subscription().subscriptionId]", + "location": "[resourceGroup().location]", "properties": {"expressionEvaluationOptions": + {"scope": "inner"}, "mode": "Incremental", "parameters": {"rgname": {"value": + "[parameters(''rgname'')]"}}, "template": {"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.10.97.17786", "templateHash": "16612974451088724402"}}, "parameters": {"rgname": + {"type": "string"}}, "resources": [{"type": "Microsoft.Resources/resourceGroups", + "apiVersion": "2021-04-01", "name": "[parameters(''rgname'')]", "location": + "[deployment().location]"}]}}}]}, "parameters": {"rgname": {"value": "cli-test-resource-one000004"}, + "tsname": {"value": "cli-test-template-spec000003"}}, "actionOnUnmanage": {"resources": + "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - stack sub create Connection: - keep-alive + Content-Length: + - '1734' + Content-Type: + - application/json ParameterSetName: - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"rgname\": {\r\n \"value\": + \"cli-test-resource-one000004\",\r\n \"type\": \"string\"\r\n },\r\n + \ \"tsname\": {\r\n \"value\": \"cli-test-template-spec000003\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n + \ \"provisioningState\": \"initializing\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:16:17.2323765Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:16:17.2323765Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b010a783-0770-42dc-b86b-e2802732c68c?api-version=2022-08-01-preview&t=2023-06-27T08%3a16%3a17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=gbOPDKAfOsfZ2dCZ-pEIRzUVKUm6ojS6nyem-rP2NmT5SQtlarHdUPcaD3_Iuf9ms-8COP1lHjKNK0d6HEGZWB4mXJTnEbIRa_Uk0mTQVLsVP9HjqxBFGx9MYJ8FGaiT0uUpz0crN4pIkzQ41ArRxGfPY_g8zAGX796IZ0K3lTHER9j3DZBuYA4htxM5m_QL-55u4fEx75MC9vZIiRloWeBybuCLw5d-uwoUtNJoCNiqE99MmEQA_zjIYt048Fn74ULVEPviKntJ1XkPlqSn9WBvJ1qfeZW2x-Q3dsslCToFTEt5xvtqJQpY_90JlbqsE4fD451Y-FRLG-BEj78Byw&h=sS2M7PFJqI-o9MlDSo-9OJ-sA_4Vcs-eSJ1XtVQ44qk cache-control: - no-cache content-length: - - '268' + - '1392' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:31:34 GMT + - Tue, 27 Jun 2023 08:16:17 GMT expires: - '-1' pragma: @@ -6491,15 +5222,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -6513,24 +5242,24 @@ interactions: - keep-alive ParameterSetName: - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b010a783-0770-42dc-b86b-e2802732c68c?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=gbOPDKAfOsfZ2dCZ-pEIRzUVKUm6ojS6nyem-rP2NmT5SQtlarHdUPcaD3_Iuf9ms-8COP1lHjKNK0d6HEGZWB4mXJTnEbIRa_Uk0mTQVLsVP9HjqxBFGx9MYJ8FGaiT0uUpz0crN4pIkzQ41ArRxGfPY_g8zAGX796IZ0K3lTHER9j3DZBuYA4htxM5m_QL-55u4fEx75MC9vZIiRloWeBybuCLw5d-uwoUtNJoCNiqE99MmEQA_zjIYt048Fn74ULVEPviKntJ1XkPlqSn9WBvJ1qfeZW2x-Q3dsslCToFTEt5xvtqJQpY_90JlbqsE4fD451Y-FRLG-BEj78Byw&h=sS2M7PFJqI-o9MlDSo-9OJ-sA_4Vcs-eSJ1XtVQ44qk response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b010a783-0770-42dc-b86b-e2802732c68c\",\r\n + \ \"name\": \"b010a783-0770-42dc-b86b-e2802732c68c\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '263' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:32:05 GMT + - Tue, 27 Jun 2023 08:16:18 GMT expires: - '-1' pragma: @@ -6561,24 +5290,24 @@ interactions: - keep-alive ParameterSetName: - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b010a783-0770-42dc-b86b-e2802732c68c?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A17&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=gbOPDKAfOsfZ2dCZ-pEIRzUVKUm6ojS6nyem-rP2NmT5SQtlarHdUPcaD3_Iuf9ms-8COP1lHjKNK0d6HEGZWB4mXJTnEbIRa_Uk0mTQVLsVP9HjqxBFGx9MYJ8FGaiT0uUpz0crN4pIkzQ41ArRxGfPY_g8zAGX796IZ0K3lTHER9j3DZBuYA4htxM5m_QL-55u4fEx75MC9vZIiRloWeBybuCLw5d-uwoUtNJoCNiqE99MmEQA_zjIYt048Fn74ULVEPviKntJ1XkPlqSn9WBvJ1qfeZW2x-Q3dsslCToFTEt5xvtqJQpY_90JlbqsE4fD451Y-FRLG-BEj78Byw&h=sS2M7PFJqI-o9MlDSo-9OJ-sA_4Vcs-eSJ1XtVQ44qk response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/b010a783-0770-42dc-b86b-e2802732c68c\",\r\n + \ \"name\": \"b010a783-0770-42dc-b86b-e2802732c68c\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '260' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:32:34 GMT + - Tue, 27 Jun 2023 08:16:47 GMT expires: - '-1' pragma: @@ -6609,24 +5338,44 @@ interactions: - keep-alive ParameterSetName: - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + --parameters --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"deletingResources\"\r\n}" + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-16-17-36ab6\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT20.7486757S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:16:17.2323765Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:16:17.2323765Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '268' + - '2147' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:05 GMT + - Tue, 27 Jun 2023 08:16:47 GMT expires: - '-1' pragma: @@ -6648,43 +5397,128 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource show Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa?api-version=2022-08-01-preview&t=2023-06-27T04%3A30%3A03&c=MIIHADCCBeigAwIBAgITfAMjUKjZhH9c0m_41AAAAyNQqDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMwNTAzMjM0NDU4WhcNMjQwNDI3MjM0NDU4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANaxUeTdEjRAmprW_hZ_axufmznGHp_F2jHumL0E6P3NthWVel75mCwAGTlZLzR8-avs2y8Wq7GSmTrMcCTHL-9ZD32hD_R792DaY5wHqg8OBv-l7rCDCpspPQqldkMibu7tmDfBPjePWsdbr4pU2ZNQ6aJcJ8eA5MjPB811x3Kj46-SqgB_PcljvjkCuG1dLUsfRud5TkrjaE4edu4OWOLOOozg4g6EereVfpqmUEBXUOshM1DaksLL2-LuJ5uJBbJdPcsvRRyO_NLavGyEVYZZCq3IvjXfJmI97TRj-oiKgD28xkZMSZ0owJdqI9cGqqcUqTuR-yk-KNLcQaH-epUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQnUNZ7P8LV6Cj9eMifmvW2qyIVsjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAxB4Efrkau3PtwEZjsCskkafxb30E-P9NCAbbsYaKhO-0Dh1DMUekAsuEenrTYopKPx287BYfszpyDHAWXwE_B6czHRcX4hIevOMm1-11c7NP9Kgk2N4AbeQKXRSgPZAaFvYz3D7HChRwIisE7EtIk5tIOHxYrmRqwE-42VtuZytrxFTiqnMI0hgfGfCqyHsvR9DSAyGBCMqEdo-Q4K_s6Qa0KEtS7r8nJFJEdWJXaPul1-JoIB5EfObiOdjmPMwdYdXTqHDBXYWR1c1BJjypJJg3CbOobeGDvVnGtxDNhKJZNlXREJoInupmvJv_zcvlbJ04GdEjksfYoJhFPDmFc&s=mRoZNTUQF6K2ULtPGV9YSzPDlQoMu6_96AkSP_govaHAqsb-wPMpusnKJ_qI4alVhsCQsq45gWuzX8fy8xYc0qig-vftalXG8kMTgaB2eDSU_7vpR69zVVOyoGsw1rzwNXiqb0mMJqQOV8_ZmtfrF2qX3aiqbTv2oDqowji_TMCgIdnijktx4iRtdmC-onlmG4B1CL4GDl2I8wS8qugviBiUipu4ogWUgtaQ9jsZ_YHHD5h0Bc6ZKV1hp6ZaAi4kFa6YAEyMK75Ch_W1bwuta-VxFGDXCSCSJVAWWYDUnI3Oh4T6W-eIIpNaG3QHpoMXfGBzd9nrlXOLjvy6i-Ezvg&h=sJApeM1y0hz2RAK_I1qlfmQTzIhXh9tlzbCx0oYUrf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources?api-version=2022-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n - \ \"name\": \"7a7f3678-6cad-4e86-acd9-2eb04da4bdaa\",\r\n \"status\": \"succeeded\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources","namespace":"Microsoft.Resources","authorizations":[{"applicationId":"3b990c8b-9607-4c2a-8b04-1d41985facca"},{"applicationId":"94946920-7f9c-4956-93c0-2fcf94608102"}],"resourceTypes":[{"resourceType":"deploymentScripts","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + Asia","Southeast Asia","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Switzerland North","Germany West Central","East US + 2","East US","Central US","North Central US","France Central","UK South","UK + West","Central India","South India","Jio India West","Japan East","Japan West","Korea + Central","North Europe","Norway East","Sweden Central","UAE North","West Central + US","West Europe","West US 2","West US","South Central US","West US 3","South + Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-02-01","2021-05-01","2021-03-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"builtInTemplateSpecs","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"builtInTemplateSpecs/versions","locations":[],"apiVersions":["2022-02-01"],"capabilities":"None"},{"resourceType":"deploymentStacks","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/deploymentStackOperationStatus","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","Jio + India West","South India","Japan East","Japan West","Korea Central","Korea + South","North Europe","Norway East","Poland Central","Qatar Central","Sweden + Central","UAE North","West Central US","West Europe","West US 2","West US","West + US 3","South Central US","South Africa North","Central US EUAP","East US 2 + EUAP","Italy North","Malaysia South"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"},{"resourceType":"tagnamespaces","locations":["East + US","East US 2","East US STG","West Central US","West US","West US 2","West + US 3","Central US EUAP","East US 2 EUAP","Canada Central","Canada East","Central + US","North Central US","South Central US","South Central US STG"],"apiVersions":["2023-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"tagNamespaceOperationResults","locations":[],"apiVersions":["2023-03-01-preview"],"capabilities":"None"},{"resourceType":"tenants","locations":[],"apiVersions":["2020-01-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"operationresults","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"notifyResourceJobs","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01"],"capabilities":"None"},{"resourceType":"tags","locations":[],"apiVersions":["2022-09-01","2019-10-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01"],"capabilities":"SupportsExtension"},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"calculateTemplateHash","locations":[],"apiVersions":["2022-09-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions","locations":[],"apiVersions":["2019-10-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsLocation"},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South","France Central","South + Africa North","UAE North","Australia Central","Switzerland North","Germany + West Central","Norway East","Jio India West","West US 3","Qatar Central","Sweden + Central","Poland Central","Italy North","Malaysia South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2022-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2022-09-01","2021-04-01","2021-01-01","2020-10-01","2020-06-01","2019-09-01","2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"None"},{"resourceType":"validateResources","locations":[],"apiVersions":["2022-06-01"],"capabilities":"None"},{"resourceType":"links","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-05-01"}],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-01-01"}],"capabilities":"None"},{"resourceType":"bulkDelete","locations":[],"apiVersions":["2019-05-01","2019-04-01","2019-03-01","2018-11-01","2018-09-01","2018-08-01","2018-07-01","2018-05-01","2018-02-01","2018-01-01","2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"],"capabilities":"None"},{"resourceType":"changes","locations":[],"apiVersions":["2023-03-01-preview","2022-05-01","2022-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"snapshots","locations":[],"apiVersions":["2022-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"deploymentStacks/snapshots","locations":["East + Asia","Southeast Asia","Australia East","Australia Central","Australia Central + 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland + North","Central US EUAP","Germany West Central","East US 2","East US","Central + US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central + India","West India","Jio India West","South India","Italy North","Japan East","Japan + West","Korea Central","Korea South","Malaysia South","North Europe","Norway + East","Poland Central","Qatar Central","Sweden Central","UAE North","West + Central US","West Europe","West US 2","West US","West US 3","South Central + US","South Africa North"],"apiVersions":["2022-08-01-preview","2021-05-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '260' + - '21180' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:35 GMT + - Tue, 27 Jun 2023 08:16:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -6696,51 +5530,37 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - stack sub create + - resource show Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file --deny-settings-mode - --delete-all --yes + - -n -g --resource-type User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003?api-version=2022-02-01 response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-30-03-db54b\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M20.5906222S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + string: "{\r\n \"location\": \"westus2\",\r\n \"properties\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": + \"User\",\r\n \"createdAt\": \"2023-06-27T08:16:20.0050317Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T04:30:03.1953795Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + \ \"lastModifiedAt\": \"2023-06-27T08:16:20.0050317Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-template-spec000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '1992' + - '630' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:35 GMT + - Tue, 27 Jun 2023 08:16:50 GMT expires: - '-1' pragma: @@ -6766,27 +5586,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource list + - group show Connection: - keep-alive ParameterSetName: - - -g + - -n User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-resource-one000004?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004","name":"cli-test-resource-one000004","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '288' + - '252' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:36 GMT + - Tue, 27 Jun 2023 08:16:50 GMT expires: - '-1' pragma: @@ -6808,33 +5628,59 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource list + - stack sub create Connection: - keep-alive ParameterSetName: - - -g + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"value":[]}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-16-17-36ab6\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT20.7486757S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"rgname\": {\r\n \"value\": \"cli-test-resource-one000004\",\r\n + \ \"type\": \"string\"\r\n },\r\n \"tsname\": {\r\n \"value\": + \"cli-test-template-spec000003\",\r\n \"type\": \"string\"\r\n }\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n + \ \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": + \"none\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T08:16:17.2323765Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:16:17.2323765Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '12' + - '2147' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:36 GMT + - Tue, 27 Jun 2023 08:16:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -6843,43 +5689,78 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"foo": {"type": "string", "defaultValue": + "foo", "metadata": {"description": "description"}}, "bar": {"type": "string", + "defaultValue": "bar", "metadata": {"description": "description"}}}, "functions": + [], "variables": {}, "resources": [], "outputs": {"foo": {"type": "string", + "value": "[parameters(''foo'')]"}, "bar": {"type": "string", "value": "[parameters(''bar'')]"}}}, + "parameters": {}, "actionOnUnmanage": {"resources": "delete", "resourceGroups": + "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", + "denySettings": {"applyToChildScopes": false}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group list + - stack sub create Connection: - keep-alive + Content-Length: + - '847' + Content-Type: + - application/json + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription - level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-27T04:20:02Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T08:16:17.2323765Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T08:16:51.8518677Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3a16%3a52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M cache-control: - no-cache content-length: - - '81798' + - '1178' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:37 GMT + - Tue, 27 Jun 2023 08:16:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -6887,7 +5768,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -6895,43 +5776,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes - User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview - response: - body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-30-03-db54b\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT3M20.5906222S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": - {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": - \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n - \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n - \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n - \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": - {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": - \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n - \ \"lastModifiedAt\": \"2023-06-27T04:30:03.1953795Z\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"initializing\"\r\n}" headers: cache-control: - no-cache content-length: - - '1992' + - '263' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:37 GMT + - Tue, 27 Jun 2023 08:16:51 GMT expires: - '-1' pragma: @@ -6956,212 +5819,78 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - stack sub create Connection: - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - - python-requests/2.31.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://aka.ms/BicepLatestRelease + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - - max-age=0, no-cache, no-store - connection: - - keep-alive + - no-cache content-length: - - '0' + - '268' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:40 GMT + - Tue, 27 Jun 2023 08:17:21 GMT expires: - - Tue, 27 Jun 2023 04:33:40 GMT - location: - - https://downloads.bicep.azure.com/releases/latest + - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e server: - - Kestrel + - Microsoft-HTTPAPI/2.0 strict-transport-security: - - max-age=31536000 ; includeSubDomains - x-response-cache-status: - - 'True' - status: - code: 301 - message: Moved Permanently -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://downloads.bicep.azure.com/releases/latest - response: - body: - string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## - Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files - (bicep-style parameters file). This includes support for:\r\n - support for - expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - - supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group - create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate - bicepparam file from given Bicep file (#10595)\r\n - Buildparams command - vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env - variables in .bicepparam files (#10726)\r\n - Support bicepparam files for - VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - - Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming - modules from ACR (#10747)\r\n* Bicep build command linter provides a structured - output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* - Mark overload matches as PotentialMatches if any argument is of type ''any'' - (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* - Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from - symbol resolution logic (#10626)\r\n* Derive operation return type from operands - (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in - addition to metadata.json (#10860)\r\n* Add intellisense support for param - and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI - by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument - is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries - (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* - Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' - headers: - accept-ranges: - - bytes - connection: - - keep-alive - content-length: - - '41663' - content-type: - - application/octet-stream - date: - - Tue, 27 Jun 2023 04:33:40 GMT - etag: - - '0x8DB75852C02DBEA' - last-modified: - - Sun, 25 Jun 2023 14:05:03 GMT - x-azure-ref: - - 20230627T043340Z-sdfny0pcvh37d63pfyynd8sres000000080000000000pkqr - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": - "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.17.1.54307", "templateHash": "6417493495661768720"}}, "parameters": {"location": - {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": - "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": - "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", - "location": "[parameters(''location'')]", "sku": {"name": "Standard_LRS"}, "kind": - "[parameters(''kind'')]", "properties": {}}]}, "parameters": {"location": {"value": - "westus2"}, "kind": {"value": "StorageV2"}}, "actionOnUnmanage": {"resources": - "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007", - "denySettings": {"applyToChildScopes": false}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - stack sub create Connection: - keep-alive - Content-Length: - - '1067' - Content-Type: - - application/json ParameterSetName: - - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": - false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": - \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": - {\r\n \"value\": \"StorageV2\",\r\n \"type\": \"string\"\r\n - \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": - \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": - [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": - \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2023-06-27T04:29:27.3793176Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:33:44.8250162Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"deletingResources\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8?api-version=2022-08-01-preview&t=2023-06-27T04%3a33%3a45&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KZw6EwNUMkp_KMXtH_qlve9p-KXikwy6rJoTCfeHRsLDrBGC1ZGFew0TPaSgYWSXbKaYm_Cucma2VJHWc7g8zNzHL9drJVv0IyWygCuLJmAkLxXToRDiT6qTai9mVwqKtq7bFHgXs5e9bgZJkGEgdGX2FuWzXKlPjaa19K-wLcooXma5OKQx-llbu54j9az-r3uaE7_SEMjJp2oaZI0KFtkUTPRoi-ewXiSejtjkR3H_Rx_QJrBKVfRlIg0LTXn9fpgSHDwayL60G47nrMHdoJmrXOcReHyOjgWIvh_lPYt3Hwoqa8QhOw_Q43RA40dwJhiO58lV-8Hj16Xmd-xqbQ&h=ARm5-1k1Jt0OpdN4blIoyG4JLRC5Ns6_DD1l-OzDENs cache-control: - no-cache content-length: - - '1353' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:44 GMT + - Tue, 27 Jun 2023 08:17:52 GMT expires: - '-1' pragma: @@ -7176,8 +5905,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -7193,25 +5920,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8?api-version=2022-08-01-preview&t=2023-06-27T04%3A33%3A45&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KZw6EwNUMkp_KMXtH_qlve9p-KXikwy6rJoTCfeHRsLDrBGC1ZGFew0TPaSgYWSXbKaYm_Cucma2VJHWc7g8zNzHL9drJVv0IyWygCuLJmAkLxXToRDiT6qTai9mVwqKtq7bFHgXs5e9bgZJkGEgdGX2FuWzXKlPjaa19K-wLcooXma5OKQx-llbu54j9az-r3uaE7_SEMjJp2oaZI0KFtkUTPRoi-ewXiSejtjkR3H_Rx_QJrBKVfRlIg0LTXn9fpgSHDwayL60G47nrMHdoJmrXOcReHyOjgWIvh_lPYt3Hwoqa8QhOw_Q43RA40dwJhiO58lV-8Hj16Xmd-xqbQ&h=ARm5-1k1Jt0OpdN4blIoyG4JLRC5Ns6_DD1l-OzDENs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n - \ \"name\": \"06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n \"status\": \"initializing\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '263' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:33:44 GMT + - Tue, 27 Jun 2023 08:18:22 GMT expires: - '-1' pragma: @@ -7241,25 +5968,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8?api-version=2022-08-01-preview&t=2023-06-27T04%3A33%3A45&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=KZw6EwNUMkp_KMXtH_qlve9p-KXikwy6rJoTCfeHRsLDrBGC1ZGFew0TPaSgYWSXbKaYm_Cucma2VJHWc7g8zNzHL9drJVv0IyWygCuLJmAkLxXToRDiT6qTai9mVwqKtq7bFHgXs5e9bgZJkGEgdGX2FuWzXKlPjaa19K-wLcooXma5OKQx-llbu54j9az-r3uaE7_SEMjJp2oaZI0KFtkUTPRoi-ewXiSejtjkR3H_Rx_QJrBKVfRlIg0LTXn9fpgSHDwayL60G47nrMHdoJmrXOcReHyOjgWIvh_lPYt3Hwoqa8QhOw_Q43RA40dwJhiO58lV-8Hj16Xmd-xqbQ&h=ARm5-1k1Jt0OpdN4blIoyG4JLRC5Ns6_DD1l-OzDENs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n - \ \"name\": \"06347da7-7f8f-4014-b11a-4dc879e9d7a8\",\r\n \"status\": \"succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '260' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:15 GMT + - Tue, 27 Jun 2023 08:18:52 GMT expires: - '-1' pragma: @@ -7289,43 +6016,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + - --name --location --deployment-resource-group --template-file --deny-settings-mode --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-33-44-d83e0\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT28.6319688S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": - \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storee76pbeua3xpga\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:33:44.8250162Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '1906' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:15 GMT + - Tue, 27 Jun 2023 08:19:23 GMT expires: - '-1' pragma: @@ -7347,50 +6056,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": - \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-04-33-44-d83e0\",\r\n - \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n - \ \"duration\": \"PT28.6319688S\",\r\n \"denySettings\": {\r\n \"mode\": - \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": - {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": - \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n - \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n - \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Storage/storageAccounts/storee76pbeua3xpga\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": - [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n - \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T04:29:27.3793176Z\",\r\n - \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T04:33:44.8250162Z\"\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n - \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"deletingResources\"\r\n}" headers: cache-control: - no-cache content-length: - - '1906' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:16 GMT + - Tue, 27 Jun 2023 08:19:53 GMT expires: - '-1' pragma: @@ -7412,31 +6104,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - stack sub delete + - stack sub create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5?api-version=2022-08-01-preview&t=2023-06-27T08%3A16%3A52&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=u4t7tcrqtPVZktnSdNalfkVcc_GZvZ3oJr8Nhp3vhKXGQ75IHhJUHg-oCsKmiR0bXz5y7lgIROOF4ye8San1BlwUUkgz--eal1b89jHnravxbkEF20UrpaLQbl4i2XMM5VXjUOqLSwqck-av_aSfjWSg3NrsTM4kW2gBsS6FLoL2vwkY77Tn_zsXBXiDY5RWidrnNOjHI6JMsHmbUNMTwp-3_xgKdA2AugQWOVkQl2h7kqrVTxihrl0S488_tVB0r0TJrbVuQJEzLNAYSOgPVWypCg2z-WcZt4LwtuXTPJfaOf2zbT7OkDhk_95JorLdkyNILO1byo5m3F9FrxoB0w&h=hyibdJyUr7SrqN1OlaeqgmKRAC858vv4IU4Qgbgro4M response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n + \ \"name\": \"6195402a-5c97-4254-86d5-5299c87dbeb5\",\r\n \"status\": \"succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '260' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:17 GMT + - Tue, 27 Jun 2023 08:20:23 GMT expires: - '-1' pragma: @@ -7445,10 +6139,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: code: 200 message: OK @@ -7456,183 +6152,212 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - group delete + - stack sub create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes + - --name --location --deployment-resource-group --template-file --deny-settings-mode + --delete-all --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview response: body: - string: '' + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-08-16-51-9022a\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007\",\r\n + \ \"duration\": \"PT3M21.743734S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": + \"foo\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n + \ \"value\": \"bar\"\r\n }\r\n },\r\n \"parameters\": {},\r\n + \ \"resources\": [],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007/providers/Microsoft.Resources/templateSpecs/cli-test-template-spec000003\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one000004\"\r\n + \ }\r\n ],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": + {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n \"createdByType\": + \"User\",\r\n \"createdAt\": \"2023-06-27T08:16:17.2323765Z\",\r\n \"lastModifiedBy\": + \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n + \ \"lastModifiedAt\": \"2023-06-27T08:16:51.8518677Z\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '1991' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:20 GMT + - Tue, 27 Jun 2023 08:20:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - group delete + - resource list Connection: - keep-alive ParameterSetName: - - --name --yes + - -g User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '0' + - '288' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:20 GMT + - Tue, 27 Jun 2023 08:20:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - group delete + - resource list Connection: - keep-alive ParameterSetName: - - --name --yes + - -g User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli-test-cli_test_deployment_stacks-two000007%27&$expand=createdTime%2CchangedTime%2CprovisioningState&api-version=2022-09-01 response: body: - string: '' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:35 GMT + - Tue, 27 Jun 2023 08:20:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - group delete + - group list Connection: - keep-alive - ParameterSetName: - - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 response: body: - string: '' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OULD-REPRO-1-WEU","name":"OULD-REPRO-1-WEU","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dns-dop-rsg","name":"dns-dop-rsg","type":"Microsoft.Resources/resourceGroups","location":"westeurope","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestBugBashRG","name":"pstestBugBashRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Note":"subscription + level deployment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun","name":"tarun","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tarun-canary","name":"tarun-canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel_canary","name":"harshpatel_canary","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantedteststackrg1","name":"dantedteststackrg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-templatespecs-rg","name":"angperez-templatespecs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg1","name":"angperez-stacks-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg2","name":"angperez-stacks-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RG","name":"GokulTest-RG","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTest-RGCanary2","name":"GokulTest-RGCanary2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4","name":"Gokul-TestRG4","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel3","name":"harshpatel3","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn","name":"mslearn","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"o":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted-1234rg1","name":"danted-1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/danted1234rg1","name":"danted1234rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ant-test","name":"ant-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/keyVaultResourceGroup","name":"keyVaultResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn5","name":"chodavid-bicepCdn5","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhsubratestrg","name":"bhsubratestrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bicepbuild","name":"bicepbuild","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg2","name":"test-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg1","name":"test-rg1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-stacks-rg","name":"angperez-stacks-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hpextensible","name":"hpextensible","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-rg-canadaeast","name":"filiz-rg-canadaeast","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-test-rg","name":"shenglol-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"foo":"bar"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps_test_subscription_deployment","name":"ps_test_subscription_deployment","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-2568-RG","name":"TS-SDKTest-2568-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-3011-RG","name":"TS-SDKTest-3011-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-4655-RG","name":"TS-SDKTest-4655-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TS-SDKTest-780-RG","name":"TS-SDKTest-780-RG","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","name":"cli_test_template_specsnpkhcs67yfcx2z32zlpxwyr6stya56htdsgitnjjpetuplvi2peu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:32Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","name":"cli_test_template_specsqezevhjxhxyuf5eytiiebu7ntnhyptjuepydmud7jvnfznv3vlms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-20T19:13:46Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adotfrank-rg","name":"adotfrank-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nullrefrepro","name":"nullrefrepro","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dantestacks","name":"dantestacks","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dante-testing","name":"dante-testing","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DanteDTestRGOnlyiyrmpdcyfhgl6","name":"DanteDTestRGOnlyiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StacksTestRGiyrmpdcyfhgl6","name":"StacksTestRGiyrmpdcyfhgl6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg2","name":"angperez-test-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez-test-rg1","name":"angperez-test-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muhausmantesting","name":"muhausmantesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testIcM","name":"testIcM","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg1","name":"ang-rg1","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg2","name":"ang-rg2","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel","name":"harshpatel","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test-rg","name":"filiz-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/filiz-test","name":"filiz-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","name":"cli_test_deployment_stacksgdoyb6oqjjf7llvccbl7uiaidoic5d5a3leasb4ud5hho6qch","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:18:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","name":"cli_test_deployment_stacks22mxhfop24r67pqybvuqfcp6bexlpzfn4mpqxl2ixfsw5wqnn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:27:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","name":"cli_test_deployment_stacksedvrs7lhimx4g6iwaq3evulkvvtlqbh2h5znk23x6oyogc73i","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T17:41:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","name":"cli_test_deployment_stacksurkjqsrfgnmp5hb323ans2bpipuvms7l5yaxlzads4rbxxngp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T14:31:44Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","name":"cli_test_deployment_stacksm3cms5sq2sos347xkg66k6daclgdkkfkjq4ru6jztoawmrjn7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","name":"cli_test_deployment_stacks7efbyppgialzhqlszfpwwiwaa2w7eb4ao7cf6ghp4xlqlxtyb","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-22T20:12:49Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","name":"cli_test_deployment_stackslrqcpuhsifkln5c7tbwp2pc3544ohcjacvu3wxcczvfvkif2y","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","name":"cli_test_deployment_stackslijrl2yikztpsqui7cyrklw73l6zzxdcmwrvwylne6zc5dzi6","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:52:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","name":"cli_test_deployment_stackshwa3fsjseyi2qhhyfpy2xwgui4cmsu6ug5z4e22lfrvzn5mkh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T17:56:39Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","name":"cli_test_deployment_stacksbd7yqhtygwhjfvhje2k33jwvisrqrdknownf7gkgghxmdlzcj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","name":"cli_test_deployment_stackscvvuymep3xs5vdi7af4ghsbaelecyn3tyquip633gxb2ujbqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T19:25:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","name":"cli_test_deployment_stacksoyuwwolptbl5dzp5jiccb6u4jqcfwy4ofzz2r5gie7jrn7fgy","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:17:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","name":"cli_test_deployment_stackslghrsvxgph4ugwdzgobvc2ah6gulazckc3dg2jcoi7a52yzfk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","name":"cli_test_deployment_stacksr52emj76lo3figtjoynnsk7lbfktwp3y4wvv5igpdt3p2m2fk","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:19:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","name":"cli_test_deployment_stackswfa7gczxzcozjk4f6vvylnjudtoatzpkjxsikkcuwtbilv7qp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T19:29:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","name":"cli_test_deployment_stacksfkf453h7lbsd5mbtyjrp2vbuz5qzyidcbzkykbjrtm66gftfa","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:27Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","name":"cli_test_deployment_stackejj6dtaruk3y44i6pvq5osj7arw2aiyo6rnbqqktto6jpmaejp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T17:53:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","name":"cli_test_deployment_stack7zlhwhjdvqphddtc4zal543i54gazlxqmikdo3uzhbb6d65gps","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-15T19:10:37Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","name":"cli_test_deployment_stack6kffnuk42aacanguwfgdgteyugmvmeysrpu7fh5v7io6vbvy63","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","name":"cli_test_deployment_stackss73tyg6td57jpnui57k5ikhj3eqw4tgowr7el4pupjw2c7sz5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-05T15:53:35Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","name":"cli_test_deployment_stackskzho2wispnfdriylvz6h6c3bikkhyuqgioqcoo4xootuiy2pe","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","name":"cli_test_deployment_stackvl4rgq4rwtv7t4dgfe2q4ebtxz7xi6r7ezif3f2fp7k5itnw7o","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:46:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","name":"cli_test_deployment_stackvna5a2negmadlxngegguazzv5iq2bxzk5lxnyeaxyenjngxbz4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T20:49:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","name":"cli_test_deployment_stacksbogrdivds5fzas5rhs3yscsssefa7nu2rpnb2654nnb7vnqvt","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:09:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","name":"cli_test_deployment_stackszx3nmndhn7ss2dpzvophxv5hmfqh3kwf4cn5nkfyinqxne2de","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-31T21:15:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","name":"cli_test_deployment_stacks3qoopf63q7hfhda7jhkvdccq55gqamwegz62hgswzhowbrkp4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:06:14Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","name":"cli_test_deployment_stackszfo4cmvgbq2yaelkogayikxvaxxkkwnd2uri5oi7kudysnbb4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T17:09:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harshpatel2","name":"harshpatel2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7866","name":"ps7866","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","name":"cli_test_deployment_stacksxp7ecvpgn5xyndnewdr3ytooudlyaahzosiq2276qoyzwao7z","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","name":"cli_test_deployment_stacksve4qoz2eg63px43me4iqz7bp7r3q7umsw2luty3brobozxogn","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:07:36Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","name":"cli_test_deployment_stacks4zpm55i6rwytsnrcmdkye4iodsad372bxc6zw3eaqo2tzz2p3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","name":"cli_test_deployment_stacksslyyhquklzkcddasmif7zf5elsyolvq2znikh5erb4oofa5h5","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:13:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","name":"cli_test_deployment_stack2kjnrpo5gcth7n24wq7jl6jkd4qo5qtggrfmpk23w4wjukcsmz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-27T17:16:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_rg","name":"stuartko_rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","name":"cli-test-resource-onen4ytj7yzoebeqrf5yftftj4sjahqet2dxdawbmw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","name":"cli-test-resource-twoqipw52dulekd3qdoyzeq7edws5qgaqmxqecwrsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","name":"cli-test-resource-three7yjf3zzjny7g6ufpvo5aloqb2g4hnbjrofhsh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trackedHP","name":"trackedHP","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","name":"cli-test-resource-one3qukzninsre7gakhzpgynrycmdbheazhbxdzw2g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","name":"cli-test-resource-two7tpdv5s5tgalentu7xorxiubxuffpc5l6nw57qy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","name":"cli-test-resource-threea3d5r7nzhkvoixzb5sjpipo3w7rlag73lec7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","name":"cli-test-cli_test_deployment_stacks-two5g24wmoef6ewkt23fevvo","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","name":"cli-test-resource-onef2lphlficcocjcbxq5eyu4l2w6beqeyhsnjhrdv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","name":"cli-test-resource-twodabxt6g3a26gzarjwnsbz3uxno2ozxubqwltabe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","name":"cli-test-resource-threezqcaypl3ofrdoozl5ofhddgkqqt2belptgfqh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","name":"cli-test-cli_test_deployment_stacks-twonq327r37e3w25eu3jivzv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","name":"cli-test-resource-one3xdlub7rmcpfaajwrreujtuxavtrubkkyekhhij","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","name":"cli-test-resource-twok5rfg7m7sls5ez2sezgzkwracelp734h45ud6di","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","name":"cli-test-resource-threekbjij5yotjb33nuv3qew77setbhogsuxre7hm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","name":"cli-test-cli_test_deployment_stacks-twoupr5yxpsyjyq4irp2yioz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","name":"cli-test-resource-two6u2nqhw6jus43pfkv4jdesy2qhqv2ftaf6zq22a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","name":"cli-test-resource-threeynixjm6yfumpo4o3z5mdpnf6ljdbjcasg7zbr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psBicepTest","name":"psBicepTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","name":"cli_test_deployment_stackscqfklc2h43lmmmqa6cfsxln2rzvkqxbzv3pak43zmthoi7cg7","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-10-05T15:41:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","name":"cli-test-resource-oneyppnh72zvbwsxnto2vu4t6zx5koej2sfk4bvf3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","name":"cli-test-resource-twosiimb77a6glwjmg2colo2jw5zy2hnt5amj336ex","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","name":"cli-test-resource-threerlz2cytji522ssba2duhckmn3iisoskbhlj4n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","name":"cli-test-cli_test_deployment_stacks-twofb6rmuejolcwwvtgmhptx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","name":"cli-test-resource-ones6k25azcqvlhdznfxg4czp533igf5gmhfpt3h2z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","name":"cli-test-resource-twowgwfzsa7qcssbvtnrmeidpd73ru6i5fu2wa5kz2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","name":"cli-test-resource-threel4oet364b6mn76vetlcdlibqbzwbn4jl7zvfx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","name":"cli-test-cli_test_deployment_stacks-twocniw2b2nis2vx44lmi6lz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","name":"cli-test-resource-twomruuvwqi6oivnz4scscicjiwz4hv5cxacneq6rh","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","name":"cli-test-resource-threejs677nudu33wu3cyp3m7iytpg7xryullpncjf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps4737","name":"ps4737","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chodavid-bicepCdn4","name":"chodavid-bicepCdn4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","name":"cli-test-resource-twokbjmj4fqqdjrrzgt7ngate7e6m2mhrzmffygj2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","name":"cli-test-resource-threepjpvtybrbcp6elvs3fxdtbfr2kiqlbfdxvkzd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","name":"cli-test-resource-twoy4v4lfq6rerm7pav3it35dwl5rpwqqmesnymprc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","name":"cli-test-resource-threeaina3qkvuqtzmip4mu2trvjd57eejjh3shosy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","name":"cli-test-resource-twodzqqrlhdhcclx2o454ewnk3ikbklbdouyqszfi7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","name":"cli-test-resource-threes2mj3oglgi3yeecngiiuwwynl3locd3epbif5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","name":"cli-test-resource-twotg4xlvuqlv2aq2fvyyo5rtwktzof2n7a23pcvpc","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","name":"cli-test-resource-threeaiqocuxuyleidfoq4rli6vhfrp5qi5uhm6por","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","name":"cli-test-resource-one72a4bkszpojj5yj6bh3w7z53pci5xx35td45cpz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","name":"cli-test-resource-twowputu4dcob22cxuszt6x2ao7td5mtlcduxapptq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","name":"cli-test-resource-threeb6gfdxmamw6a7n3ivqgzqizvu74seebvzxaqm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","name":"cli-test-cli_test_deployment_stacks-twoup54poyi422jwoinm5yzb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","name":"cli-test-resource-twocx74jtv6geoiz6ged5nilkfzzsoklvswyt7dx3w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","name":"cli-test-resource-threevcsu6tklkw5wo3v7mp2vxb3qyya2grkxdar7j","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","name":"cli-test-cli_test_deployment_stacks-twoixod65ohcgp7em3k5j5f7","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageAccountTest","name":"storageAccountTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migration_tests","name":"stuartko_migration_tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/stuartko_migrationtests","name":"stuartko_migrationtests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps9769","name":"ps9769","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps147","name":"ps147","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6367","name":"ps6367","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7960","name":"ps7960","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5934","name":"ps5934","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3764","name":"ps3764","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","name":"cli-test-resource-twoy7mihfwfxfcst6cqqab4pmmg4vlmrzwsrguxv5g","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","name":"cli-test-resource-threebgddl6jlhvoth7iogei6j4nq4wyeruq7cxxdg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","name":"cli-test-cli_test_deployment_stacks-twoxcqfldkbzl5g3v36do4lr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","name":"cli-test-cli_test_deployment_stacks-twolpwqdohhmfvicmbxgb25a","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","name":"cli-test-cli_test_deployment_stacks-two6ag6wpd7qo7mdhhjs2wl2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","name":"cli-test-cli_test_deployment_stacks-twox4fz56oyupizzqe3fof4u","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","name":"cli-test-cli_test_deployment_stacks-twospjckbzmk3lkct7p36plb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","name":"cli-test-cli_test_deployment_stacks-twogdqlqabha4upyx7ip2ycw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","name":"cli-test-cli_test_deployment_stacks-two2hpliyuimjaoegmwazwad","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","name":"cli-test-resource-onemizu5d65rmygbuzhu2rkrirbpmpvpviwwirdg3b","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","name":"cli-test-resource-twomhpyskemwx5z2xtsnm2byvbferbmcvhkmp5ztmb","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","name":"cli-test-resource-threegstrm7mrxknyiflutabdf7hj53t5tbypulfrf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","name":"cli-test-resource-onevufdrwrfc6xsnxmtacg76xuu4uyuadhunvcwzru","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","name":"cli-test-resource-twofphyhx277gxikawmtgsasx4rrayx2jk4t3im3kl","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","name":"cli-test-resource-three2s5rzswo5fg26daiesvfdilklquseyvk2vrsy","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","name":"cli-test-resource-onerben4mtwapsuteft42wiqes34hloazszrib6h2w","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","name":"cli-test-resource-twovzzf73dlo67jlorugh4c7dx5jw6xylflgoqwn7n","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","name":"cli-test-resource-twoejgifxclqzq47rcwte7wcyllfk23drsqwazs5c2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","name":"cli-test-resource-three4umj4r2yxltfeq4mmq77h43rcrmkvjrm633ae","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","name":"cli-test-cli_test_deployment_stacks-twoyoqtqxvv44jl47ezs6gya","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","name":"cli-test-resource-twodrktubwz4gswsbsd3stxh6bocr6uwls2o66e6jr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","name":"cli-test-resource-threewta726jyzgfw5zkp7rcbcrsib7wtzkq6jhdwx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","name":"cli-test-cli_test_deployment_stacks-twosmiudpkorb5rkxiore36x","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","name":"cli_test_deployment_stackshz4aqxj4p4nhq6vi7uaeawgwq4nqo266ux7yqxtlfgqj7eis4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T13:50:54Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","name":"cli-test-resource-oneogbofrqnwa525ptwquuputz5k6g4adi7qczik6q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","name":"cli-test-resource-twovogufniwoaesgkbpi6rn5qav7uxvmmvktrapbnv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","name":"cli-test-resource-twoniu265op3264k373r5mz7quvu6kkgrxm762jmxx","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","name":"cli-test-resource-threey7vdz7oyxkympdkuy7lq73lkd3hvsb6fmxic2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","name":"cli-test-cli_test_deployment_stacks-twoglncu3yrj3k4r5jussgmd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","name":"cli-test-resource-twollafko2553pobetiefftokxjil7gjjoc4hadgyw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","name":"cli-test-resource-threeevhucqtpajzvq3uwtc5ayimospmugbw5dgk5f","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","name":"cli_test_deployment_stacks57fj3mkge2mk5d5kufrhjwliwhhpeb3vgwpz55kpweb6jnekh","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-14T14:41:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","name":"cli-test-cli_test_deployment_stacks-tworgrrk7257scfgu7ytadg6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","name":"cli-test-resource-two4tuw2id4ceqlc2445qxvs5revg3ymmvnfevnqzr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","name":"cli-test-resource-three5ikrvtw3qvhtlxpokovmviig6dbzgkfredab5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","name":"cli-test-resource-onew4h5kz7nfjnej4fkbubug7lbxkzcuppprgaajze","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","name":"cli-test-resource-twouy7ad2gpgwfdy6pjs5fgm7pnkq2juccbxanssso","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","name":"cli-test-resource-threedajvrvod3mhwxvzosuhajhwpzcmnka6bjoipq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild2_westus2","name":"MC_harshpatel_bicepbuild2_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild2","tags":{"aks-managed-cluster-name":"bicepbuild2","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_harshpatel_bicepbuild4_westus2","name":"MC_harshpatel_bicepbuild4_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/harshpatel/providers/Microsoft.ContainerService/managedClusters/bicepbuild4","tags":{"aks-managed-cluster-name":"bicepbuild4","aks-managed-cluster-rg":"harshpatel"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asilverman-rg","name":"asilverman-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","name":"cli-test-resource-one7yr4xcklr54mxrl54i6i6hksjftg4bxspwjv7gq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","name":"cli-test-resource-twoamrxut2mddazlfzdcey2pdgrq22lbhxdbpb6xj3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","name":"cli-test-resource-threehk5li3nudwyzqpe764f7r7g7vy4px3f5ug35m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","name":"cli-test-cli_test_deployment_stacks-two4j3cs52wagtxhj4ih6ilp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","name":"cli-test-cli_test_deployment_stacks-twomop5fw7qbzxl7zjb7e7tt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","name":"cli-test-resource-onerqxjwjlfys6rkpgjqc5lzthiprlvd56hn3don53","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","name":"cli-test-resource-twof3knevszqcbd7ynvsysjwdkkddbeanz7edjllcw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","name":"cli-test-resource-threeta7s3tuximmn5ctc73qmukfyys67nlvs6vk36","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/angperez","name":"angperez","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","name":"cli-test-resource-oneucs3ynmhwrsnmdqivizgsevv56p74aowxukmml2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","name":"cli-test-resource-twohhi5isdwv33ymahwfa2sopuhp7u4m2g5sitdo5o","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","name":"cli-test-resource-three2nzbaad7jqw43edfxnvsmy2xjlzmjr65csfzw","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","name":"cli-test-resource-twocp7ih6vvcif2jxo6pk6czboywqi6c3zwa63hw5i","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","name":"cli-test-resource-threecwlazc3pv2mcfe2yrjlczwmgza47c3enestnf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","name":"cli-test-resource-onepafnk3igvqktjxdn2oulze653ppkuoqokos5ke2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","name":"cli-test-resource-twoc7h6rspivlh2yahkotavzvcmsmvp626uo7snpc6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","name":"cli-test-resource-threeuceqv47bkgvxq6pbfocot6wn2rdou4enrki73","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","name":"cli-test-resource-twouusyxbydojau4ehldhi642yolgk6lncyqy43x2q","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","name":"cli-test-resource-threecu4a23adigjxldz4773puf4ba2h7dgnvqiuw6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","name":"cli-test-resource-oneuanrpronm4zi553342rr2pz3fw6parawbbfrlig","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","name":"cli-test-resource-twoxvjn34bu222jv6r5lb3hlrchjha6g3hvxvos2xd","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","name":"cli-test-resource-threefq774oxrsre5ilk2out6eemslf3ujj53nrxjs","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","name":"cli-test-resource-oneysdxrj34nz4l564jqxiwcollgxla4ivqbxhhm5z","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","name":"cli-test-resource-twozo7homr7kjyv7pqbrx63p2vhqixfehj2y4jx6g2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","name":"cli-test-resource-three74fccrmvbxyymxicyad6cx6awxq5cwrx22xa5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","name":"cli-test-resource-one63issbhgvbpmrxgxdylst7ve2xp6wdra7vcmidq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","name":"cli-test-resource-twotudbieqit7zbnrqvyk475n6pfghmn2kc5hlxbnr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","name":"cli-test-resource-threetkmxsxwq6chowfpameha7d2sucai2m43veelq","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","name":"cli_test_deployment_stacksozcc5widnficc5srqzwc6mdu5bgvmgsxc5nq5blpfg7j3z7xz","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group","date":"2023-06-14T20:57:08Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","name":"cli-test-resource-twoepouwlezq4gmhy4muhgcp7uqsjs6mzxzzm2jitt","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","name":"cli-test-resource-threeot7mebvlpvl6r2764657qjspp6tilu7hrsr7m","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","name":"cli-test-resource-onedao7noxg7bruwgopwksnu6lycj22gd7tsqhwso5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","name":"cli-test-resource-twocybmub3nhqgc4vryorwzngfb3rd2ujhcmd5awpf","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","name":"cli-test-resource-threeoydl6xbyjcabjywpofan2wkrbkp4durccckqv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","name":"cli-test-resource-onesz3mgumyzi7i3iwxj2hxnxcvyjsptc5mvqz64he","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","name":"cli-test-resource-twopvoe2m4g25ly7tb4ddavzray52a4uhkmwcei2i5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","name":"cli-test-resource-three6ntridw67vehwdxz3hm27nr5ona5znxtwwgoe","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","name":"cli-test-resource-onevvp7remqrq5n34xxxgmwhumsqtbwdfwhujolisa","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","name":"cli-test-resource-twosbvfcmlqyzmd76bgseb2eplphbivjegcklxplle","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","name":"cli-test-resource-threew2jocixey3ebdv3usir76kybuigl6j3sjyjva","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","name":"cli_test_deployment_stacksasvphn5cbmni7o242mtufhyyw5xp76nj5purfl3nh4coz7svf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T16:04:29Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","name":"cli_test_deployment_stacksfo62ytlff4ie47hfehpjfwlnljk3sfzfq3lvk4egohtjq3ruq","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-21T21:37:45Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","name":"cli-test-resource-twofhywlb2co6fmudhks47c3e7xdqbojtlt2uodqw2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","name":"cli-test-resource-threentj7wd4gg44vok53thgi5ptdmuhmoiq6rogri","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","name":"cli-test-resource-onenlyva5sj4qkypzqevjiv6zkjiqcyvjvzh6gvwhr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","name":"cli-test-resource-twontainw4gsqn6hneqtsuoovttkv2p3vggzwu3il5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","name":"cli-test-resource-threej53qzm7dxdm54p46xytzdty4ouxsf7g6p3glr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","name":"cli-test-resource-one4bff6wgvapvmtwysfj6wu4qsfywb265dh5mlnke","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","name":"cli-test-resource-twovg6gle4czkpl3flaohujphxl65aw27fnzr44af6","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","name":"cli-test-resource-threeagitg2ewfesia4ux5zwoz2tqe3ytoshctkubp","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","name":"cli-test-resource-onemyzyimniora7mrjotn4tptq5hrgcqd2efwcv74c","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","name":"cli-test-resource-two6r4vxdviqmyyfh3rciylw7and5iyv5ybyafnfvv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","name":"cli-test-resource-three6ttmsialsiay77ywcsmkmkttjabyd4brlx5z5","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","name":"cli-test-resource-two6tszc3knkikxhefafvirnablmaszvgk3v6pv6zn","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","name":"cli-test-resource-threeea72tjae3hfxk3jfng3nixmdoywtitek6hbrm","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","name":"cli-test-resource-oneewtfqsxuguo4o2ksbmjtek5lzear36ycb4xvdq3","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","name":"cli-test-resource-two5fap5hq4wjvmjghfcjbivn2mkgka7pe5xnukdmr","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","name":"cli-test-resource-threeangymzv5eo3e2454fzuaf43276wosknu2lpnz","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","name":"cli-test-resource-onepgy5n67cblof3tdjee56vizuzb67cglou4kmlsk","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","name":"cli-test-resource-twobwd2fr5gr2ywv7evyj37a7t5jiccixsm23nabap","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","name":"cli-test-resource-three7uxf3ertdgpsh4p7zaa2u4gnwn4ntaurzxbbv","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","name":"cli-test-resource-twop3iuunphfiajrpk2wnrnzkya7r4v2ggb56obllg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","name":"cli-test-resource-threea3py23jzb2vyozj3at6oceqierjs5fkhitym2","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj","name":"cli_test_deployment_stacksvb6jqkfh56nkon4zk2ih3jcqf6somhx6eulz7kyyxfkkr3zgj","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_resource_group_with_bicep","date":"2023-06-27T07:49:38Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001","name":"cli_test_deployment_stacks000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_create_deployment_stack_subscription","date":"2023-06-27T08:07:46Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-two000005","name":"cli-test-resource-two000005","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-resource-three000006","name":"cli-test-resource-three000006","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-two000007","name":"cli-test-cli_test_deployment_stacks-two000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCli5","name":"TemplateSpecsCli5","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps3636","name":"ps3636","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldTest","name":"OuldTest","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GokulTestDeleteAfter","name":"GokulTestDeleteAfter","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","name":"cli-test-cli_test_deployment_stacks-twood2qwrtonokeeed3cy5tw","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","name":"cli-test-cli_test_deployment_stacks-twobrfixmrbx6xwshkbk3mbk","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg4","name":"ang-rg4","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-child","name":"ang-child","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg6","name":"ang-rg6","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg5","name":"ang-rg5","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ang-rg3","name":"ang-rg3","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '82950' + content-type: + - application/json; charset=utf-8 date: - - Tue, 27 Jun 2023 04:34:50 GMT + - Tue, 27 Jun 2023 08:20:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - --name --yes User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-cli_test_deployment_stacks-two000007?api-version=2022-09-01 response: body: string: '' @@ -7642,17 +6367,19 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:35:05 GMT + - Tue, 27 Jun 2023 08:20:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 202 message: Accepted @@ -7672,7 +6399,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7682,11 +6409,11 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:35:21 GMT + - Tue, 27 Jun 2023 08:20:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 pragma: - no-cache strict-transport-security: @@ -7712,7 +6439,7 @@ interactions: User-Agent: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6Mnw5RjBDRTVBOTk2MzY4RTQ0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRURVNUOjJEQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZTVEFDS1M6MnwzNDA1QjM3MEQwQjY4MDhELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2022-09-01 response: body: string: '' @@ -7722,7 +6449,7 @@ interactions: content-length: - '0' date: - - Tue, 27 Jun 2023 04:35:36 GMT + - Tue, 27 Jun 2023 08:20:42 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription_with_bicep.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription_with_bicep.yaml new file mode 100644 index 00000000000..32540248013 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_deployment_stack_subscription_with_bicep.yaml @@ -0,0 +1,934 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://aka.ms/BicepLatestRelease + response: + body: + string: '' + headers: + cache-control: + - max-age=0, no-cache, no-store + connection: + - keep-alive + content-length: + - '0' + date: + - Tue, 27 Jun 2023 07:45:09 GMT + expires: + - Tue, 27 Jun 2023 07:45:09 GMT + location: + - https://downloads.bicep.azure.com/releases/latest + pragma: + - no-cache + request-context: + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 + server: + - Kestrel + strict-transport-security: + - max-age=31536000 ; includeSubDomains + x-response-cache-status: + - 'True' + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://downloads.bicep.azure.com/releases/latest + response: + body: + string: '{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737","assets_url":"https://api.github.com/repos/Azure/bicep/releases/108051737/assets","upload_url":"https://uploads.github.com/repos/Azure/bicep/releases/108051737/assets{?name,label}","html_url":"https://github.com/Azure/bicep/releases/tag/v0.18.4","id":108051737,"author":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"node_id":"RE_kwDOD7S9ks4GcL0Z","tag_name":"v0.18.4","target_commitish":"main","name":"v0.18.4","draft":false,"prerelease":false,"created_at":"2023-06-09T18:36:32Z","published_at":"2023-06-12T19:58:40Z","assets":[{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091358","id":112091358,"node_id":"RA_kwDOD7S9ks4GrmDe","name":"Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28497662,"download_count":5,"created_at":"2023-06-09T23:58:25Z","updated_at":"2023-06-09T23:58:35Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091322","id":112091322,"node_id":"RA_kwDOD7S9ks4GrmC6","name":"Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28903698,"download_count":2,"created_at":"2023-06-09T23:58:06Z","updated_at":"2023-06-09T23:58:17Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.linux-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091408","id":112091408,"node_id":"RA_kwDOD7S9ks4GrmEQ","name":"Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28796451,"download_count":2,"created_at":"2023-06-09T23:59:12Z","updated_at":"2023-06-09T23:59:22Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091386","id":112091386,"node_id":"RA_kwDOD7S9ks4GrmD6","name":"Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29237103,"download_count":3,"created_at":"2023-06-09T23:58:53Z","updated_at":"2023-06-09T23:59:04Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.osx-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091282","id":112091282,"node_id":"RA_kwDOD7S9ks4GrmCS","name":"Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":28775529,"download_count":4,"created_at":"2023-06-09T23:57:48Z","updated_at":"2023-06-09T23:57:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-arm64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091256","id":112091256,"node_id":"RA_kwDOD7S9ks4GrmB4","name":"Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":29101245,"download_count":17,"created_at":"2023-06-09T23:57:30Z","updated_at":"2023-06-09T23:57:41Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.CommandLine.win-x64.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091056","id":112091056,"node_id":"RA_kwDOD7S9ks4Grl-w","name":"Azure.Bicep.Core.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":603821,"download_count":3,"created_at":"2023-06-09T23:55:25Z","updated_at":"2023-06-09T23:55:25Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091058","id":112091058,"node_id":"RA_kwDOD7S9ks4Grl-y","name":"Azure.Bicep.Core.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":196654,"download_count":3,"created_at":"2023-06-09T23:55:27Z","updated_at":"2023-06-09T23:55:27Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Core.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091063","id":112091063,"node_id":"RA_kwDOD7S9ks4Grl-3","name":"Azure.Bicep.Decompiler.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":100096,"download_count":3,"created_at":"2023-06-09T23:55:29Z","updated_at":"2023-06-09T23:55:29Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091065","id":112091065,"node_id":"RA_kwDOD7S9ks4Grl-5","name":"Azure.Bicep.Decompiler.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24618,"download_count":2,"created_at":"2023-06-09T23:55:30Z","updated_at":"2023-06-09T23:55:31Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.Decompiler.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091067","id":112091067,"node_id":"RA_kwDOD7S9ks4Grl-7","name":"Azure.Bicep.MSBuild.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":45858,"download_count":4,"created_at":"2023-06-09T23:55:32Z","updated_at":"2023-06-09T23:55:32Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091070","id":112091070,"node_id":"RA_kwDOD7S9ks4Grl--","name":"Azure.Bicep.MSBuild.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":6941,"download_count":3,"created_at":"2023-06-09T23:55:34Z","updated_at":"2023-06-09T23:55:34Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.MSBuild.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091072","id":112091072,"node_id":"RA_kwDOD7S9ks4Grl_A","name":"Azure.Bicep.RegistryModuleTool.0.18.4.nupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":24482250,"download_count":4,"created_at":"2023-06-09T23:55:35Z","updated_at":"2023-06-09T23:55:44Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.nupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091083","id":112091083,"node_id":"RA_kwDOD7S9ks4Grl_L","name":"Azure.Bicep.RegistryModuleTool.0.18.4.snupkg","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":213345,"download_count":4,"created_at":"2023-06-09T23:55:46Z","updated_at":"2023-06-09T23:55:46Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/Azure.Bicep.RegistryModuleTool.0.18.4.snupkg"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091091","id":112091091,"node_id":"RA_kwDOD7S9ks4Grl_T","name":"bicep-langserver.zip","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":25890314,"download_count":18,"created_at":"2023-06-09T23:55:50Z","updated_at":"2023-06-09T23:55:59Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-langserver.zip"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090863","id":112090863,"node_id":"RA_kwDOD7S9ks4Grl7v","name":"bicep-linux-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58769360,"download_count":81,"created_at":"2023-06-09T23:52:46Z","updated_at":"2023-06-09T23:53:07Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090942","id":112090942,"node_id":"RA_kwDOD7S9ks4Grl8-","name":"bicep-linux-musl-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59000660,"download_count":817,"created_at":"2023-06-09T23:53:19Z","updated_at":"2023-06-09T23:53:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-musl-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090845","id":112090845,"node_id":"RA_kwDOD7S9ks4Grl7d","name":"bicep-linux-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59164755,"download_count":11216,"created_at":"2023-06-09T23:52:11Z","updated_at":"2023-06-09T23:52:33Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-linux-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091003","id":112091003,"node_id":"RA_kwDOD7S9ks4Grl97","name":"bicep-osx-arm64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":58985936,"download_count":322,"created_at":"2023-06-09T23:54:19Z","updated_at":"2023-06-09T23:54:40Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-arm64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112090974","id":112090974,"node_id":"RA_kwDOD7S9ks4Grl9e","name":"bicep-osx-x64","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":59405936,"download_count":1137,"created_at":"2023-06-09T23:53:50Z","updated_at":"2023-06-09T23:54:11Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-osx-x64"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091019","id":112091019,"node_id":"RA_kwDOD7S9ks4Grl-L","name":"bicep-setup-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":25091976,"download_count":2242,"created_at":"2023-06-09T23:54:51Z","updated_at":"2023-06-09T23:55:00Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-setup-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091124","id":112091124,"node_id":"RA_kwDOD7S9ks4Grl_0","name":"bicep-win-arm64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58826040,"download_count":4,"created_at":"2023-06-09T23:56:09Z","updated_at":"2023-06-09T23:56:30Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-arm64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091037","id":112091037,"node_id":"RA_kwDOD7S9ks4Grl-d","name":"bicep-win-x64.exe","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":58699000,"download_count":11634,"created_at":"2023-06-09T23:55:02Z","updated_at":"2023-06-09T23:55:23Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/bicep-win-x64.exe"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091217","id":112091217,"node_id":"RA_kwDOD7S9ks4GrmBR","name":"vs-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":46919301,"download_count":8,"created_at":"2023-06-09T23:57:03Z","updated_at":"2023-06-09T23:57:21Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vs-bicep.vsix"},{"url":"https://api.github.com/repos/Azure/bicep/releases/assets/112091185","id":112091185,"node_id":"RA_kwDOD7S9ks4GrmAx","name":"vscode-bicep.vsix","label":"","uploader":{"login":"Usman0111","id":27924869,"node_id":"MDQ6VXNlcjI3OTI0ODY5","avatar_url":"https://avatars.githubusercontent.com/u/27924869?v=4","gravatar_id":"","url":"https://api.github.com/users/Usman0111","html_url":"https://github.com/Usman0111","followers_url":"https://api.github.com/users/Usman0111/followers","following_url":"https://api.github.com/users/Usman0111/following{/other_user}","gists_url":"https://api.github.com/users/Usman0111/gists{/gist_id}","starred_url":"https://api.github.com/users/Usman0111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Usman0111/subscriptions","organizations_url":"https://api.github.com/users/Usman0111/orgs","repos_url":"https://api.github.com/users/Usman0111/repos","events_url":"https://api.github.com/users/Usman0111/events{/privacy}","received_events_url":"https://api.github.com/users/Usman0111/received_events","type":"User","site_admin":false},"content_type":"application/vsix","state":"uploaded","size":38517198,"download_count":172,"created_at":"2023-06-09T23:56:41Z","updated_at":"2023-06-09T23:56:55Z","browser_download_url":"https://github.com/Azure/bicep/releases/download/v0.18.4/vscode-bicep.vsix"}],"tarball_url":"https://api.github.com/repos/Azure/bicep/tarball/v0.18.4","zipball_url":"https://api.github.com/repos/Azure/bicep/zipball/v0.18.4","body":"## + Highlights\r\n\r\nBicep team:\r\n* Support for `.bicepparam` parameters files + (bicep-style parameters file). This includes support for:\r\n - support for + expressions using any functions in the `sys` namespace (i.e. `uniqueString()`)\r\n - + supported natively by Az CLI and Azure PowerShell (i.e. `az deployment group + create -f ./main.bicep -p params.bicepparam ...`)\r\n - CLI command to generate + bicepparam file from given Bicep file (#10595)\r\n - Buildparams command + vscode extension (#10738)\r\n - LoadEnvironmentVariable to enable using env + variables in .bicepparam files (#10726)\r\n - Support bicepparam files for + VS Code deploy bicep file action (#10593)\r\n - Bicepparam decompiler (#10785)\r\n - + Bicep param decompile vscode action (#10921)\r\n* Provide help text when consuming + modules from ACR (#10747)\r\n* Bicep build command linter provides a structured + output (#10672)\r\n\r\n\r\n## Bug fixes and features\r\n\r\nBicep team:\r\n* + Mark overload matches as PotentialMatches if any argument is of type ''any'' + (#10659)\r\n* Provide completions for unknown keys on dictionaries (#10927)\r\n* + Fix CLI restore --force (9580) (#10817 and #10829)\r\n* Remove metadata from + symbol resolution logic (#10626)\r\n* Derive operation return type from operands + (#10545)\r\n* [Bicep Public Registry] Allow specifying metadata in bicep in + addition to metadata.json (#10860)\r\n* Add intellisense support for param + and output values (#10680)\r\n* MAINT: Run tests in parallel to speed up CI + by 0.5x (#10716)\r\n* Mark overload matches as PotentialMatches if any argument + is of type ''any'' (#10659)\r\n* Provide completions for unknown keys on dictionaries + (#10927)\r\n* Fix CLI restore --force (9580) (#10817)\r\n\r\n@dciborow\r\n* + Fixes to BRM README Generation (#10471)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/Azure/bicep/releases/108051737/reactions","total_count":15,"+1":2,"-1":0,"laugh":0,"hooray":7,"confused":0,"heart":4,"rocket":2,"eyes":0},"mentions_count":1}' + headers: + accept-ranges: + - bytes + connection: + - keep-alive + content-length: + - '41663' + content-type: + - application/octet-stream + date: + - Tue, 27 Jun 2023 07:45:09 GMT + etag: + - '0x8DB75852C02DBEA' + last-modified: + - Sun, 25 Jun 2023 14:05:03 GMT + x-azure-ref: + - 20230627T074509Z-271rkpnvn555mcddv8v2gqad0n00000007kg000000015yq9 + x-cache: + - TCP_HIT + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.17.1.54307", "templateHash": "991381235984945273"}}, "parameters": {"location": + {"type": "string", "defaultValue": "centralus"}, "storageAccountName": {"type": + "string", "defaultValue": "uniquestorage001", "maxLength": 24, "minLength": + 3}}, "resources": [{"type": "Providers.Test/statefulResources", "apiVersion": + "2014-04-01", "name": "[parameters(''storageAccountName'')]", "location": "[parameters(''location'')]"}], + "outputs": {"storageId": {"type": "string", "value": "[resourceId(''Providers.Test/statefulResources'', + parameters(''storageAccountName''))]"}}}, "parameters": {}, "actionOnUnmanage": + {"resources": "detach", "resourceGroups": "detach"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1064' + Content-Type: + - application/json + ParameterSetName: + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {},\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T07:45:13.3029472Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:45:13.3029472Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aba74561-4f29-4780-8ff6-9f5252b727dd?api-version=2022-08-01-preview&t=2023-06-27T07%3a45%3a14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=PtOc6bvQz-plSsfYSsp49BlYDLrJGH_30lJWhGXOMcJKd-_LV5h4DNJ7_odQ-r3C4mNDi-c6ZQBiWMBTe7o3MtYwFDTk-SJCn23LqChPP9CC4-JcZQpsA_s1U-9Vfi8bLNaGRzQMDBn-r3a64DeQqp64HSCgtJiDRFCpcl30btw2DC-AEcaN8TAFsntS0MudVMnMBhy4GN2QXdqUYBBja-ao9jJPdsKuS51tbuKVLGzsG_SAxrJOON8z3CoSwszJBUxWSHFYaciD-6HaU-5VskFLGve1PSpR1aE1Fcb076D1GWaguraDo6B5fWJzFMnHdd-vu2ENfa8YvNvSXl3agg&h=lb4B3X5UbH4qv_wpLasgQCQryqoQiOLoi3HfYtAw_Sg + cache-control: + - no-cache + content-length: + - '1165' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aba74561-4f29-4780-8ff6-9f5252b727dd?api-version=2022-08-01-preview&t=2023-06-27T07%3A45%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=PtOc6bvQz-plSsfYSsp49BlYDLrJGH_30lJWhGXOMcJKd-_LV5h4DNJ7_odQ-r3C4mNDi-c6ZQBiWMBTe7o3MtYwFDTk-SJCn23LqChPP9CC4-JcZQpsA_s1U-9Vfi8bLNaGRzQMDBn-r3a64DeQqp64HSCgtJiDRFCpcl30btw2DC-AEcaN8TAFsntS0MudVMnMBhy4GN2QXdqUYBBja-ao9jJPdsKuS51tbuKVLGzsG_SAxrJOON8z3CoSwszJBUxWSHFYaciD-6HaU-5VskFLGve1PSpR1aE1Fcb076D1GWaguraDo6B5fWJzFMnHdd-vu2ENfa8YvNvSXl3agg&h=lb4B3X5UbH4qv_wpLasgQCQryqoQiOLoi3HfYtAw_Sg + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aba74561-4f29-4780-8ff6-9f5252b727dd\",\r\n + \ \"name\": \"aba74561-4f29-4780-8ff6-9f5252b727dd\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aba74561-4f29-4780-8ff6-9f5252b727dd?api-version=2022-08-01-preview&t=2023-06-27T07%3A45%3A14&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=PtOc6bvQz-plSsfYSsp49BlYDLrJGH_30lJWhGXOMcJKd-_LV5h4DNJ7_odQ-r3C4mNDi-c6ZQBiWMBTe7o3MtYwFDTk-SJCn23LqChPP9CC4-JcZQpsA_s1U-9Vfi8bLNaGRzQMDBn-r3a64DeQqp64HSCgtJiDRFCpcl30btw2DC-AEcaN8TAFsntS0MudVMnMBhy4GN2QXdqUYBBja-ao9jJPdsKuS51tbuKVLGzsG_SAxrJOON8z3CoSwszJBUxWSHFYaciD-6HaU-5VskFLGve1PSpR1aE1Fcb076D1GWaguraDo6B5fWJzFMnHdd-vu2ENfa8YvNvSXl3agg&h=lb4B3X5UbH4qv_wpLasgQCQryqoQiOLoi3HfYtAw_Sg + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/aba74561-4f29-4780-8ff6-9f5252b727dd\",\r\n + \ \"name\": \"aba74561-4f29-4780-8ff6-9f5252b727dd\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --template-file --deny-settings-mode --deployment-resource-group + --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-07-45-13-ef49c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"duration\": \"PT6.259865S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:45:13.3029472Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:45:13.3029472Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1951' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"detach\",\r\n \"resourceGroups\": + \"detach\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-07-45-13-ef49c\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"duration\": \"PT6.259865S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"outputs\": + {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n },\r\n \"parameters\": {},\r\n \"resources\": [\r\n {\r\n + \ \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Providers.Test/statefulResources/uniquestorage001\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:45:13.3029472Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:45:13.3029472Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1951' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 07:45:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource ''cli-test-create-deployment-stack-subscription000002'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '199' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"template": {"$schema": + "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": + "0.17.1.54307", "templateHash": "6417493495661768720"}}, "parameters": {"location": + {"type": "string"}, "kind": {"type": "string"}}, "variables": {"storageAccountName": + "[format(''store{0}'', uniqueString(resourceGroup().id))]"}, "resources": [{"type": + "Microsoft.Storage/storageAccounts", "apiVersion": "2019-04-01", "name": "[variables(''storageAccountName'')]", + "location": "[parameters(''location'')]", "sku": {"name": "Standard_LRS"}, "kind": + "[parameters(''kind'')]", "properties": {}}]}, "parameters": {"location": {"value": + "westus2"}, "kind": {"value": "StorageV2"}}, "actionOnUnmanage": {"resources": + "delete", "resourceGroups": "delete"}, "deploymentScope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001", + "denySettings": {"applyToChildScopes": false}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + Content-Length: + - '1054' + Content-Type: + - application/json + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentScope\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": + false\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": + \"westus2\",\r\n \"type\": \"string\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\",\r\n \"type\": \"string\"\r\n + \ }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": + \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": + [],\r\n \"failedResources\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": + \"harshpatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2023-06-27T07:45:52.5319946Z\",\r\n \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:45:52.5319946Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dcd8a1ed-def6-43cf-9683-cdae223cbae8?api-version=2022-08-01-preview&t=2023-06-27T07%3a45%3a53&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RnWdgOOz__UGoG6Z-38VOWiGHMMgd4FBHyQ_KfizkJacRmvSJINA-sP8bSxkrutEofiZUYKYuHBf1YV30BZma0vZjFeQzRvsdfU9J0LAfJheV81eyphBXbq3l8b64LhdoMppxLslrelGWylcG7ExDMQ_3GGqQZTp6eZ2HB0Ebmtx4bWzzwoZWJoEveY9nP50gEJr_inUnIqAi6Qc0WTX3l-VX9uQNXVzf2oN4KaLz9g67z00qD0nZqYyIw_T1pFH7fv-xwRzEh3kMMrRFksdDokJfVooDzp2_xms21O2DfYRelcsFF-_w01z3_ykzWHf4YoLssu-Kl2IzqfGglYzOg&h=DRqtgOQ3o3jUbGTvXXXI8Ziti89i0-2e-AT9rFMyXS0 + cache-control: + - no-cache + content-length: + - '1340' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dcd8a1ed-def6-43cf-9683-cdae223cbae8?api-version=2022-08-01-preview&t=2023-06-27T07%3A45%3A53&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RnWdgOOz__UGoG6Z-38VOWiGHMMgd4FBHyQ_KfizkJacRmvSJINA-sP8bSxkrutEofiZUYKYuHBf1YV30BZma0vZjFeQzRvsdfU9J0LAfJheV81eyphBXbq3l8b64LhdoMppxLslrelGWylcG7ExDMQ_3GGqQZTp6eZ2HB0Ebmtx4bWzzwoZWJoEveY9nP50gEJr_inUnIqAi6Qc0WTX3l-VX9uQNXVzf2oN4KaLz9g67z00qD0nZqYyIw_T1pFH7fv-xwRzEh3kMMrRFksdDokJfVooDzp2_xms21O2DfYRelcsFF-_w01z3_ykzWHf4YoLssu-Kl2IzqfGglYzOg&h=DRqtgOQ3o3jUbGTvXXXI8Ziti89i0-2e-AT9rFMyXS0 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dcd8a1ed-def6-43cf-9683-cdae223cbae8\",\r\n + \ \"name\": \"dcd8a1ed-def6-43cf-9683-cdae223cbae8\",\r\n \"status\": \"initializing\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '263' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:45:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dcd8a1ed-def6-43cf-9683-cdae223cbae8?api-version=2022-08-01-preview&t=2023-06-27T07%3A45%3A53&c=MIIHADCCBeigAwIBAgITHgKrh_MjOPKlJyI3cQAAAquH8zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwNTAzMjMwMjI3WhcNMjQwNDI3MjMwMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0aEGiuaphgSuY5uOV2Vq0_eRkHBJqscdw27iqFhwraH1zb3mBkoUFiny-rrTyBBP3_bOrcZ_lLcbY9xgIxpT7zmZxRd3CjCOnqhX_Mu2c6G-yLOTEOcf9UT7H4fxtBr440gcpLopYy7mt3ypUGOaPFP-EO7qaBh0SCIeb-x5DPqdjLf2_f9i_vLuGfQWpz9jEsyWeFg3i00s5m52FdCkGVTyxr2XITKuv7ETVYww5ZP2jkCAvfFbjir_v66K6JNRThXGIG93Pn4f15mQRm3DNai4_a_ifWA1lGYuGRKzNakLghySxYnnAFUWzp1KryweBqfWL3hFrmnG8GAi_S4ukCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT-pF8vtDMyjw9lrgG37vafInn-qzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAI29kw4VOKOtMxg3qjOuEecung4Kg3KdF9GhZku1Bou1YlnJ0nHSypiq8m_JCm6IV0an3uP_TIcby1BfAaWGq7Ie3v6NWkMQoTE482bQxpak1Z4eIAYrJ0XcMalFjc3ArXgS2G0zV-xBNYjXUZ3ir6D1JPm4ocXJ5QTgZVGkw0xSTlwEDW-nnNkZzMqeGAKtAbEIwQpqfym3LgDK5uQyAYnE2pyDP0AwYWdrb-QAWkxfNfgQgzVgt9pOXvotmhLHmnUt0XRaQQlYkTCi25p1YIQ5nN9_uvRJ17N8E9sF0oRLO5QtIeearVpLaGTS4DAiPmUXMjS25OxMdLMu2E-JNq0&s=RnWdgOOz__UGoG6Z-38VOWiGHMMgd4FBHyQ_KfizkJacRmvSJINA-sP8bSxkrutEofiZUYKYuHBf1YV30BZma0vZjFeQzRvsdfU9J0LAfJheV81eyphBXbq3l8b64LhdoMppxLslrelGWylcG7ExDMQ_3GGqQZTp6eZ2HB0Ebmtx4bWzzwoZWJoEveY9nP50gEJr_inUnIqAi6Qc0WTX3l-VX9uQNXVzf2oN4KaLz9g67z00qD0nZqYyIw_T1pFH7fv-xwRzEh3kMMrRFksdDokJfVooDzp2_xms21O2DfYRelcsFF-_w01z3_ykzWHf4YoLssu-Kl2IzqfGglYzOg&h=DRqtgOQ3o3jUbGTvXXXI8Ziti89i0-2e-AT9rFMyXS0 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/locations/westus2/deploymentStackOperationStatus/dcd8a1ed-def6-43cf-9683-cdae223cbae8\",\r\n + \ \"name\": \"dcd8a1ed-def6-43cf-9683-cdae223cbae8\",\r\n \"status\": \"succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:46:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub create + Connection: + - keep-alive + ParameterSetName: + - --name --location --deployment-resource-group --template-file -p --deny-settings-mode + --delete-all --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-07-45-53-3b769\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"duration\": \"PT30.3992497S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Storage/storageAccounts/storetd3wytwkrtfry\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:45:52.5319946Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:45:52.5319946Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1867' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:46:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?api-version=2022-08-01-preview + response: + body: + string: "{\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": + \"delete\",\r\n \"managementGroups\": \"detach\"\r\n },\r\n \"deploymentId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Resources/deployments/cli-test-create-deployment-stack-subsc-2023-06-27-07-45-53-3b769\",\r\n + \ \"deploymentScope\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001\",\r\n + \ \"duration\": \"PT30.3992497S\",\r\n \"denySettings\": {\r\n \"mode\": + \"none\",\r\n \"applyToChildScopes\": false\r\n },\r\n \"parameters\": + {\r\n \"location\": {\r\n \"value\": \"westus2\",\r\n \"type\": + \"string\"\r\n },\r\n \"kind\": {\r\n \"value\": \"StorageV2\",\r\n + \ \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_stacks000001/providers/Microsoft.Storage/storageAccounts/storetd3wytwkrtfry\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": + [],\r\n \"deletedResources\": [],\r\n \"failedResources\": []\r\n },\r\n + \ \"systemData\": {\r\n \"createdBy\": \"harshpatel@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-06-27T07:45:52.5319946Z\",\r\n + \ \"lastModifiedBy\": \"harshpatel@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2023-06-27T07:45:52.5319946Z\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002\",\r\n + \ \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"cli-test-create-deployment-stack-subscription000002\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1867' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Jun 2023 07:46:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stack sub delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.0 (Windows-10-10.0.22621-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deploymentStacks/cli-test-create-deployment-stack-subscription000002?unmanageAction.Resources=detach&unmanageAction.ResourceGroups=detach&api-version=2022-08-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 27 Jun 2023 07:46:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index ddd85ee549a..2e1f58d6d1a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -2157,9 +2157,6 @@ def test_create_deployment_stack_subscription(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), - 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), - 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), 'template-file-rg': os.path.join(curr_dir, 'simple_template_resource_group.json').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, @@ -2195,12 +2192,6 @@ def test_create_deployment_stack_subscription(self, resource_group): # cleanup self.cmd('stack sub delete --name {name} --yes') - # create deployment stack with bicep file and rg scope - self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --deny-settings-mode "none" --deployment-resource-group {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) - - # cleanup - self.cmd('stack sub delete --name {name} --yes') - # create new resource group - test delete flag --delete-resources self.cmd('group create --location {location} --name {resource-group-two}') @@ -2283,13 +2274,36 @@ def test_create_deployment_stack_subscription(self, resource_group): #confirm rg resource1 has been removed from azure self.cmd('group list', checks=self.check("length([?name=='{resource-one}'])", 0)) - #test bicep param file - self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group-two} --template-file "{bicep-file-storage}" -p "{bicep-param-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + # cleanup - delete resource group two + self.cmd('group delete --name {resource-group-two} --yes') + @live_only() + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) + def test_create_deployment_stack_subscription_with_bicep(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-subscription', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), + 'resource-group': resource_group, + }) + + # create deployment stack with bicep file and rg scope + self.cmd('stack sub create --name {name} --location {location} --template-file "{bicep-file}" --deny-settings-mode "none" --deployment-resource-group {resource-group} --yes', checks=self.check('provisioningState', 'succeeded')) + + # cleanup self.cmd('stack sub delete --name {name} --yes') - # cleanup - delete resource group two - self.cmd('group delete --name {resource-group-two} --yes') + # test bicep param file + self.cmd('stack sub create --name {name} --location {location} --deployment-resource-group {resource-group} --template-file "{bicep-file-storage}" -p "{bicep-param-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + + self.cmd('stack sub delete --name {name} --yes') def test_show_deployment_stack_subscription(self): curr_dir = os.path.dirname(os.path.realpath(__file__)) @@ -2511,9 +2525,6 @@ def test_create_deployment_stack_resource_group(self, resource_group): 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), 'template-file-spec': os.path.join(curr_dir, 'simple_template_spec.json').replace('\\', '\\\\'), 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), - 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), - 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), - 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), 'track-rg-file': os.path.join(curr_dir, 'tracked_resource_group.json').replace('\\', '\\\\'), 'template-spec-name': template_spec_name, 'template-spec-version': "v1", @@ -2545,12 +2556,6 @@ def test_create_deployment_stack_resource_group(self, resource_group): # cleanup self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - # create deployment stack with bicep file - self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) - - # cleanup - self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') - # test flag: delete--resources, create deployment stack self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{template-file-spec}" --deny-settings-mode "none" --parameters "name={resource-one}" --yes --delete-resources --delete-resource-groups', checks=self.check('provisioningState', 'succeeded')) @@ -2616,14 +2621,37 @@ def test_create_deployment_stack_resource_group(self, resource_group): self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') - #test bicep param file - self.cmd('stack group create --name {name} -g {resource-group-two} --template-file "{bicep-file-storage}" -p "{bicep-param-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) - - self.cmd('stack group delete -g {resource-group-two} --name {name} --yes') - # cleanup - delete resource group two self.cmd('group delete --name {resource-group-two} --yes') + @live_only() + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) + def test_create_deployment_stack_resource_group_with_bicep(self, resource_group): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + deployment_stack_name = self.create_random_name('cli-test-create-deployment-stack-resource-group', 60) + + self.kwargs.update({ + 'name': deployment_stack_name, + 'location': location, + 'template-file': os.path.join(curr_dir, 'simple_template.json').replace('\\', '\\\\'), + 'parameter-file': os.path.join(curr_dir, 'simple_template_params.json').replace('\\', '\\\\'), + 'bicep-file': os.path.join(curr_dir, 'data', 'bicep_simple_template.bicep').replace('\\', '\\\\'), + 'bicep-file-storage':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_template.bicep').replace('\\', '\\\\'), + 'bicep-param-file':os.path.join(curr_dir, 'data', 'bicepparam', 'storage_account_params.bicepparam').replace('\\', '\\\\'), + 'resource-group': resource_group, + }) + + # create deployment stack with bicep file + self.cmd('stack group create --name {name} --resource-group {resource-group} --template-file "{bicep-file}" --deny-settings-mode "none" --yes', checks=self.check('provisioningState', 'succeeded')) + + # cleanup + self.cmd('stack group delete --name {name} --resource-group {resource-group} --yes') + + #test bicep param file + self.cmd('stack group create --name {name} -g {resource-group} --template-file "{bicep-file-storage}" -p "{bicep-param-file}" --deny-settings-mode "none" --delete-all --yes', checks=self.check('provisioningState', 'succeeded')) + + self.cmd('stack group delete -g {resource-group} --name {name} --yes') + @ResourceGroupPreparer(name_prefix='cli_test_deployment_stacks', location=location) def test_show_deployment_stack_resource_group(self, resource_group): curr_dir = os.path.dirname(os.path.realpath(__file__)) From 774a4271d6549e4c0415d8908202baad5cd80a95 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 04:51:12 -0400 Subject: [PATCH 136/139] retrigger checks From 70b792d3ac1dd4611c509e4d031b8f3aeec1da61 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 05:51:08 -0400 Subject: [PATCH 137/139] added waiver to enum --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 4ce74544415..8d26e25e92f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -289,7 +289,7 @@ def load_arguments(self, _): c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(['ExemptionCategory'])) + c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(['Waiver', 'Mitigated'])) c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') From 6c329a1ebc9e1f6192157f1881147c0d43f7ebc1 Mon Sep 17 00:00:00 2001 From: Harsh Patel Date: Tue, 27 Jun 2023 23:09:09 -0400 Subject: [PATCH 138/139] Nit in help file --- src/azure-cli/azure/cli/command_modules/resource/_help.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_help.py b/src/azure-cli/azure/cli/command_modules/resource/_help.py index 99cdbaf4b38..0dc05b9572e 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_help.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_help.py @@ -2870,7 +2870,7 @@ - name: Create a deployment stack from a local template, using deny settings. text: az stack mg create --name StackName --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --location westus --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny settings to child scope. - text: az stack mg create --name StackName --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus --deny-settings-mode None + text: az stack mg create --name StackName --management-group-id myMg --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --location westus """ helps['stack mg list'] = """ @@ -3006,7 +3006,7 @@ - name: Create a deployment stack from a local template, using deny settings. text: az stack group create --name StackName --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-excluded-principals "test1 test2" --deny-settings-mode None - name: Create a deployment stack from a local template, apply deny setting to child scopes. - text: az stack group create --name StackName --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes --deny-settings-mode None + text: az stack group create --name StackName --resource-group ResourceGroup --template-file azuredeploy.json --deny-settings-mode denyDelete --deny-settings-excluded-actions Microsoft.Compute/virtualMachines/write --deny-settings-apply-to-child-scopes """ helps['stack group list'] = """ From d7e12e411d13c31bf62d8689683aea4900a783c9 Mon Sep 17 00:00:00 2001 From: zhoxing-ms Date: Wed, 28 Jun 2023 13:52:09 +0800 Subject: [PATCH 139/139] Add compatible logic for Policy SDK breaking change --- .../azure/cli/core/profiles/_shared.py | 4 +++- .../cli/command_modules/resource/_params.py | 3 ++- .../cli/command_modules/resource/commands.py | 22 ++++++++++++++----- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index c57be16806a..fd0cdf8bb2f 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -176,7 +176,9 @@ def default_api_version(self): ResourceType.MGMT_RESOURCE_FEATURES: '2021-07-01', ResourceType.MGMT_RESOURCE_LINKS: '2016-09-01', ResourceType.MGMT_RESOURCE_LOCKS: '2016-09-01', - ResourceType.MGMT_RESOURCE_POLICY: '2021-06-01', + ResourceType.MGMT_RESOURCE_POLICY: SDKProfile('2021-06-01', { + 'policy_exemptions': '2020-07-01-preview' + }), ResourceType.MGMT_RESOURCE_RESOURCES: '2022-09-01', ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS: '2019-11-01', ResourceType.MGMT_RESOURCE_DEPLOYMENTSCRIPTS: '2020-10-01', diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index 8d26e25e92f..4393e0abfc5 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -31,6 +31,7 @@ def load_arguments(self, _): validate_lock_parameters, validate_resource_lock, validate_group_lock, validate_subscription_lock, validate_metadata, RollbackAction) from azure.cli.command_modules.resource.parameters import TagUpdateOperation + ExemptionCategory = self.get_models('ExemptionCategory', operation_group='policy_exemptions') DeploymentMode, WhatIfResultFormat, ChangeType = self.get_models('DeploymentMode', 'WhatIfResultFormat', 'ChangeType') # BASIC PARAMETER CONFIGURATION @@ -289,7 +290,7 @@ def load_arguments(self, _): c.argument('disable_scope_strict_match', options_list=['--disable-scope-strict-match', '-i'], action='store_true', help='Include policy exemptions either inherited from parent scope or at child scope.') c.argument('display_name', help='Display name of the policy exemption.') c.argument('description', help='Description of policy exemption.') - c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(['Waiver', 'Mitigated'])) + c.argument('exemption_category', options_list=['--exemption-category', '-e'], help='The policy exemption category of the policy exemption', arg_type=get_enum_type(ExemptionCategory)) c.argument('policy_definition_reference_ids', nargs='+', options_list=['--policy-definition-reference-ids', '-r'], help='The policy definition reference ids to exempt in the initiative (policy set).') c.argument('expires_on', help='The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.') c.argument('metadata', nargs='+', validator=validate_metadata, help='Metadata in space-separated key=value pairs.') diff --git a/src/azure-cli/azure/cli/command_modules/resource/commands.py b/src/azure-cli/azure/cli/command_modules/resource/commands.py index ec2c9d0edf1..0c7a34befce 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/commands.py +++ b/src/azure-cli/azure/cli/command_modules/resource/commands.py @@ -483,38 +483,48 @@ def load_command_table(self, _): g.custom_command('list', 'list_deployment_operations_at_tenant_scope') g.custom_show_command('show', 'get_deployment_operations_at_tenant_scope', client_factory=cf_deployment_operations) - with self.command_group('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g: + # Since "MGMT_RESOURCE_POLICY" is not the default resource type used by the __init__ method + # in ResourceCommandsLoader, so the default "operation_group" cannot be specified in the commandsLoader, + # the "operation_group" needs to be explicitly specified for "MGMT_RESOURCE_POLICY". + + with self.command_group('policy assignment', + operation_group='policy_assignments', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g: g.custom_command('create', 'create_policy_assignment', validator=process_assignment_create_namespace) g.custom_command('delete', 'delete_policy_assignment') g.custom_command('list', 'list_policy_assignment') g.custom_show_command('show', 'show_policy_assignment') g.custom_command('update', 'update_policy_assignment') - with self.command_group('policy assignment identity', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2018-05-01') as g: + with self.command_group('policy assignment identity', + operation_group='policy_assignments', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2018-05-01') as g: g.custom_command('assign', 'set_identity', validator=process_assign_identity_namespace, min_api='2021-06-01') g.custom_show_command('show', 'show_identity') g.custom_command('remove', 'remove_identity') - with self.command_group('policy assignment non-compliance-message', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2020-09-01') as g: + with self.command_group('policy assignment non-compliance-message', + operation_group='policy_assignments', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2020-09-01') as g: g.custom_command('create', 'create_policy_non_compliance_message') g.custom_command('list', 'list_policy_non_compliance_message') g.custom_command('delete', 'delete_policy_non_compliance_message') - with self.command_group('policy definition', resource_policy_definitions_sdk, resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g: + with self.command_group('policy definition', resource_policy_definitions_sdk, + operation_group='policy_definitions', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g: g.custom_command('create', 'create_policy_definition') g.custom_command('delete', 'delete_policy_definition') g.custom_command('list', 'list_policy_definition') g.custom_show_command('show', 'get_policy_definition') g.custom_command('update', 'update_policy_definition') - with self.command_group('policy set-definition', resource_policy_set_definitions_sdk, resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview') as g: + with self.command_group('policy set-definition', resource_policy_set_definitions_sdk, + operation_group='policy_set_definitions', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview') as g: g.custom_command('create', 'create_policy_setdefinition') g.custom_command('delete', 'delete_policy_setdefinition') g.custom_command('list', 'list_policy_setdefinition') g.custom_show_command('show', 'get_policy_setdefinition') g.custom_command('update', 'update_policy_setdefinition') - with self.command_group('policy exemption', resource_policy_exemptions_sdk, is_preview=True, resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2020-09-01') as g: + with self.command_group('policy exemption', resource_policy_exemptions_sdk, is_preview=True, + operation_group='policy_exemptions', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2020-07-01-preview') as g: g.custom_command('create', 'create_policy_exemption') g.custom_command('delete', 'delete_policy_exemption') g.custom_command('list', 'list_policy_exemption')